Esempio n. 1
0
 public InterpolationPoint(PathPoint point1, PathPoint point2, InterpolationPoint other)
     : this(point1, point2)
 {
     Direction = CalculateDirection(other);
 }
Esempio n. 2
0
 public InterpolationPoint(PathPoint point1, PathPoint point2)
 {
     X = (point1.X + point2.X) / 2.0;
     Y = (point1.Y + point2.Y) / 2.0;
 }