DOMPoint

DOMPoint 对象表示坐标系中的 2D 或 3D 点;它包括三维度的坐标值以及可选的透视值。DOMPoint 基于 DOMPointReadOnly,但允许更改其属性值。

通常,正 x 分量表示原点右侧的位置,正 y 分量从原点向下,正 z 分量从屏幕向外延伸 (换言之,朝向用户)。

Constructor

DOMPoint()

Creates and returns a new DOMPoint object given the values of zero or more of its coordinate components and optionally the w perspective value. You can also use an existing DOMPoint or DOMPointReadOnly or a DOMPointInit (en-US) dictionary to create a new point by calling the DOMPoint.fromPoint() (en-US) static method.

Methods

DOMPoint inherits methods from its parent, DOMPointReadOnly (en-US).

fromPoint() (en-US)

Creates a new mutable DOMPoint object given an existing point or a DOMPointInit (en-US) dictionary which provides the values for its properties.

Properties

DOMPoint inherits properties from its parent, DOMPointReadOnly (en-US).

DOMPoint.x (en-US)

The x coordinate of the DOMPoint.

DOMPoint.y (en-US)

The y coordinate of the DOMPoint.

DOMPoint.z (en-US)

The z coordinate of the DOMPoint.

DOMPoint.w (en-US)

The perspective value of the DOMPoint.

Examples

In the WebVR API, DOMPoint values are used to represent points in the coordinate space that the user's head mounted display exists in. In the following snippet, the position of the VR HMD can be retrieved by first grabbing a reference to the position sensor's current state using PositionSensorVRDevice.getState() (en-US), then accessing the resulting VRPositionState (en-US)'s position (en-US) property, which returns a DOMPoint. Note below the usage of position.x, position.y, and position.z.

js
function setView() {
  var posState = gPositionSensor.getState();

  if (posState.hasPosition) {
    posPara.textContent =
      "Position: x" +
      roundToTwo(posState.position.x) +
      " y" +
      roundToTwo(posState.position.y) +
      " z" +
      roundToTwo(posState.position.z);
    xPos = -posState.position.x * WIDTH * 2;
    yPos = posState.position.y * HEIGHT * 2;

    if (-posState.position.z > 0.01) {
      zPos = -posState.position.z;
    } else {
      zPos = 0.01;
    }
  }

  /* ... */
}

备注: See our positionsensorvrdevice demo for the full code.

Specifications

Specification
Geometry Interfaces Module Level 1
# DOMPoint

Browser compatibility

BCD tables only load in the browser

See also