DOMPoint.idl 292 B

123456789101112
  1. #import <Geometry/DOMPointReadOnly.idl>
  2. interface DOMPoint : DOMPointReadOnly {
  3. constructor(optional double x = 0, optional double y = 0, optional double z = 0, optional double w = 0);
  4. attribute double x;
  5. attribute double y;
  6. attribute double z;
  7. attribute double w;
  8. };