Public Member Functions | |
Properties | |
| string | toString () |
| Returns a string representation of this Point. | |
Operators | |
| Point | opAdd (Vector v) |
| Adds a vector to this point. | |
| Point | opSub (Vector v) |
| Subtracts a vector from this point. | |
| Vector | opSub (Point p) |
| Subtracts a point from this point. | |
| Point | opAddAssign (Vector v) |
| Point | opSubAssign (Vector v) |
Static Public Member Functions | |
Pseudo-Constructors | |
| static Point | opCall (int x, int y) |
| Constructs a Point with the given coordinates. | |
Public Attributes | |
| POINT | pt |
This point as a Windows POINT structure. | |
| int | x |
| int | y |
This type is a wrapper around the Windows API POINT structure.
| static Point smjg.libs.sdwf.geometry.Point.opCall | ( | int | x, | |
| int | y | |||
| ) | [static] |
| string smjg.libs.sdwf.geometry.Point.toString | ( | ) |
Returns a string representation of this Point.
Adds a vector to this point.
(Implementation of this + v.
Subtracts a vector from this point.
(Implementation of this - v.
Subtracts a point from this point.
(Implementation of this - p.
This point as a Windows POINT structure.
1.5.4