arc(3f) - [M_pixel:ARCS] draw an arc using current line width and color
(LICENSE:PD)
definition:
subroutine arc(x, y, radius, startang, endang)
real,intent(in) :: x
real,intent(in) :: y
real,intent(in) :: radius
real,intent(in) :: startang
real,intent(in) :: endang
Draw an arc. x, y, and radius are values in world units.
Angles are in degrees, positive measured counterclockwise from the
+X axis. The current position after the arc is drawn is at the end
of the arc.
X,Y Coordinates for the center of the circle
RADIUS Radius of the circle
STARTANG Start angle
ENDANG End angle
Sample program:
program demo_arc
use M_pixel
use M_writegif, only : writegif
implicit none
integer :: transparent=0
call prefsize(600,240)
call vinit()
call ortho2(0.0,60.0,0.0,24.0)
call linewidth(400)
call color(1)
call arc(16.0,12.0,12.0,90.0,270.0)
call color(2)
call arc(44.0,12.0,12.0,-90.0,90.0)
! write gif with a transparent background
call writegif('arc.3m_pixel.gif',P_pixel,P_ColorMap,transparent)
call vexit()
end program demo_arc
John S. Urban
Public Domain
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real, | intent(in) | :: | x | |||
real, | intent(in) | :: | y | |||
real, | intent(in) | :: | radius | |||
real, | intent(in) | :: | startang | |||
real, | intent(in) | :: | endang |
subroutine arc(x,y,radius,startang,endang)
! ident_13="@(#) M_pixel arc(3f) draw a arc using current line width and color"
real,intent(in) :: x,y
real,intent(in) :: radius
real,intent(in) :: startang,endang
real :: deltang
integer :: i
real :: dx,dy,cx,cy,cosine,sine
integer :: numsegs
numsegs = nint( abs(endang - startang) / 360.0) * P_nsegs
deltang = (endang - startang) / numsegs
cosine = cosd(deltang)
sine = sind(deltang)
! calculates initial point on arc
cx = x + radius * cosd(startang)
cy = y + radius * sind(startang)
call move2(cx, cy)
do i=0,numsegs-1
dx = cx - x
dy = cy - y
cx = x + dx * cosine - dy * sine
cy = y + dx * sine + dy * cosine
call draw2(cx, cy)
enddo
end subroutine arc