public Segment3(Point3 a, Point3 b) { this.a = a; this.b = b; }
public static Segment3 Create(Point3 a, Point3 b) { return(new Segment3(a, b)); }