Tagged Questions

Arc is a generic term, with uses in describing shapes or the ARC semantic web system. It should not be used for Apple's automatic reference counting system (use [automatic-ref-counting] for that).

learn more… | top users | synonyms

7
votes
2answers
909 views

Circle drawing with SVG's arc path

This SVG path can draw 99.99% of a circle: (try it on http://jsfiddle.net/DFhUF/46/ and see if you see 4 arcs or only 2, but note that if it is IE, it is rendered in VML, not SVG, but have the ...
6
votes
2answers
412 views

hacker news algorithm in php?

this is the hacker news ranking algorithm, which i think is a simple way of ranking things, espcially if users are voting on items, but i really dnt understand this, can this be converted to php, so i ...
5
votes
2answers
83 views

How to draw only this part of the arc?

Take a look at this picture: I know p1, p2, and center, which are 2d points. I also know the angle p1-center-p2 and the radius r. How can I draw only the filled part of the arc using the canvas' ...
5
votes
3answers
214 views

Draw a point a set distance away from a base point

I'm trying to figure out an algorithm for finding a random point a set distance away from a base point. So for example: This could just be basic maths and my brain not working yet (forgive me, ...
4
votes
1answer
158 views

The advantage of Arc over Racket

Arc is built on top of Racket. Since both of them are in the Lisp family, I am curious about the the advantage of Arc over Racket, or what is the motivation of creating Arc given that Racket is ...
4
votes
3answers
784 views

Getting End Point in ArcSegment with Start X/Y and Start+Sweep Angles

Does anyone have a good algorithm for calculating the end point of ArcSegment? This is not a circular arc - it's an elliptical one. For example, I have these initial values: Start Point X = 0.251 ...
4
votes
3answers
1k views

drawing centered arcs in raphael js

I need to draw concentric arcs of various sizes using raphael.js. I tried to understand the code behind http://raphaeljs.com/polar-clock.html, which is very similar to what I want, but, whithout ...
4
votes
1answer
3k views

HTML 5 Canvas performance

I'm just started on playing around with the canvas HTML5-object. For the sake of performance tests, I have made a little ping pong game. Are there any performance improvements I could use? The ball ...
3
votes
3answers
1k views

Define a circle / arc animation in SVG

Does anyone know how to define an animated arc / circle in SVG, such that the arc starts at 0 degrees and ends at 360 degrees?
2
votes
1answer
78 views

different fillStyle colors for arc in canvas

I imagine the solution to this is very simple, and apologize in advance if this is painfully obvious, but I can't seem to figure out how to set two different fillStyles for two different arcs ...I ...
2
votes
1answer
478 views

android 2d arc collision detection

i have a rotated arc drawn using android 2d graphics c.drawArc(new RectF(50, 50, 250, 250), 30, 270, true, paint); the arc will rotate while the game is running , i wanna know how i can detect if ...
2
votes
2answers
170 views

How to determine whether a point (X,Y) is contained within an arc section of a circle (i.e. a Pie slice)?

Imagine a circle. Imagine a pie. Imagine trying to return a bool that determines whether the provided parameters of X, Y are contained within one of those pie pieces. What I know about the arc: I ...
2
votes
1answer
265 views

pieslice() function in C

How can I draw a major pieslice in C, using the function pieslice()? pieslice(X-centre,Y-centre,StrtAngle,EndAngle,Radius). I am trying to draw a major sector or pieslice in C, using the pieslice ...
2
votes
1answer
749 views

HTML Canvas draw arc between two points

I have found similar questions out there, but no answer. I have sketched a circle like so ctx.strokeStyle='rgb(0,0,0)'; ctx.lineWidth=10; ctx.beginPath(); ctx.arc(100,100,45,0,Math.PI*2,true); ...
2
votes
2answers
1k views

Draw Arc with 2 points and center of the circle

I have two points of circle and center of this circle. I want to draw arc between these points. Method drawArc i to simply and doesn't fit to this problem. Anybody help?
2
votes
3answers
571 views

How to calculate (x,y) for a fixed arc length away from a point on a circumference

I've spent so many hours on this I can feel my sanity slowly slipping. So any help would be really truly appreciated. I'll try and be as succinct as possible. I have a circle on a 2D plane. I know ...
2
votes
2answers
1k views

Android: looking for a drawArc() method with inner & outer radius

I have the following custom view: This I have achieved by using the Canvas' drawArc() method. However, with this drawArc() method I cannot limit the arc's inner radius. What I'd like to have is ...
1
vote
1answer
41 views

HTML5: Fill circle/arc by percentage

Here is my pseudo code: var percentage = 0.781743; // no specific length var degrees = percentage * 360.0; var radians = degrees * Math.PI / 180.0; var x = 50; var y = 50; var r = 30; var s = 1.5 * ...
1
vote
1answer
34 views

Drawing Oval with Gdk Cairo Context

I want to draw only the circumference of an oval. I use this: gc->save(); gc->translate( xc, yc ); gc->arc( 0.0, 0.0, 1.0, 0.0, 2.0*M_PI ); gc->scale( width*0.5, height*0.5 ); ...
1
vote
1answer
169 views

c++ Bresenham's line algorithm draw arc and rotate

I'm searching way to make arc with Bresenham's line algorithm. This algoritm draw perfect circle, but what if i need draw arc (from 0 to Pi) and rotate it for 30 degrees (for example)? void ...
1
vote
1answer
69 views

Arc Consistency in Java, questions on implementation

So my goal is to write the method that solves a sudoku puzzle, we were given the method stub "public int[][] solve(int[][] board)". We are supposed to use arc consistency and domain splitting to find ...
1
vote
1answer
99 views

How can I generate multiple expressions at compile time, within a macro call?

A particular macro runs each expression in its body, interleaving an atom between each expression, and collecting the results. This works well with hard-coded expressions, but if I want to ...
1
vote
1answer
566 views

JFreechart draw arc on chart

I have 2 questions 1)I am trying to draw an arc on an XYplot using the shape annotation. I used the XYLine annotation to draw a line and I want the arc to start where the line ends. I am having some ...
1
vote
3answers
187 views

In Javascript canvas drawing, how do you eliminate the line in arc()?

I'm trying to draw an arc on a canvas in Javascript, but I want to get rid of the line that Javascript automatically draws. With the line being drawn, there are two problems: a) fill() malfunctions b) ...
1
vote
1answer
78 views

Calculate size of a circle from arcs?

How can I calculate the size of a circle from a set of arcs? Specifically, I have this SVG path definition which draws a circle, I'm looking to work out its size. <path clip-path="url(#SVGID_2_)" ...
1
vote
2answers
583 views

Drawing a Projectile Motion Path in Android

I asked this question before, but I think I worded it badly and thus did not get any response. I am trying to make an app for android that draws the path of an object in projectile motion. I have the ...
1
vote
3answers
592 views

How to draw an arrow between two images in WinForms?

I have to do this: to draw an arrow between two images from my canvas, so when I click the button with the arrow on it and I put click on one image to paste the arrow on it and then to draw the arrow ...
1
vote
3answers
1k views

Calculating a tangent arc between two points on two circles

How can I calculate the arc between two circles? The arc must be tangent to the two points on the circles. Here is a picture illustrating it. I'm trying to code and calculate the orange arc and the ...
1
vote
1answer
263 views

How do i get the x/y coordinates of the first and last points of the drawn arc relative to the top left corner of the canvas?

I have a square canvas with a width of 100 and a height of 100. Within that square I draw an arc like so: var canvas = document.getElementById('myCanvas'); var ctx = canvas.getContext('2d'); ...
1
vote
3answers
2k views

How to draw an arc from radius and inner angle in Silverlight

In a silverlight 3 project I have to draw an arc programatically and I have radius of circle and inner angle of the arc. Could you please direct me to some related articles. Thanks in anticipation! ...
0
votes
0answers
4 views

Views and memory management in ios5

I am just wondering if there is any memory leaks in the approach i am currently having: I am adding multiple subviews to a view and have define each of those subviews as property with the retain ...
0
votes
2answers
15 views

How do I correct the “Undefined symbols for architecture i386: ”_main" linking issue?

I am trying to use the KeyChainitemwrapper provided by apple. My project is using ARC but I have turned of ARC on KeyChainitemwrapper.m. I linked the 'security.framework' framework to my project. I ...
0
votes
0answers
9 views

draw arc on ellipse - Xcode

I have to draw an arc for ellipse in Xcode. I have drawn an ellipse (not circle) using a rectangle. And i have starting angle and ending angle of an inner imaginary circle inside ellipse with same ...
0
votes
1answer
26 views

Android - How to draw an arc based gradient

I am trying to create an arc (variable number of degrees) that gradually goes from one color to another. From example from blue to red: This is my code: SweepGradient shader = new ...
0
votes
0answers
10 views

How to convert WPF Arc Segment to Java Arc 2D?

How can I convert a WPF Arc segment (with all its parameters known) to an arc in Java (Arc 2D)? The customized Java API exposes only StartAngle & ExtentAngle attributes, along with the width and ...
0
votes
2answers
25 views

HTML5: Get click position from canvas arc

See this jsFiddle post for a working arc drawing; thanks to Simon Sarris for the fix in my previous questions. I'm using the KineticJS plugin to create shapes and make use of event handlers. Assuming ...
0
votes
1answer
53 views

Android:Draw Arc with gradiant fill color

I want to draw arc on canvas with gradient fill how can achieve this?
0
votes
0answers
33 views

html5 arc width and height are not accurate when stroke is big

when I draw an ellipse using html5 arc function it renders good but when I make stroke thickness big, the width and height change. this is my code window.onload = function() { ...
0
votes
1answer
38 views

How to implement “binding” for coloured petri net in Java?

I'm implementing a coloured petri net in Java. It's kind of a finite state automata. The problem is that I don't know how to implement "binding". In other words, colors should be assigned to places ...
0
votes
1answer
42 views

SVG path arc radius ratio

All the docs I've seen for the ArcTo instruction for a SVG <path/>'s d attribute give the first two arguments as the x and y radius of the arc. Earlier, though, I was playing around, and in ...
0
votes
1answer
64 views

Computing Bezier Arc length 3D C++

Im having 4 vector3's holding positions of 4 points for a cubic bezier curve in 3D space. I want to compute arc length, Any help would be appreciated. Thanks .
0
votes
0answers
7 views

REPL for interaction with live website backend?

There was a Hacker News post a while back noting that the title of Hacker News had briefly changed to "Ev News", and in the comments Paul Graham said he had changed the site title using a REPL. Where ...
0
votes
1answer
57 views

Canvas half circle bug workaround in Chrome

It looks like someone did mention this bug to the Chromium forums but there was no resolution so I'm wondering if anyone simply knows a workaround. The issue is trying to render a half circle ...
0
votes
1answer
85 views

Get points of svg/xaml arc

Format of svg arc (arc in xaml have same args): (rx ry x-axis-rotation large-arc-flag sweep-flag x y) Description: Draws an elliptical arc from the current point to (x, y). The size and ...
0
votes
0answers
41 views

Artifacts in drawing canvas circle

I am getting artifacts when drawing circles and I'm not 100% sure why. Here is my code below to do so. I'm using processing.js and drawing to the canvas lib as well. Any thoughts? You can see there is ...
0
votes
1answer
17 views

Scale command applying to multiple shapes

Wondering why the scale parameter of the variable ´ell´ is applying to the next two circles I have created as well: var ell=canvas.getContext("2d") ell.beginPath() ell.lineWidth=2 ...
0
votes
3answers
147 views

Is it possible to change the shape of android seek bar?

I want to implement something similar to android seek bar.But not in a linear fashion,in an arc shape. is it possible to customize the seek bar in an arc shape?
0
votes
1answer
83 views

Can somebody please help me with a geometric transformation problem?

I need to draw a circular arc between two given points. I also have the arc's radius. I understand that this can be done using standard canvas APIs but I need to handle the case of elliptical arcs ...
0
votes
2answers
121 views

Why is canvas.arc not working?

I have this code at the end of a web page: var canvas = document.getElementByID("canvas"); var ctx = canvas.getContext("2d"); canvas.style.width = $(window).width(); canvas.style.height = ...
0
votes
2answers
384 views

How to draw a circle sector on an html5 canvas?

I'm trying to make a sort of pie-chart shape on a canvas element, however I can't seem to find any function that does this by itself. I only seem to be able to draw full circles and segments. Is there ...

1 2