ArcLengthDimension Constructor (Vector2, Vector2, Double, Double)
|
Initializes a new instance of the ArcLengthDimension class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntaxpublic ArcLengthDimension(
Vector2 startPoint,
Vector2 endPoint,
double bulge,
double offset
)
Public Sub New (
startPoint As Vector2,
endPoint As Vector2,
bulge As Double,
offset As Double
)
public:
ArcLengthDimension(
Vector2 startPoint,
Vector2 endPoint,
double bulge,
double offset
)
new :
startPoint : Vector2 *
endPoint : Vector2 *
bulge : float *
offset : float -> ArcLengthDimension CONSTRUCTOR(
startPoint AS Vector2,
endPoint AS Vector2,
bulge AS REAL8,
offset AS REAL8
)
Parameters
- startPoint
- Type: DXFReaderNETVector2
Arc start point. - endPoint
- Type: DXFReaderNETVector2
Arc end point. - bulge
- Type: SystemDouble
Bulge value. - offset
- Type: SystemDouble
Distance between the center of the measured arc and the dimension line.
See Also