Beispiel #1
0
 public Point2LR TransformTo2LR(Point3LR point)
 {
     return(new Point2LR(this.M00 * point.X + this.M01 * point.Y + this.M02 * point.Z, this.M10 * point.X + this.M11 * point.Y + this.M12 * point.Z));
 }
Beispiel #2
0
 public Vector3LR(Point3LR from)
 {
     this.X = from.X;
     this.Y = from.Y;
     this.Z = from.Z;
 }