LinearDimension Constructor (Vector2, Vector2, Double, Double, DimensionStyle)
|
Initializes a new instance of the LinearDimension class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public LinearDimension(
Vector2 firstPoint,
Vector2 secondPoint,
double offset,
double rotation,
DimensionStyle style
)
Public Sub New (
firstPoint As Vector2,
secondPoint As Vector2,
offset As Double,
rotation As Double,
style As DimensionStyle
)
public:
LinearDimension(
Vector2 firstPoint,
Vector2 secondPoint,
double offset,
double rotation,
DimensionStyle^ style
)
new :
firstPoint : Vector2 *
secondPoint : Vector2 *
offset : float *
rotation : float *
style : DimensionStyle -> LinearDimension
CONSTRUCTOR(
firstPoint AS Vector2,
secondPoint AS Vector2,
offset AS REAL8,
rotation AS REAL8,
style AS DimensionStyle
)
Parameters
- firstPoint
- Type: DXFReaderNETVector2
First reference point of the dimension. - secondPoint
- Type: DXFReaderNETVector2
Second reference point of the dimension. - offset
- Type: SystemDouble
Distance between the mid point reference line and the dimension line. - rotation
- Type: SystemDouble
Rotation in degrees of the dimension line. - style
- Type: DXFReaderNET.TablesDimensionStyle
The style to use with the dimension.
Remarks The reference points define the distance to be measure.
See Also