Interface IPointF
A structure representing a point in a two-dimensional plane.
Package: @aurigma/design-atoms-interfaces
Properties
x
The x-coordinate of the point.
Declaration
x?: number;
Property Value
Type | Description |
---|---|
number | The x-coordinate of the point. |
y
The y-coordinate of the point.
Declaration
y?: number;
Property Value
Type | Description |
---|---|
number | The y-coordinate of the point. |