2026 Method
Changes 5
M

Arc.Create

Description:
Creates a new geometric arc object based on plane, radius, and angles.
Remarks:
If the angle range is equal to or greater than 2 * PI, the curve will be automatically converted to an unbounded circle.
Overloads (3):
Create(Plane,Double,Double,Double)
public static Arc Create(
	Plane plane,
	double radius,
	double startAngle,
	double endAngle
)
  • plane
    The plane which the arc resides. The plane's origin is the center of the arc.
  • Double
    radius
    The radius of the arc.
  • Double
    startAngle
    The start angle of the arc (in radians).
  • Double
    endAngle
    The end angle of the arc (in radians).
Return Value Arc The new arc.