Ejemplo n.º 1
0
 private LineSegment(Point basePoint, Point endPoint, FreeVector vector)
     : this(basePoint, endPoint, vector.Direction, vector.GetMagnitude())
 {
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Creates the corresponding bound vector using the origin as the base point.
 /// </summary>
 public Vector(FreeVector vector) : this(Point.Origin, vector.Direction, vector.GetMagnitude())
 {
 }