Exemple #1
0
 public static Triangle4 Create(Point4 a, Point4 b, Point4 c)
 {
     return(new Triangle4(a, b, c));
 }
Exemple #2
0
 public bool Equals(Point4 other)
 {
     return(this == other);
 }
Exemple #3
0
 public static Segment4 Create(Point4 a, Point4 b)
 {
     return(new Segment4(a, b));
 }
Exemple #4
0
 public Segment4(Point4 a, Point4 b)
 {
     this.a = a;
     this.b = b;
 }
Exemple #5
0
 public Triangle4(Point4 a, Point4 b, Point4 c)
 {
     this.a = a;
     this.b = b;
     this.c = c;
 }