Interface IST_3DPoint
3D point interface @description Represents a point in 3D Cartesian space
Namespace: STTypes
Assembly: STTypes.dll
Syntax
[Guid("0F808DF2-B8B4-46AD-A668-0D3BCF2BF1AE")]
public interface IST_3DPoint
Properties
X
X-axis coordinate value
Declaration
double X { get; set; }
Property Value
Type | Description |
---|---|
double |
Y
Y-axis coordinate value
Declaration
double Y { get; set; }
Property Value
Type | Description |
---|---|
double |
Z
Z-axis coordinate value
Declaration
double Z { get; set; }
Property Value
Type | Description |
---|---|
double |
Methods
Assign(IST_3DPoint)
Copy coordinate values from another point
Declaration
void Assign(IST_3DPoint Point)
Parameters
Type | Name | Description |
---|---|---|
IST_3DPoint | Point | Source point to copy from |