A round plane figure whose boundary (the circumference) consists of points equidistant from a fixed center.

learn more… | top users | synonyms

0
votes
2answers
26 views

Filled circle in matrix(2D array)

Which algorithm to use to get points of filled circle? int start_X = 30; // center point int start_Y = 30; int r = 5; // current point int x; int y; if(?==true) { map2D[x][y] = 1; // for filled ...
-1
votes
0answers
29 views

3d circle in matlab (with nodes)

I need help about my graph. I want make it 3d. This is image of my graph: and this is my code for circle: theta=linspace(0,2*pi,28);theta=theta(1:end-1); [x,y]=pol2cart(theta,1); % makes ...
-2
votes
0answers
20 views

ADD Circle,Line,Rectangle and Ellipse options in my minipaint app with C# [closed]

i need your help for adding Rectangle,Circle and Ellipse options to my mini-paint app project,but i need all this on mouse event, i searched every where but most of sites give specific dimensions so ...
1
vote
1answer
32 views

How to add the same atributes for all SVG elements

I have two SVG elements: <circle r="260.2" fill="#1ABCb6" class="" id="svg_el_obj"></circle> <circle r="260.2" fill="#1ABCb6" class="" id="svg_el_obj"></circle> and i want ...
-2
votes
1answer
48 views

HTML5 Canvas - Ball to ball collision [closed]

Don't leave any votes up on this question, if you want to do that leave them here!: Ball to Ball Collision - Detection and Handling I know there's already this same question here on stackoverflow: ...
0
votes
1answer
33 views

Highchart pie legend circles

Im using a highchart pie chart to create a donut chart but would like the legend icons to be circles any ideas??? Below is the mockup and the actual web version. Thanks...
16
votes
3answers
244 views

How to visualize correlation matrix as a schemaball in Matlab

I have 42 variables and I have calculated the correlation matrix for them in Matlab. Now I would like to visualize it with a schemaball. Does anyone have any suggestions / experiences how this could ...
0
votes
0answers
13 views

Circle Drawing Issue in Windows

I am new to graphics programming and this is my first question on stack-overflow. I am trying to draw a semi-circle in windows using VC++. I also want to draw a line from center of semi-circle to the ...
0
votes
2answers
66 views

Ball/Circle collision issue

I'm trying to get the balls to bounce, or reverse direction when they collide. i have it check for the collision within the move method. it checks if there is a collision between two balls and if its ...
3
votes
0answers
26 views

Divide a circle into segments in Titanium

I have drawn a circle in Titanium using the following code. var wheelTop = Ti.UI.createImageView({ width: 100, height: 100, borderRadius: 50, borderColor: '#1a0033', ...
1
vote
2answers
49 views

Paragraph of text in circle [CSS]

I have been looking around for a decent and fast solution on how to place a paragraph of text inside a circle. I found there are two solutions. Solution 1 Float multiple div's of the same height as ...
0
votes
1answer
27 views

Finding the change needed in location to move around the circumference of a circle

I am trying to write a method which will allow my Gladiators to rotate a central point between the two, to circle each other so to speak. Below is my code. Gladiator variable target is of Gladiator ...
0
votes
0answers
18 views

CSS Masking (Webkit) - How does one code this circle?

first of all, I'm very new to web design and this website. I would've asked this question on the chat but I don't have enough reputation and I don't think I can reply to an existing answered ...
0
votes
2answers
79 views

Java Getting a point on the edge of a circle after 3 axis rotation.

Edited To be simplier Right down to it i need to rotate a circle on 3 axis in a 3D space. I've go the y axis down without issues. However, my work with the other two have only resulted in the circle ...
-1
votes
1answer
42 views

What data structure to choose, to implement circle with cuts

I cannot figure out what data structure will be the best for this type of the problem: I have a circle. It can have cuts at different positions(angle). Segments between cuts have color(say red or ...
-6
votes
0answers
40 views

Write a program that will draw 100 circles of random color, location and radius [closed]

there is an exercise in my book that i can't write the program: Write a program that will draw 100 circles of random color, location and radius.
2
votes
2answers
65 views

Animate a Fill Circle using Canvas

Basically I want to be able to Fill a Circle using canvas, but it animate to a certain percentage. I.e only have the circle fill up 80% of the way. My canvas knowledge isn't amazing, Here is an image ...
0
votes
1answer
31 views

Cocos2d / Extend CCDrawNode to draw parts of a circle

I'm trying to create a circular progress bar in Cocos2d and I'm wondering if there is a way to extend CCDrawNode to render circle sectors/segments? One way would obviously be to draw a polygon with ...
0
votes
1answer
13 views

issue with opera and border radius selection arrow showing outside when animated

view the example here: http://qwee.net the problem is only on safari when viewing the page on safari the link arrow pops up a ways outside the spinning circle. On firefox the select cursor changes ...
0
votes
2answers
64 views

My circle-divs doesn't working. Why?

I am trying to create a game board for Barricade but I am failing with the first step, creating a simple grid of circles before specifying which circles are visible. Should I draw it with a canvas? ...
1
vote
1answer
51 views

Find location of an object using 2D trilateration

I am trying to use trilateration in a program to simulate how it would be in real life. I have 3 transmitters which send out a signal that gets weaker after each square that the signal moves. I am ...
-1
votes
0answers
26 views

random movement (please help mee) [closed]

I was found a professional Banner ads in activeden. this is the link of the banner in original site : mgraphist.ir/images/animation.swf Dear friends, now you want me to make this banner background ...
0
votes
0answers
16 views

D3D9 Creating a Circle

I posted a different question earlier that gave me a bug using D3DPT_TRIANGLEFAN but I tried to recode my circle differently. Only problem is that it doesn't draw to the screen... I have tried ...
-1
votes
1answer
21 views

Creating a fixed path for a sprite [closed]

In my game I have a flying boss that I want to move in a circle around the player. I know that I could just get the players x and y position and then move the boss to playerX + 50 and playerY and then ...
0
votes
1answer
41 views

HTML5 canvas adding dots/circles to canvas line - can i combine lines and circles to 'join the dots'?

I've made 2 Line paths with 'lineTo' which change direction at various points - these have plotted fine. These lines are rendered by canvas, not svg. I need to add circles at the points in the lines ...
-5
votes
2answers
26 views

what is the name of this form of a circle [closed]

What is the name of this form of circle? I just forgot. I want something to google about making circles like this but forgot about the circle form.
0
votes
0answers
102 views

JQuery circle image rotation

have a bit of a problem. I am following this http://tympanus.net/Tutorials/CircularPortfolio/ My purpose is for them links to be questions. When a question is hovered over (e.g. who is over 50) I ...
0
votes
0answers
17 views

Drawing circle around user location

I want to add a circle to around my user point. I know this question is asked a lot but when i implement general approach i can not see my circle in my map. Here is my code: MyMap.h #import ...
10
votes
1answer
312 views

Unwanted Warp effect drawing text on path android

I do some tests on drawing text on path. I made a background picture by setting bitmap to canvas. Then, I draw text on path to canvas, rotated by matrix. I have to shorten the code, I will only post ...
0
votes
0answers
34 views

2d rotation of view's which placed at circle view

I have set of View's which placed in the CircleView like this: public class CircleView extends RelativeLayout { static final int centerId = 111; private final int radius; private ...
0
votes
1answer
52 views

gauge highcharts : Exterior circle color

Is there a way change or get rid of the gray circle in a Gauge chart from HighCharts? Look this Gauge pls $(function () { $('#container').highcharts({ chart: { type: 'gauge', ...
0
votes
0answers
40 views

How to get array of Latlng's from a polyline when intersected by a circle

google maps v3 javascript I have an object that contains an array of all Latlng's within a route (overview_path array) I have a GPS device that is expected to move along that defined route. If this ...
1
vote
1answer
48 views

How to iterate over rings in a raster grid?

We are at any given position in two dimensional the space. This space is divided in quadratic cells. I want to loop over all cells in a given distance, in order of their distance to us. That could ...
0
votes
1answer
27 views

Determining Vector points on a circle

I have a problem it is like trig and pre calc. We are given vector points for OA which is (6 0) and vector OB (-6 0) and OC (5 root11) and they are all points on a circle with a radius of 6. How ...
0
votes
1answer
28 views

Circle mask on html

I'd like to circle mask the following: See on maphttp://a.tiles.mapbox.com/v3/sinan.map-l9wtmm6y.html#15/41.00996511838453/28.974809646606428'> I checked the previous topics but since I am very new ...
0
votes
0answers
60 views

Circles with border-radius

We're making an artsy menu for a blog. One of the things we wanted was make icons for each project in the menu containing a photo and an overlay color and we wanted them to be circles. So I was ...
0
votes
1answer
59 views

[Physics][2D][Collision] What to do after dettecting collision

In the last project (2D top-down game) I had quite simple collision detections and how to deal with it after detection. Everything could move only in 4 directions - up/down/left/right. C.D. worked ...
0
votes
1answer
32 views

How to move a kineticjs circle?

1) Why obj.setX(newx) does not move my kineticjs circles? I am now using obj.transitionTo function calls. 2) Why transitionTo moves my circle even without layer.drawScene ? setRadius is also not ...
0
votes
1answer
117 views

How to find point along arc in 3D given center, start & end points + radius + center angle?

If I have three points, let's say: start: (14.5, 10.1, 2.8) end: (-12.3, 6.4, 7.7) center: (0, 0, 0) And the following additional information that has been determined: Radius: 15 Center Angle: ...
0
votes
1answer
93 views

Distance between two points on circle in specific direction

I have two points on my circle, (x1y1) and (x2y2). How do I calculate distance between them in counter and clock wise direction. Currently, I am using following formula to calculate the distance ...
1
vote
1answer
54 views

Fit maximum convex hull to interior of a set of points

I'd like to find the largest convex hull which fits in the interior of a set of points. I have a set of points which are roughly circular, with a large number of outlier points outside of the circle ...
0
votes
1answer
46 views

Incorrect Points in Circumference

I am trying to calculate points in a circumference and I do not get expected values. I am calculating it like this: - (NSMutableArray *) pointsForSegment:(int) segment { NSLog(@"segment is %d", ...
1
vote
0answers
67 views

circle with filling color slowly in android

I want to show transparent color circle first and it should fill one color in that circle slowly. I tried by using circle progress bar but i didnt get the proper result. Any one help me to reach ...
1
vote
1answer
127 views

Rotating a circle image shifts it's position

I am trying to rotate a circle image using jquery rotate plugin. But, I observe that the circle image appears to be oscillating about it's center while rotating. Something like a linear movement. In ...
2
votes
1answer
111 views

CSS: Creating a clock with border-radius

I decided to try and create an analog 12 hour clock with some basic CSS properties. I start off by creating a square div of 500px. I then set the border-radius to 250px and get a nice looking ...
0
votes
0answers
21 views

How to draw circle fixed to bottom left of google map?

I am building a google maps application and I need to draw a circle that is fixed at bottom left of map. I know could do this using fixed div and some other javascript, but I would like to use the ...
0
votes
0answers
40 views

Calculate all points in an arc

I am trying to draw lines from the center of a circle to points (x, y) in the circumference. To calculate this the angle is used. I need to render points in between two angles. E.g. Angle 0 to angle ...
0
votes
1answer
60 views

Evenly space multiple circles rotating around a point

i've seen some questions about this but none of the solutions provided can work for me. Basically, I'm making a program that can animate 2nd representations of atoms. Say I need to rotate 8 small ...
0
votes
0answers
29 views

onTouch (CANCEL) remove the view

I am trying to draw a circle to center of the One more Image , it working fine but i need it in this way , when i touch(DOWN) the image add the view(draw circle) and touch(CANCEL) remove view. ...
0
votes
0answers
56 views

Plot a curve on a graph at certian points using JFrame

I'm not a programmer, so if you could help me as much as possible I would be very grateful, I have used this code http://www.kodejava.org/examples/805.html to plot values I have calculated using ...

1 2 3 4 5 13