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.2414.4032
public static List<FPoint> CalcAutoCADBulge(
FPoint previousPoint,
FPoint currentPoint,
float bulge,
float sweepStep
)
Public Shared Function CalcAutoCADBulge (
previousPoint As FPoint,
currentPoint As FPoint,
bulge As Single,
sweepStep As Single
) As List(Of FPoint)
No code example is currently available or this language may not be supported.
- 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.
ListFPoint
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.