web api interface
DOMPointReadOnly
Available in workers
The DOMPointReadOnly interface specifies the coordinate and perspective fields used by DOMPoint to define a 2D or 3D point in a coordinate system.
There are two ways to create a new DOMPointReadOnly instance. First, you can use its constructor, passing in the values of the parameters for each dimension and, optionally, the perspective:
/* 2D */
const point2D = new DOMPointReadOnly(50, 50);
/* 3D */
const point3D = new DOMPointReadOnly(50, 50, 25);
/* 3D with perspective */
const point3DPerspective = new DOMPointReadOnly(100, 100, 100, 1.0);
The other option is to use the static DOMPointReadOnly.fromPoint() method:
const point = DOMPointReadOnly.fromPoint({ x: 100, y: 100, z: 50, w: 1.0 });
Constructor
DOMPointReadOnly()- : Creates a new
DOMPointReadOnlyobject given the values of its coordinates and perspective. To create a point using an object, you can instead useDOMPointReadOnly.fromPoint().
- : Creates a new
Instance properties
xRead only- : The point’s horizontal coordinate,
x.
- : The point’s horizontal coordinate,
yRead only- : The point’s vertical coordinate,
y.
- : The point’s vertical coordinate,
zRead only- : The point’s depth coordinate,
z.
- : The point’s depth coordinate,
wRead only- : The point’s perspective value,
w.
- : The point’s perspective value,
Static methods
DOMPointReadOnly.fromPoint()- : A static method that creates a new
DOMPointReadOnlyobject given the coordinates provided in the specified object.
- : A static method that creates a new
Instance methods
matrixTransform()- : Applies a matrix transform specified as an object to the
DOMPointReadOnlyobject.
- : Applies a matrix transform specified as an object to the
toJSON()- : Returns a JSON representation of the
DOMPointReadOnlyobject.
- : Returns a JSON representation of the
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.