Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
10answers
18k views

Circle line collision detection

I have a line from A to B and a circle positioned at C with the radius R. This is in two dimensions. Which is a good algorithm to use to check whether the line intersects the circle? And at what ...
31
votes
8answers
1k views

Collision detection of huge number of circles

What is the best way to check collision of huge number of circles? It's very easy to detect collision between two circles, but if we check every combination then it is O(n2) which definitely not an ...
24
votes
9answers
914 views

Algorithm to cover maximal number of points with one circle of given radius

Let's imagine we have a plane with some points on it. We also have a circle of given radius. I need an algorithm that determines such position of the circle that it covers maximal possible amount of ...
22
votes
10answers
2k views

circles and triangles problem

I have an interesting problem here I've been trying to solve for the last little while: I have 3 circles on a 2D xy plane, each with the same known radius. I know the coordinates of each of the three ...
17
votes
3answers
514 views

How to join overlapping circles?

I want to visually join two circles that are overlapping so that becomes I already have methods for partial circles, but now I need to know how large the overlapping angle for earch circle is, ...
17
votes
6answers
544 views

Positioning squares on a circle with minimum diameter

Given n squares with edge length l, how can I determine the minimum radius r of the circle so that I can distribute all squares evenly along the perimeter of the circle without them overlapping? ...
13
votes
5answers
12k views

Calculating point on a circle's circumference from angle in C#?

I imagine that this is a simple question, but I'm getting some strange results with my current code and I don't have the math background to fully understand why. My goal is simple, as stated in the ...
12
votes
2answers
1k views

How to draw a blurry circle on HTML5 canvas?

I'm able to draw a simple circle on HTML5 canvas, but I'd like to add some blur around it. What I found was this website which explains the shadowBlur property which can come in handy here. However, ...
10
votes
7answers
4k views

Easier way to create circle div than using an image?

I'm wondering if there's an easier way to create circular divs than what I'm doing now. Currently, I am just making an image for each different size, but it's annoying to do this. Is there anyway ...
10
votes
4answers
514 views

Check if three circles fit inside a triangle

I have thought some time about writing a program that tells me if three circles with given diameters can fit inside a triangle with given side lengths without overlapping (touching is ok) each other. ...
10
votes
2answers
982 views

Maximum circle inside a non-convex polygon

How can I find the maximum circle that can fit inside a concave polygon? A brute force algorithm is ok as long as it can handle polygons with ~50 vertices in real-time. Edit: I found out how to ...
8
votes
7answers
3k views

How to detect if an ellipse intersects(collides with) a circle

I want to improve a collision system. Right now I detect if 2 irregular objects collide if their bounding rectangles collide. I want to obtain the for rectangle the corresponding ellipse while for ...
8
votes
1answer
2k views

How do I generate circuar thumbnails with PIL?

How do I generate circular image thumbnails using PIL? The space outside the circle should be transparent. Snippets would be highly appreciated, thank you in advance.
7
votes
4answers
10k views

How to draw a solid circle with cocos2d for iPhone

Is it possible to draw a filled circle with cocos2d ? An outlined circle can be done using the drawCircle() function, but is there a way to fill it in a certain color? Perhaps by using pure OpenGL?
6
votes
1answer
64 views

Iterate over 2d array in an expanding circular spiral

Given an n by n matrix M, at row i and column j, I'd like to iterate over all the neighboring values in a circular spiral. The point of doing this is to test some function, f, which depends on M, to ...
6
votes
1answer
66 views

How to get the size of the intersecting part in a circle in Java

I need the size of the black part of this image: I've done some research about how to find it in normal math, and I was pointed to this website: Website The final answer on getting it was where ...
6
votes
6answers
339 views

HTML and CSS Fluid Circle

I am trying to create a fluid circle using HTML and CSS. I am almost done but as it should be fluid and content inside is dynamic, it's changing its shape from circle to oval and others. Check out ...
6
votes
1answer
144 views

trying to draw circles based on distance between points

I'm trying to draw some circles and I was sort of hoping they would intersect with some points, alas... library(maptools) library(plotrix) xy <- matrix(runif(20, min = -100, max = 100), ncol = 2) ...
6
votes
4answers
986 views

JavaScript shrinking/growing circle transition

My first question here. :) I'm looking for a transitions between two images where the image first shrinks in a circle shape and then the circle grows again containing the other image. It's hard to ...
6
votes
3answers
491 views

Circle to Circle Segment Collision

I'm struggling to find a rock solid solution to detecting collisions between a circle and a circle segment. Imagine a Field of View cone for a game enemy, with the circles representing objects of ...
6
votes
2answers
881 views

Multiple circles -> One Polygon?

Using Google Maps API v3, I was able to create multiple google.maps.Circle objects on my map. However, I now need to "connect" them somehow. I have the following map with multiple circles: I now ...
6
votes
2answers
1k views

Drawing irregular concentric circles using Google Maps

I have a bit of a problem. I am trying to do the following using Javascript & the Google Maps API v2: I can draw individual circles just fine using formulas found all over the Internet. The ...
6
votes
2answers
2k views

Project Euler Problem 233

I've decided to tackle Project Euler problem 233 next but I'm having some major problems! I've done some analysis and have made some quite nice progress but I've become stuck now. Here's my working: ...
5
votes
4answers
134 views

MATLAB/Octave: cut a lot of circles from a image

I have an matrix (image) and information about interesting part within circles (center corrdinates and radii given). I want to cut for all the circles the parts of the matrix in order to do some more ...
5
votes
2answers
527 views

What is the algorithm for finding the center of a circle from three points?

I have three points on the circumference of a circle: pt A = (A.x, A.y); pt B = (B.x, B.y); pt C = (C.x, C.y); How do I calculate the center of the circle? Implementing it in Processing (Java). I ...
5
votes
4answers
669 views

Maximum packing of rectangles in a circle

I work at a nanotech lab where I do silicon wafer dicing. (The wafer saw cuts only parallel lines) We are, of course, trying to maximize the yield of the die we cut. All the of die will be equal size, ...
5
votes
6answers
5k views

Fast circle collision detection

I'm trying to write a method that will calculate if two circles are overlapping. I've come up with the following and I'm just curious to know if there is anyway it could be optimised further. private ...
4
votes
1answer
55 views

“anti” or “inverted” circle using only CSS?

Is it possible using only CSS? This we can all do: But can we do this? Condition: Transparency must be preserved. Thus the problem is not solved by putting a circle in a solid color div box. ...
4
votes
2answers
357 views

Warping an image based on lines given with different orientations

I would like to warp an image based on lines given with different orientations: for each line on the input image, I can get the coordinates of the pixels on the line then I would map these pixels to ...
4
votes
2answers
442 views

Find point on Circle on Android

Everything seemed so plain and simple until I had to actually program it. What I've got I uploaded an image to explain it better. I have a circle and I know it's radius center point ...
4
votes
6answers
511 views

Draw a circle with a specific number of pixels

I'm working on a project that requires me to accurately control the number of pixels that are used to draw (roughly) circular stimuli, and although Bresenham's algorithms are great, they don't draw ...
4
votes
2answers
322 views

WPF orbital animation? How?

first of all I'll try to explain what I'm trying to do. The task looks quite simple at first look, but it took me some time to realize its very complex. What I'm trying to do is simple animation with ...
4
votes
7answers
674 views

suggest an algorithm for the following puzzle!

There are n petrol bunks arranged in circle. Each bunk is separated from the rest by a certain distance. You choose some mode of travel which needs 1litre of petrol to cover 1km distance. You can't ...
4
votes
2answers
370 views

Render only the segment/area of a circle that intersects the main circle

I absolutely love maths (or 'math' as most of you would say!) but I haven't done it to a level where I know the answer to this problem. I have a main circle which could have a centre point at any x ...
4
votes
1answer
3k views

Drawing a circle on the canvas using mouse events

I am trying to draw a circle using mouse on the canvas using mouse events, but it does not draw anything: tools.circle = function () { var tool = this; this.started = false; this.mousedown = function ...
4
votes
4answers
333 views

Calculate vertices of a circle

I am having a simple program, it draws a circle :/ This works fine... for (k = 1; k < n+1+1; k++){ vertices[k].color = GU_COLOR( 0.0f, 0.0f, 1.0f, 0.0f ); vertices[k].x = cos_d( 360 - ((k-1) * ...
4
votes
2answers
2k views

How to create circle with Bézier curves?

we have some x, y start point and some circle radius. We have some engen that can create path from bezier curve points. How to create circle with Bézier curves?
4
votes
2answers
5k views

How to make a circle on a grid?

I'm making a game where all movement is grid based. I also wan't to make entities that can travel around in a circle. So does anyone have any suggestions for creating a circle out of a grid of ...
3
votes
3answers
99 views

How to apply a disc shaped mask to a numpy array?

I have an array like this: >>> np.ones((8,8)) array([[ 1., 1., 1., 1., 1., 1., 1., 1.], [ 1., 1., 1., 1., 1., 1., 1., 1.], [ 1., 1., 1., 1., 1., 1., 1., ...
3
votes
2answers
124 views

Collision Resolving - Point outside Circle

In a timestep-based simulation, a collision between a point particle p(x,y) with velocity v(x,y), that started off from inside a circle (x-a)^2 + (y-b)^2 = r^, with that circle, occurred between two ...
3
votes
1answer
118 views

Circular Hough Transform Improvements

I'm working on an iris recognition algorithm that processes these kind of images into unique codes for identification and authentication purposes. After filtering, intelligently thresholding, then ...
3
votes
3answers
397 views

How to put multiple circle overlays on a WP7 Bing Map control?

I want to put a number of (transparent) circles on a Bing Map Control as overlays. Think about a "blast radius" or "sphere of influence" kind of thing. I'll need at least two dozen of these circles on ...
3
votes
1answer
164 views

Circles disappear when maximizing, minimizing or resizing my JFrame.

This is my code: JFrame frame = new JFrame(); frame.setSize(400, 400); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); final JPanel panel1 = new JPanel(){ @Override ...
3
votes
3answers
275 views

draw a circle with ggplot2

Maybe it is a silly question, but I couldn't find the answer in the handbook of ggplot2 nor with "aunt" google... How do I plot a circle with ggplot2 as an additional layer if I have a middle point ...
3
votes
1answer
479 views

How to draw a concentric circle in iphone?

I want to draw a ring. Ring should filled in a outer circle. I referred a documentation ...
3
votes
3answers
918 views

Drawing Hollow circle in iPhone

i need to draw the following image The Gray part is what i want to draw over another image what is the Code i need to use using CGContext methods, i tried using the CGContextAddArc but failed ...
3
votes
4answers
840 views

Calculating the position of points in a circle

I'm having a bit of a mind blank on this at the moment. I've got a problem where I need to calculate the position of points around a central point (assuming they're all equidistant from the center and ...
3
votes
3answers
434 views

Simple way to draw shapes in c++?

Are there any drawing libraries out there that are really simple? I literally mean functions such as "draw_circle(screen,x,y,r,colour)" or something similar. I've taken a look at SDL but it doesn't ...
3
votes
3answers
616 views

Drawing circle with Bresenham's Algorithm on OpenGL

I can draw a circle with the algorithm. However, the boundary looks weird, the pixels look so separate from each other. I want them to be closer. I have tried to bigger the point size. But the result ...
3
votes
3answers
712 views

Use X,Y coordinates to plot points inside a circle

Is there a way in javascript to plot x,y coordinates so they fall into a circle rather than a square? For example if I have the following code: circleRadius = 100; context.drawImage(img_elem, ...

1 2 3 4 5 6