powered by
Draw acircular arc from angle 1 to angle 2 at a given location.
darc(rad = 1, ang1 = 0, ang2 = 360, x1 = 0, y1 = 0, n = 1)
list(x,y)
radius
angle 1, degrees
angle 2, degrees
x location, plot coordinates
y location, plot coordinates
increment for number of segments, degrees
Jonathan M. Lees<jonathan.lees@unc.edu>
If angle1 > angle2 arc is drawn in opposite direction
plot(c(0,1), c(0,1), type='n', ann=FALSE, asp=1) A = darc(.3, 23, 47, .5, .5, n=1) lines(A$x, A$y)
Run the code above in your browser using DataLab