DOM.DOMMatrix (dom v0.1.0)

Implements DOMMatrix interface https://www.w3.org/TR/geometry-1/#DOMMatrix

Link to this section Summary

Link to this section Types

@type t() :: %DOM.DOMMatrix{
  a: float(),
  b: float(),
  c: float(),
  d: float(),
  e: float(),
  f: float(),
  is2D: boolean(),
  isIdentity: boolean(),
  m11: float(),
  m12: float(),
  m13: float(),
  m14: float(),
  m21: float(),
  m22: float(),
  m23: float(),
  m24: float(),
  m31: float(),
  m32: float(),
  m33: float(),
  m34: float(),
  m41: float(),
  m42: float(),
  m43: float(),
  m44: float()
}