AutoCAD
m (Reverted edits by 208.74.154.90 (talk) to last version by 68.99.231.207)
Line 20: Line 20:
   
 
==Relationships==
 
==Relationships==
For all these relationships, angles are in radians. Angle 2 is the angle of triangle 123 at Point 2
+
For all these relationships, angles are in radians. Angle 2 is the angle of triangle 123 at Point 2
   
Arc length=r*delta
+
Arc length=r*delta
   
Chord=r*tan(delta/2)
+
Chord=r*tan(delta/2)
   
 
Bulge=tan(delta/4)
 
Bulge=tan(delta/4)
Line 32: Line 32:
   
 
Tangent
 
Tangent
:=r*tan(delta/2)
+
:=r*tan(delta/2)
 
:=r*sin(delta/2)/cos(delta/2)
 
:=r*sin(delta/2)/cos(delta/2)
   
Line 39: Line 39:
   
 
R
 
R
:=chord/(2*sin(delta/2))
+
:=chord/(2*sin(delta/2)))
 
:=arc length/delta
 
:=arc length/delta
 
:<math>= \frac{chord}{2\sin \left(angle2 \right)}</math>
 
:<math>= \frac{chord}{2\sin \left(angle2 \right)}</math>

Revision as of 13:49, 14 June 2011

A knowledge of arc relationships is required when working with curves in AutoCAD design and programming.

GDD in AutoCAD

Definitions

r=radius

delta=included angle

tan(angle)=sin(angle)/cos(angle)

Units

delta in radians

=delta in degrees*pi/180
=delta in degrees/57.2957786666 approx.

delta in degrees

=delta in radians*180/pi
=delta in radians*57.2957786666 approx.

Relationships

For all these relationships, angles are in radians. Angle 2 is the angle of triangle 123 at Point 2

Arc length=r*delta

Chord=r*tan(delta/2)

Bulge=tan(delta/4)

=b/(chord/2)
=2b/chord

Tangent

=r*tan(delta/2)
=r*sin(delta/2)/cos(delta/2)

Delta

=4*arctan(bulge)

R

=chord/(2*sin(delta/2)))
=arc length/delta

Angle 2 (even when point 2 is not at midpoint of arc)

=(2*pi-delta)/2
=pi-(angle1+angle3)
=arcsin(chord/(2*R))