This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 411
4ce5b379 4048 0495 ab0e 81f28fa67bb8
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Creates a new user coordinate system from the x-axis and a point on XY plane.
Namespace: netDxf.Tables
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public static UCS FromXAxisAndPointOnXYplane(
string name,
Vector3 origin,
Vector3 xDirection,
Vector3 pointOnPlaneXY
)
VB
Public Shared Function FromXAxisAndPointOnXYplane (
name As String,
origin As Vector3,
xDirection As Vector3,
pointOnPlaneXY As Vector3
) As UCS
C++
public:
static UCS^ FromXAxisAndPointOnXYplane(
String^ name,
Vector3 origin,
Vector3 xDirection,
Vector3 pointOnPlaneXY
)
F#
static member FromXAxisAndPointOnXYplane :
name : string *
origin : Vector3 *
xDirection : Vector3 *
pointOnPlaneXY : Vector3 -> UCS
- String
- User coordinate system name.
- Vector3
- Origin in WCS.
- Vector3
- X-axis direction in WCS.
- Vector3
- Point on the XY plane.
UCS
A new user coordinate system.