public kranDraufsicht(KranDarstellung drauf, double x, double y) { this.draufSicht = drauf; this.xKoordinate = x; this.yKoordiante = y; erstelleStreben(); erstelleKran(); }
public Kran(KranDarstellung drauf, Seitenansicht seit, double x, double y, double z, Laufband band) { this.draufsicht = drauf; this.seitsicht = seit; this.xKoordinate = x; this.yKoordinate = y; this.zKoordinate = z; this.band = band; this.kranDrauf = new kranDraufsicht(this.draufsicht, x, y); this.kranSeite = new kranSeitsicht(this.seitsicht, x, z, this); this.kisteKran = null; }
public Kisten(KranDarstellung drauf, Seitenansicht seit, double x, double y, double z, int kisteID, Laufband band) { this.seitSicht = seit; this.draufSicht = drauf; this.kisteID = kisteID; this.band = band; this.xKoordinate = x; this.yKoordinate = y; this.zKoordinate = z; erstelleKisten(); }