Interface IST_2DPoint
2D point interface @description Represents a point in 2D space
Namespace: STTypes
Assembly: STTypes.dll
Syntax
[Guid("63C73F73-15EC-4162-B433-6AC694BF6180")]
public interface IST_2DPoint
Properties
X
X coordinate value
Declaration
double X { get; set; }
Property Value
Type | Description |
---|---|
double |
Y
Y coordinate value
Declaration
double Y { get; set; }
Property Value
Type | Description |
---|---|
double |
Methods
Assign(IST_2DPoint)
Copy values from another point
Declaration
void Assign(IST_2DPoint Point)
Parameters
Type | Name | Description |
---|---|---|
IST_2DPoint | Point | Source point to copy from |