TrigCalcAutoCADBulge Method

Calculate the AutoCAD bulge of a curve and return an array of points representing lines in a segmented curve.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static List<FPoint> CalcAutoCADBulge(
	FPoint previousPoint,
	FPoint currentPoint,
	float bulge,
	float sweepStep
)

Parameters

previousPoint  FPoint
Previous point coordinates.
currentPoint  FPoint
Current point coordinates.
bulge  Single
AutoDesk bulge calculation factor.
sweepStep  Single
Step of sweep between each segment, in degrees.

Return Value

ListFPoint
Returns reference to a collection of points from the start of the curve to the end.

Remarks

To match AutoCAD's hard-coded angular orientation, this method always uses the Cartesian drawing space.

See Also