private void DrawSquare(double x, double y, FoxDraw foxDraw)
 {
     foxDraw.DrawRectangle(x, y, 50, 50);
 }
예제 #2
0
        private void DrawSquare(double x, double y)
        {
            var foxDraw = new FoxDraw(canvas);

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

            foxDraw.DrawRectangle(startPosX, startPosY, 50, 50);
        }
 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);
        }