Interface DOMPoint
interface DOMPoint {
w: number;
x: number;
y: number;
z: number;
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
toJSON(): any;
}
w: number;
x: number;
y: number;
z: number;
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
toJSON(): any;
}
Hierarchy
- DOMPointReadOnly
- DOMPoint (View Summary)
Properties
w
w: number
The DOMPoint interface's w property holds the point's perspective value, w, for a point in space.
x
x: number
The DOMPoint interface's x property holds the horizontal coordinate, x, for a point in space.
y
y: number
The DOMPoint interface's y property holds the vertical coordinate, y, for a point in space.
z
z: number
The DOMPoint interface's z property specifies the depth coordinate of a point in space.
Methods
matrixTransform
The
matrixTransform()method of the DOMPointReadOnly interface applies a matrix transform specified as an object to the DOMPointReadOnly object, creating and returning a newDOMPointReadOnlyobject.Parameters
Optionalmatrix: DOMMatrixInit
Returns DOMPoint
toJSON
The DOMPointReadOnly method
toJSON()returns an object giving thejs-nolint toJSON()None.Returns any
A
DOMPointobject represents a 2D or 3D point in a coordinate system; it includes values for the coordinates in up to three dimensions, as well as an optional perspective value.MDN Reference