Skip to main content

interface DOMPoint

unstable

A DOMPoint object 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. DOMPoint is based on DOMPointReadOnly but allows its properties' values to be changed.

MDN

Properties #

#w: number

The DOMPoint interface's w property holds the point's perspective value, w, for a point in space.

MDN Reference

#x: number

The DOMPoint interface's x property holds the horizontal coordinate, x, for a point in space.

MDN Reference

#y: number

The DOMPoint interface's y property holds the vertical coordinate, y, for a point in space.

MDN Reference

#z: number

The DOMPoint interface's z property specifies the depth coordinate of a point in space.

MDN Reference

variable DOMPoint

unstable

A DOMPoint object 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. DOMPoint is based on DOMPointReadOnly but allows its properties' values to be changed.

MDN

Properties #

Methods #

The fromPoint() static method of the DOMPoint interface creates and returns a new mutable DOMPoint object given a source point.

MDN Reference

Did you find what you needed?

Privacy policy