Beispiel #1
0
 public static Point3d DoTransform(this ITransform3 transform, Point3d p)
 {
     return(transform.Transform(p).ToPoint3d());
 }
Beispiel #2
0
 public static Vector3d DoTransform(this ITransform3 transform, Vector3d v)
 {
     return(transform.Transform(v).ToVector3d());
 }