PIbd-11 Valiulov I.A. LabWork01 Hard #1

Closed
Ilyas wants to merge 2 commits from LabWork01 into master
2 changed files with 5 additions and 5 deletions
Showing only changes of commit bf991f6eed - Show all commits

View File

@ -86,7 +86,7 @@ public class DrawingWarmlyShip extends JPanel {
public void DrawTransport(Graphics2D g) {
if (EntityWarmlyShip == null || _StartPosX == null || _StartPosY == null) return;
int y = _StartPosY;
if (EntityWarmlyShip.getSheepPipes()) {
if (EntityWarmlyShip.getShipPipes()) {
//трубы
g.setColor(EntityWarmlyShip.getAdditionalColor());
g.fillRect(_StartPosX + 70, _StartPosY, 12, 30);

View File

@ -6,18 +6,18 @@ public class EntityWarmlyShip {
public Color getBodyColor() {return BodyColor;}
private Color AdditionalColor;
public Color getAdditionalColor() {return AdditionalColor;}
private boolean SheepPipes;
public boolean getSheepPipes() {return SheepPipes;}
private boolean ShipPipes;
public boolean getShipPipes() {return ShipPipes;}
private boolean FuelTank;
public boolean getFuelTank() {return FuelTank;}
public double Step;
public void Init(int speed, double weight, Color bodycolor, Color additionalcolor, boolean sheeppipes, boolean fueltank)
public void Init(int speed, double weight, Color bodycolor, Color additionalcolor, boolean shippipes, boolean fueltank)
{
Speed = speed;
Weight = weight;
BodyColor = bodycolor;
AdditionalColor = additionalcolor;
SheepPipes = sheeppipes;
ShipPipes = shippipes;
FuelTank = fueltank;
Step = Speed * 100 / Weight;
}