48 lines
1.2 KiB
Java
48 lines
1.2 KiB
Java
package DifferenceOfWheels;
|
|
|
|
import java.awt.*;
|
|
|
|
public class DrawningOrnamentRectangle implements IOrnaments{
|
|
int CountWeel;
|
|
|
|
@Override
|
|
public void SetCount(int n) {
|
|
CountWeel = n;
|
|
}
|
|
|
|
@Override
|
|
public int get_count_weels() {
|
|
return CountWeel;
|
|
}
|
|
|
|
@Override
|
|
public void DrawOrnament(Graphics2D g, int x, int y) {
|
|
g.setColor(Color.BLACK);
|
|
g.fillOval(x, y, 25, 25);
|
|
|
|
g.setColor(Color.PINK);
|
|
g.fillRect(x + 5, y + 5, 15, 15);
|
|
}
|
|
|
|
@Override
|
|
public void DrawWeels(Graphics2D g, int x, int y) {
|
|
switch (CountWeel){
|
|
case 2:
|
|
DrawOrnament(g, x + 10, y + 67);
|
|
DrawOrnament(g, x + 85, y + 67);
|
|
break;
|
|
case 3:
|
|
DrawOrnament(g, x + 10, y + 67);
|
|
DrawOrnament(g, x + 38, y + 67);
|
|
DrawOrnament(g, x + 85, y + 67);
|
|
break;
|
|
case 4:
|
|
DrawOrnament(g, x + 5, y + 67);
|
|
DrawOrnament(g, x + 32, y + 67);
|
|
DrawOrnament(g, x + 61, y + 67);
|
|
DrawOrnament(g, x + 88, y + 67);
|
|
break;
|
|
}
|
|
}
|
|
}
|