private void DrawSquare(double x, double y, FoxDraw foxDraw)
 {
     foxDraw.DrawRectangle(x, y, 50, 50);
 }
Ejemplo n.º 2
0
        private void DrawSquare(double x, double y)
        {
            var foxDraw = new FoxDraw(canvas);

            foxDraw.DrawRectangle(x, y, 50, 50);
        }
Ejemplo n.º 3
0
        private void DrawReactangle(int startPosX, int startPosY)
        {
            var foxDraw = new FoxDraw(canvas);

            foxDraw.DrawRectangle(startPosX, startPosY, 50, 50);
        }
Ejemplo n.º 4
0
 static void Squarez(FoxDraw foxDraw, int x, int y)
 {
     foxDraw.DrawRectangle(x, y, 50, 50);
 }
        private void Squarer(int x, int y)
        {
            var foxDraw = new FoxDraw(canvas);

            foxDraw.DrawRectangle(x, y, 50, 50);
        }