UCSFromXAxisAndPointOnXYplane Method
|
Creates a new user coordinate system from the x-axis and a point on XY plane.
Namespace:
DXFReaderNET.Tables
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static UCS FromXAxisAndPointOnXYplane(
string name,
Vector3 origin,
Vector3 xDirection,
Vector3 pointOnPlaneXY
)
Public Shared Function FromXAxisAndPointOnXYplane (
name As String,
origin As Vector3,
xDirection As Vector3,
pointOnPlaneXY As Vector3
) As UCS
public:
static UCS^ FromXAxisAndPointOnXYplane(
String^ name,
Vector3 origin,
Vector3 xDirection,
Vector3 pointOnPlaneXY
)
static member FromXAxisAndPointOnXYplane :
name : string *
origin : Vector3 *
xDirection : Vector3 *
pointOnPlaneXY : Vector3 -> UCS
STATIC METHOD FromXAxisAndPointOnXYplane(
name AS STRING,
origin AS Vector3,
xDirection AS Vector3,
pointOnPlaneXY AS Vector3
) AS UCS
Parameters
- name
- Type: SystemString
User coordinate system name. - origin
- Type: DXFReaderNETVector3
Origin in WCS. - xDirection
- Type: DXFReaderNETVector3
X-axis direction in WCS. - pointOnPlaneXY
- Type: DXFReaderNETVector3
Point on the XYplane.
Return Value
Type:
UCSA new user coordinate system.
See Also