Exemple #1
0
 public Point2BR TransformTo2BR(Point3BR point)
 {
     return(new Point2BR(this.M00 * point.X + this.M01 * point.Y + this.M02 * point.Z, this.M10 * point.X + this.M11 * point.Y + this.M12 * point.Z));
 }
Exemple #2
0
 public Vector3BR(Point3BR from)
 {
     this.X = from.X;
     this.Y = from.Y;
     this.Z = from.Z;
 }