UCS Constructor (String, Vector3, Vector3, Vector3)
|
Initializes a new instance of the UCS class.
Namespace:
DXFReaderNET.Tables
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public UCS(
string name,
Vector3 origin,
Vector3 xDirection,
Vector3 yDirection
)
Public Sub New (
name As String,
origin As Vector3,
xDirection As Vector3,
yDirection As Vector3
)
public:
UCS(
String^ name,
Vector3 origin,
Vector3 xDirection,
Vector3 yDirection
)
new :
name : string *
origin : Vector3 *
xDirection : Vector3 *
yDirection : Vector3 -> UCS
CONSTRUCTOR(
name AS STRING,
origin AS Vector3,
xDirection AS Vector3,
yDirection AS Vector3
)
Parameters
- name
- Type: SystemString
User coordinate system name. - origin
- Type: DXFReaderNETVector3
Origin in WCS. - xDirection
- Type: DXFReaderNETVector3
X-axis direction in WCS. - yDirection
- Type: DXFReaderNETVector3
Y-axis direction in WCS.
Remarks
The x-axis direction and y-axis direction must be perpendicular.
See Also