Package buildcraft.core

Examples of buildcraft.core.Box.initialize()


    this.y = y;
    this.z = z;
    done = false;

    Box box = new Box();
    box.initialize(this);

    context = bluePrint.getContext(world, box);
  }

  protected abstract void initialize ();
View Full Code Here


    int xMax = x + sizeX - anchorX - 1;
    int yMax = y + sizeY - anchorY - 1;
    int zMax = z + sizeZ - anchorZ - 1;

    Box res = new Box();
    res.initialize(xMin, yMin, zMin, xMax, yMax, zMax);
    res.reorder();

    return res;
  }
View Full Code Here

  public void areaSet (GuiUrbanist gui, int x1, int y1, int z1, int x2, int y2, int z2) {
    super.areaSet(gui, x1, y1, z1, x2, y2, z2);

    if (selection != -1) {
      Box box = new Box();
      box.initialize(x1, y1, z1, x2, y2, z2);

      gui.urbanist.rpcStartFiller(fillerSlots.get(selection).getPattern().getUniqueTag(), box);
    }

  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.