2023 Method
Changes 4
M

Arc.Create

Description:
Creates a new geometric arc object based on three points.
Overloads (3):
public static Arc Create(
	XYZ end0,
	XYZ end1,
	XYZ pointOnArc
)
Return Value The new arc. The new arc.
// Create a new arc using two ends and a point on the curve
XYZ end0 = new XYZ(1, 0, 0);    // start point of the arc
XYZ end1 = new XYZ(10, 10, 10); // end point of the arc
XYZ pointOnCurve = new XYZ(10, 0, 0);   // point along arc

Arc arc = Arc.Create(end0, end1, pointOnCurve);