ShapePathPoint
Contents
[
Hide
]ShapePathPoint class
Represents an x-y coordinate within the path coordinate space.
class ShapePathPoint;
Methods
Method | Description |
---|---|
getX() | Gets and sets x coordinate for this position coordinate. |
setX(number) | Gets and sets x coordinate for this position coordinate. |
getY() | Gets y coordinate for this position coordinate. |
setY(number) | Gets y coordinate for this position coordinate. |
isNull() | Checks whether the implementation object is null. |
getX()
Gets and sets x coordinate for this position coordinate.
getX() : number;
setX(number)
Gets and sets x coordinate for this position coordinate.
setX(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
getY()
Gets y coordinate for this position coordinate.
getY() : number;
setY(number)
Gets y coordinate for this position coordinate.
setY(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;