예제 #1
0
 /// <summary> Map point *from* local frame coordinates into "world" coordinates </summary>
 public Vector3d FromFrameP(Vector2d v)
 {
     return(this.rotation * v.ToVector3d() + this.origin);
 }