Exemplo n.º 1
0
        public void LineTo(int x, int y)
        {
            var newPoint = new Point(x, y);

            Renderer.DrawLine(_startPoint, newPoint, _color);
            _startPoint = newPoint;
        }
Exemplo n.º 2
0
 public void MoveTo(int x, int y)
 {
     _startPoint = new Point(x, y);
 }