PIbd-21 Belianin N.N. LabWork05 Hard #6

Closed
Belnik wants to merge 12 commits from LabWork05 into LabWork04
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 397c4068b8 - Show all commits

View File

@ -42,7 +42,7 @@ public class DrawingWheelsCombination implements IOrnamentForm {
g.fillRect(_startPosX + 27, _startPosY + 50, 10, 3);
}
public void DrawWheels(Graphics g, int _startPosX, int _startPosY) {
public void DrawWheels(Graphics g, int _startPosX, int _startPosY){
g.setColor(Color.BLACK);
g.fillOval(10 + _startPosX, 42 + _startPosY, 20, 20);
}

View File

@ -82,7 +82,7 @@ public class FormTankConfig {
}
// Для передвижения wheels по формочке
private class WheelTransferable implements Transferable {
private class WheelTransferable implements Transferable {
private IOrnamentForm wheelDrawing;
private static final DataFlavor wheelDrawingDataFlavor = new DataFlavor(IOrnamentForm.class, "Wheel Drawing");
public WheelTransferable(IOrnamentForm wheelDrawing) { this.wheelDrawing = wheelDrawing; }