Pnt Type
An immutable 3D point. Made up from 3 floats: X, Y, and Z. A 3D point represents a location in space, but not direction or an offset. (use Vec for that.) (2D Points are called 'Pt' )
Record fields
Record Field |
Description
|
Full Usage:
X
Field type: float
|
Gets the X part of this 3D point.
|
Full Usage:
Y
Field type: float
|
Gets the Y part of this 3D point.
|
Full Usage:
Z
Field type: float
|
Gets the Z part of this 3D point.
|
Constructors
Constructor |
Description
|
|
Create a new 3D point. Made up from 3 floats: X, Y, and Z.
|
Instance members
Instance member |
Description
|
Full Usage:
this.AsString
Returns: string
|
Format 3D point into string with nice floating point number formatting of X, Y and Z But without full type name as in pt.ToString()
|