Exemplo n.º 1
0
        public kranSeitsicht(Seitenansicht seit, double x, double y, Kran arm)
        {
            this.seitSicht = seit;
            this.xKoordinate = x;
            this.yKoordiante = y;

            erstelleKran();

            this.kranarmKlasse = arm;
        }
Exemplo n.º 2
0
        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;
        }
Exemplo n.º 3
0
        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();
        }
Exemplo n.º 4
0
 public void setSideView(Seitenansicht view)
 {
     this.sideView = view;
 }