TrigCalcAutoCADBulge Method
Calculate the AutoCAD bulge of a curve and return an array of points
representing lines in a segmented curve.
Namespace: GeometryAssembly: Geometry (in Geometry.dll) Version: 25.2820.4317
public static List<FVector2> CalcAutoCADBulge(
FVector2 previousPoint,
FVector2 currentPoint,
float bulge,
float sweepStep
)
Public Shared Function CalcAutoCADBulge (
previousPoint As FVector2,
currentPoint As FVector2,
bulge As Single,
sweepStep As Single
) As List(Of FVector2)
No code example is currently available or this language may not be supported.
- previousPoint FVector2
-
Previous point coordinates.
- currentPoint FVector2
-
Current point coordinates.
- bulge Single
-
AutoDesk bulge calculation factor.
- sweepStep Single
-
Step of sweep between each segment, in degrees.
ListFVector2
Returns reference to a collection of points from the start of the
curve to the end.
To match AutoCAD's hard-coded angular orientation, this method
always uses the Cartesian drawing space.