Ejemplo n.º 1
0
 public Line(Vec start, Vec end)
 {
     Vec.EnsureDimensionMatch(start, end);
     _startPt = start;
     _endPt   = end;
 }