Пример #1
0
 public static void Main()
 {
     Point[] points = DDA.rasteriza(new Point(-2, 3), new Point(10, 15));
     foreach (Point point in points)
     {
         Console.WriteLine("({0}, {1})", point.x, point.y);
     }
 }