public static Point FromR3e(R3ePoint point, Size size)
        {
            double x = size.Width * (point.X + 1) / 2;
            double y = size.Height - size.Height * (point.Y + 1) / 2;

            return(new Point(x, y));
        }
Exemple #2
0
 public bool Equals(R3ePoint point)
 {
     return(point.X == X && point.Y == Y);
 }