Skip to main content

interface DOMPointReadOnly

unstable

The DOMPointReadOnly interface specifies the coordinate and perspective fields used by DOMPoint to define a 2D or 3D point in a coordinate system.

MDN

Properties #

#w: number
readonly

The DOMPointReadOnly interface's w property holds the point's perspective value, w, for a read-only point in space.

MDN Reference

#x: number
readonly

The DOMPointReadOnly interface's x property holds the horizontal coordinate, x, for a read-only point in space. This property cannot be changed by JavaScript code in this read-only version of the DOMPoint object.

MDN Reference

#y: number
readonly

The DOMPointReadOnl**y** interface's y property holds the vertical coordinate, y, for a read-only point in space.

MDN Reference

#z: number
readonly

The DOMPointReadOnly interface's z property holds the depth coordinate, z, for a read-only point in space.

MDN Reference

Methods #

The matrixTransform() method of the DOMPointReadOnly interface applies a matrix transform specified as an object to the DOMPointReadOnly object, creating and returning a new DOMPointReadOnly object. Neither the matrix nor the point are altered.

MDN Reference

#toJSON(): any

The DOMPointReadOnly method toJSON() returns an object giving the JSON form of the point object.

MDN Reference

variable DOMPointReadOnly

unstable

The DOMPointReadOnly interface specifies the coordinate and perspective fields used by DOMPoint to define a 2D or 3D point in a coordinate system.

MDN

Properties #

Methods #

The static DOMPointReadOnly method fromPoint() creates and returns a new DOMPointReadOnly object given a source point.

MDN Reference

Did you find what you needed?

Privacy policy