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)); }
public Vector3BR(Point3BR from) { this.X = from.X; this.Y = from.Y; this.Z = from.Z; }