Firefox Tomorrow

web api constructor

DOMQuad: DOMQuad() constructor

View on MDN ↗

Available in workers

The DOMQuad() constructor creates and returns a new DOMQuad object, given the values for some or all of its properties.

You can also create a DOMQuad by calling the DOMQuad.fromRect() or DOMQuad.fromQuad() static function. These functions accept any object with the required parameters, including a DOMRect, DOMRectReadOnly, or another DOMQuad.

Syntax

new DOMQuad()
new DOMQuad(p1)
new DOMQuad(p1, p2)
new DOMQuad(p1, p2, p3)
new DOMQuad(p1, p2, p3, p4)

Parameters

  • p1 Optional, p2 Optional, p3 Optional, p4 Optional
    • : Each a DOMPoint or an object with the same properties representing one corner of the quad.

Examples

This example creates a DOMQuad using a DOMPoint and three additional points defined as objects.

const point = new DOMPoint(2, 0);
const quad = new DOMQuad(
  point,
  { x: 12, y: 0 },
  { x: 12, y: 10 },
  { x: 2, y: 10 },
);

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also