Beispiel #1
0
 public static Point2d DoTransform(this ITransform2 transform, Point2d p)
 {
     return(transform.Transform(p).ToPoint2d());
 }
Beispiel #2
0
 public static Vector2d DoTransform(this ITransform2 transform, Vector2d v)
 {
     return(transform.Transform(v).ToVector2d());
 }