public static Triangle4 Create(Point4 a, Point4 b, Point4 c) { return(new Triangle4(a, b, c)); }
public bool Equals(Point4 other) { return(this == other); }
public static Segment4 Create(Point4 a, Point4 b) { return(new Segment4(a, b)); }
public Segment4(Point4 a, Point4 b) { this.a = a; this.b = b; }
public Triangle4(Point4 a, Point4 b, Point4 c) { this.a = a; this.b = b; this.c = c; }