A circle is a simple shape of Euclidean geometry that is the set of points points in the plane that are equidistant from a given point, the centre. The distance between any of the points and the centre is called the radius.
-2
votes
0answers
44 views
Python draw circles and find intersecting points [closed]
I have a geometrical problem needs to be solved. I need draw circles at python and find the intersection points of two circles in terms of x,y.
DETAILS; I have a problem, similar to gsm triangulation ...
0
votes
2answers
134 views
Random circles JAVA
I am trying to create a GUI that will take in the number of circles to draw, and draw them in drawPanel with random locations/sizes. On my actionListener, when I try to draw the circle, it gives me ...
0
votes
0answers
17 views
Android drag as possible, only away from the collision
hi all as the title I wanted to know how to make sure that once the collision occurred, the drag and drop function is applicable only in the opposite direction to the collision, to avoid that the two ...
0
votes
1answer
52 views
Recursive circle packing?
I have a JSON object that I want to be able to visualize as a hierarchy of circles like this (you can zoom in and out of the hierarchy using mouse clicks).
I'm just trying to figure out how to use ...
-1
votes
1answer
28 views
Java Jung draw ovals
i am using jung (java) try to draw circles to the Background. I dont get any output and wondering why it is not working.
Iam using PreRenderPaintable and PostRenderPaintable but still get no ...
1
vote
3answers
129 views
C# random Color generator not working right [duplicate]
This section of code is misbehaving.
I want to draw a user defined grid of circles with each a random color from a set list of 7 colors.
The random number generator is supposed to do this.
The grid ...
2
votes
1answer
55 views
Hover state on circles
I'm designing this page that contains four big circles with CSS3 transitions and I'm trying to make it work on IE8. I know CSS3 transitions don't work on old versions of IE therefore I just wanted to ...
2
votes
2answers
275 views
Points on a circle, with limits. How To calculate without angle, but radius and centre point?
This is quite complicated to explain, so I will do my best, sorry if there is anything I missed out, let me know and I will rectify it.
My question is, I have been tasked to draw this shape,
This ...
0
votes
0answers
76 views
C++, co-ordinates on a circle, angles involved, for loop with if loop
I have this code.
for(int j=0; j<=n; j++)
{
Xnew2 = -j*(Y+R2)/n;
Ynew2 = pow((((Y+R2)*(Y+R2)) - (Xnew2*Xnew2)), 0.5);
if(abs(Ynew2) <=R1)
cout<<"\n("<<Xnew2<<", ...
0
votes
1answer
100 views
Combining overlapping circles in a list in Java
This is my first time posting on here, so I apologize if I left out information or provided too much, or otherwise messed up. Please let me know if I did.
So I have a list of circles, many of which ...
0
votes
1answer
65 views
canvas should i use beginpath() with html5 lines
I know you can use beginpath(); with circles in the canvas. However, from what I have been tought, you don't need to use it with lines. I sometimes don't use it with lines and it works perfectly find, ...
0
votes
1answer
104 views
How do I make circles within a larger circle, and text within the center of all the circles, in CSS?
How do I make circles with positions relative to the other inner circles within a larger circle, and text within the center of all the circles, in CSS?
I'm looking to produce something similar to ...
0
votes
3answers
101 views
Java - How to check of a point is inside a sliceof a circle
I have a circle drawn, and I want to make it so I can have more slices than four. I can easily do four quadrants because I just check if the mouse in in the circle and inside a box.
This is how I am ...
0
votes
1answer
58 views
get angle from a circle actionscript?
I found this answer (Circular Slider in ActionScript 3) which creates a drag-able point over a circle..In the answer there is the code in the CircleSlider class .
private function ...
1
vote
2answers
86 views
How to know location of a point?
I have a circle formed with three given points. How can i know whether another given point is inside the circle formed by previous three points. Is it determinant i need to calculate? Then what are ...
1
vote
1answer
42 views
How to run this java file I found on the internet? I have already imported imagej but I cant seem to let the code run :(
Heres the link to the code: http://rsbweb.nih.gov/ij/plugins/download/Hough_Circles.java
I have already imported imagej but I cant seem to let the code run :(
2
votes
1answer
226 views
matlab: area under overlapping circles
I have a question to you...
Imagine square with size A x A. Now lets simulate circles with diameter of d, randomly distributed within this square, something like on the image below (in this case d's ...
1
vote
2answers
312 views
Detect circles in an image?
The program should detect circles and colour them in red. The symmetry method was suggested where I assume each pixel is a center of a circle and check the four points r (radius) distance from it. If ...
0
votes
0answers
73 views
What does Bresenham algorithm do exactly?
I know that you use it to draw a lines or a circle but can you use it to FIND circles in an image?
3
votes
2answers
144 views
Drawing fancy Circle on canvas has weird effect
I'm trying to draw a circle on a canvas and it's generating as follows:
, and zoomed:
I'm not sure why this is happening, though I've seen the effect before and I suspect it's something to do with ...
1
vote
1answer
142 views
Moving three circles to another position slowing down movement (KineticJS)
I am trying to move three circles, after they gradually fade in, to the top left of the page so that they overlap on a box. At the moment, I set a timeout, but it only works for the first circle and ...
1
vote
1answer
154 views
Set delay for fading in concentric circles with Kinetic
I am a newby so, I wonder if someone can point me in the right direction. I need to draw 3 concentric circles with opacity that need to appear on the screen one after the other. At present, although ...
0
votes
1answer
43 views
Given a set of points, find smallest subset of points from which circles of n diameter can be drawn to encompass all points
I've got a list of places with associated lat/lon data (sites). I'm trying to find the fewest bases from which to visit the sites (minimizing travel occurrences). Any ideas? I've mostly been ...
0
votes
1answer
71 views
Angles on a circle [closed]
I am trying to work out some circle detection and I'm having trouble working out some angles, can anyone tell me how to get the angle value of these blue angles.
I have never worked with angles ...
1
vote
1answer
118 views
HTML, CSS, Javascript creating circles inside eachother
I need to make circles inside each other with HTML, CSS and Javascript, with the possibilty of clicking on a button, which will automatically add another circle to it. The newly added circle will be ...
0
votes
2answers
347 views
How to detect circles accurately
Is there any way to accurately detect circles in opencv? I was using hough transform which give me good result but most of the time, shadow of the object and surrounding,light etc gives bad results, ...
2
votes
1answer
132 views
Getting more information from CvHoughCircles
I am using the HoughCircles function of OpenCV.
Is there any way I can get more information about the results besides an ordered list of circle center and radius?
I'd like to get the score of each ...
0
votes
1answer
221 views
D3 LineGraph Circles Remove Overlap && Sort dates
http://www.fabieno.com/conanbatt/index.html
Circles are overlapping, and because they have tooltips. This is a bit of a pain. How can I modify this to stop the overlap?
Also, how do I format the ...
0
votes
0answers
42 views
Google hangouts for business [closed]
I'll be using a google plus page for my school to recruit other students from across the country. As they join they'll be added to a 'members' list (that will change on a daily basis) that teachers ...
0
votes
1answer
163 views
Adding transparent circles of defined radius to existing plot in R
I have a data.frame with X and Y coordinate values. X axis is position information and Y axis is log ratio values. The points are colored based log ratio values(green > 0.25 , -0.25 < grey < ...
0
votes
1answer
460 views
generate clipPaths for multiple elements in d3.js
I am trying to create partially filled circles like the ones in the final NYT political convention visualization: http://www.nytimes.com/interactive/2012/09/06/us/politics/convention-word-counts.html
...
1
vote
1answer
645 views
How can I make Turtle recognize a circle?
I am trying to make a Python program with Turtle Graphics that draws 2 circles overlapping (like a Venn Diagram) within a rectangle, and plots random dots onto the Venn Diagram.
I have successfully ...
0
votes
2answers
101 views
Find points outside a circle
I am trying to create a function that will allow me to find the points around a specific point on the circumference of the circle. I searched the website and found a question that does it for points ...
3
votes
1answer
2k views
Gnuplot: plot with circles of a defined radius
I know on gnuplot you can plot some data with circles as the plot points:
plot 'data.txt' using 1:2 ls 1 with circles
How do I then set the size of the circles? I want to plot several sets of data ...
3
votes
2answers
387 views
Circle-Circle Collision Prediction
I'm aware of how to check if two circles are intersecting one another. However, sometimes the circles move too fast and end up avoiding collision on the next frame.
My current solution to the ...
2
votes
3answers
581 views
Create tube along polyline path in OpenGL
I want to draw a tube along a path defined by a list of points.
What I figured is that I could basically draw circles around each of my points, and then connect the circles (or, rather, points on the ...
0
votes
1answer
284 views
Draw Multiple Circles horizontally android
How to draw multiple circles horizontally in android, with some filled color. And I want to change the color based on some server response.
Can anybody tell how to do this? I implemented like this to ...
0
votes
0answers
37 views
Circles of very different scales
here is my challenge. I need to communicate the different scales involved in the regulation and risk assessment of a particular chemical. This is for a general audience and so I need to communicate ...
0
votes
0answers
64 views
art circles iPad
Can anyone tell me how to proceed with a design approach just similar to art circles iPad app ? They have a very nice and intuitive circle/wheel like design, I want to develop similar kind of ...
0
votes
1answer
528 views
Google Maps API - Toggle Circles around Markers?
I'm trying to show an array of markers which, when clicked, will show an infowindow and also a circle with a radius, the size of which is also part of the array.
I've got as far as showing the ...
0
votes
5answers
394 views
CSS/HTML - Horizontal line of circled numbers
See this
I'm trying to take a string of numbers and place circles around them. How do I get them to display in one long horizontal line as opposed to one circle per line?
07, 06, 08, 02, 86, 05, 01, ...
2
votes
2answers
2k views
Simulating pinches on iPad-Simulator
I'm currently trying to implement the handling of (2-finger-)pinches on an iPad display. Doing so I came across the problem that the fingers (represented by by two grey circles in the ...
0
votes
1answer
576 views
Intersection between two Arcs? (arc = distance between pair of angles)
I'm trying to find a way to calculate the intersection between two arcs.
I need to use this to determine how much of an Arc is visually on the right half of a circle, and how much on the left.
I ...
0
votes
1answer
325 views
how to draw a circle around the marker on google fusion tables?
I'm using google fusion tables I want to draw a circle around my markers. how do I do that? if there is something I should write in the javascript what is it? am not a web developer so I dunno :S
0
votes
4answers
572 views
How to draw a circle, positioning it at a double value instead of a int?
Basically, I want to draw a circle using Graphics, but instead of using integers to position it, I would like to use double values instead.
Ideally:
g.drawOval(0.5, 0.5, 50, 50);
Any help is ...
1
vote
1answer
821 views
Drawing circles on a diagonal line in C++
I've been working on this for about an hour now and I can't figure out what I'm doing wrong. This is the problem statement for the problem:
Draw a series of circles along one diagonal of a ...
2
votes
1answer
2k views
Detecting Hough circles android
I am trying to detect circles using android. I succeeded to implement the detect lines algorithm but nothing gets displayed when trying the draw hough circles algoritm.
Here is my code:
Mat ...
0
votes
3answers
496 views
how to draw circles on 2d plane in python
I've made a random walk simulation and I'd like it to output little circles at the coordinates of each step of the random walk and I'm not sure how to produce this visualization with python. I'd like ...
1
vote
2answers
1k views
Draw image into area between two concentric circles in Xcode / objective-c
I have an image (its actually circular) and wish to only draw the part of that image that corresponds to the area between two concentric circles, the outer one is fixed, the inner one can adjust in ...
0
votes
0answers
84 views
Recreating Google+ Circles [closed]
I am fairly new to web development and I before I go ahead and try to recreate something similar to Google+ Circles UI, I thought I would ask if anyone knows the best way to approach this.
I'm ...


