예제 #1
0
 /// <summary>
 /// Transforms the vector by a coordinate system and returns the transformed.
 /// </summary>
 /// <param name="coordinateSystem"></param>
 /// <returns></returns>
 public Vector3D TransformBy(CoordinateSystem coordinateSystem)
 {
     return coordinateSystem.Transform(this);
 }
예제 #2
0
 public Point3D TransformBy(CoordinateSystem cs)
 {
     return(cs.Transform(this));
 }
예제 #3
0
 public Vector3D TransformBy(CoordinateSystem coordinateSystem)
 {
     return(coordinateSystem.Transform(this.ToVector3D()));
 }