LinearDimension Constructor (Line, Double, Double, Vector3)
|
Initializes a new instance of the LinearDimension class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public LinearDimension(
Line referenceLine,
double offset,
double rotation,
Vector3 normal
)
Public Sub New (
referenceLine As Line,
offset As Double,
rotation As Double,
normal As Vector3
)
public:
LinearDimension(
Line^ referenceLine,
double offset,
double rotation,
Vector3 normal
)
new :
referenceLine : Line *
offset : float *
rotation : float *
normal : Vector3 -> LinearDimension
CONSTRUCTOR(
referenceLine AS Line,
offset AS REAL8,
rotation AS REAL8,
normal AS Vector3
)
Parameters
- referenceLine
- Type: DXFReaderNET.EntitiesLine
Reference line of the dimension. - offset
- Type: SystemDouble
Distance between the reference line and the dimension line. - rotation
- Type: SystemDouble
Rotation in degrees of the dimension line. - normal
- Type: DXFReaderNETVector3
Normal vector of the plane where the dimension is defined.
Remarks The reference points define the distance to be measure.
See Also