Readonly
objectThis object is of type point.
Readonly
virtualWhether this object is virtual.
Readonly
xX coordinate of the point.
Readonly
yY coordinate of the point.
Returns the distance from the origin.
Whether this object is equal to another object.
If the objects are of a different type, this method should return false.
If the objects are of the same type, this method should return true if the objects are equal, and false if they are not.
The object to compare to.
Returns the point as a Vector.
Static
fromCreates an unbound point from a bare vector.
The bare vector to create the point from.
An unbound point with the same coordinates as the bare vector.
Static
fromCreates an unbound point from coordinates.
The x coordinate of the point.
The y coordinate of the point.
An unbound point with the given coordinates.
Static
fromCreates a new unbound point from a point.
A point to create an unbound point from.
A new unbound point with the same coordinates as the given point.
Static
fromCreates an unbound point from a vector.
The vector to create the point from.
An unbound point with the same coordinates as the vector.
Generated using TypeDoc
A class representing an unbound point. This point is not bound to any plane, nor is it a part of the dependency graph.