Interface DOMPointReadOnly
interface DOMPointReadOnly {
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 (View Summary)
Properties
Readonlyw
w: number
The DOMPointReadOnly interface's w property holds the point's perspective value, w, for a read-only point in space.
Readonlyx
x: number
The DOMPointReadOnly interface's x property holds the horizontal coordinate, x, for a read-only point in space.
Readonlyy
y: number
The DOMPointReadOnly interface's y property holds the vertical coordinate, y, for a read-only point in space.
Readonlyz
z: number
The DOMPointReadOnly interface's z property holds the depth coordinate, z, for a read-only 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
The
DOMPointReadOnlyinterface specifies the coordinate and perspective fields used by DOMPoint to define a 2D or 3D point in a coordinate system.MDN Reference