| AlignedDimension Constructor (Vector2, Vector2, Double) | 
        
         
            Initializes a new instance of the AlignedDimension class.
            
 
    Namespace: 
   DXFReaderNET.Entities
    Assembly:
   DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
 Syntax
Syntaxpublic AlignedDimension(
	Vector2 firstPoint,
	Vector2 secondPoint,
	double offset
)
Public Sub New ( 
	firstPoint As Vector2,
	secondPoint As Vector2,
	offset As Double
)
public:
AlignedDimension(
	Vector2 firstPoint, 
	Vector2 secondPoint, 
	double offset
)
new : 
        firstPoint : Vector2 * 
        secondPoint : Vector2 * 
        offset : float -> AlignedDimension CONSTRUCTOR(
	firstPoint AS Vector2,
	secondPoint AS Vector2,
	offset AS REAL8
)
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 reference line and the dimension line.
 Remarks
RemarksThe reference points define the distance to be measure.
 See Also
See Also