Interface IST_5DPoint
5D point interface @description Represents a point with normal vector in 3D space
Namespace: STTypes
Assembly: STTypes.dll
Syntax
[Guid("2F575445-2DA4-4CB5-A6BE-4991595CD8B4")]
public interface IST_5DPoint
Properties
P
Position coordinates (X,Y,Z)
Declaration
IST_3DPoint P { get; set; }
Property Value
Type | Description |
---|---|
IST_3DPoint |
n
Normal vector coordinates (X,Y,Z)
Declaration
IST_3DPoint n { get; set; }
Property Value
Type | Description |
---|---|
IST_3DPoint |
Methods
Assign(IST_5DPoint)
Copy values from another 5D point
Declaration
void Assign(IST_5DPoint Point)
Parameters
Type | Name | Description |
---|---|---|
IST_5DPoint | Point | Source point to copy from |