Point4
-
class
common.Point4()
Constructors
-
common.Point4.constructor() - Point4(x: number, y: number, z: number, w: number):
Point4Parameters
x: number
y: number
z: number
w: number
Returns:
Point4
Properties
-
common.Point4.w - w: number
-
common.Point4.x - x: number
-
common.Point4.y - y: number
-
common.Point4.z - z: number
Methods
-
common.Point4.equals() - equals(other:
IPoint4): booleanStrictly compares this point with another.
Parameters
other:
IPoint4Point to compare with.Returns: boolean
True if the values of this point equal those of the other.
-
common.Point4.equalsWithTolerance() - equalsWithTolerance(other:
IPoint4, tolerance: number): booleanCompares this point with another using a tolerance.
Parameters
Returns: boolean
True if the values of this point equal those of the other.
-
common.Point4.scale() - scale(k: number): this
Parameters
k: numberReturns: this
-
common.Point4.set() - set(x: number, y: number, z: number, w: number): void
Parameters
x: number
y: number
z: number
w: number
Returns: void