Beispiel #1
0
 public DOMQuad(DOMPointReadOnly p1, DOMPointReadOnly p2, DOMPointReadOnly p3, DOMPointReadOnly p4)
 {
     this.p1 = new DOMPoint(p1);
     this.p2 = new DOMPoint(p2);
     this.p3 = new DOMPoint(p3);
     this.p4 = new DOMPoint(p4);
 }
Beispiel #2
0
 public DOMPointReadOnly(DOMPointReadOnly p)
 {
     this.x = p.x;
     this.y = p.y;
     this.z = p.z;
     this.w = p.w;
 }