Package appeng.block.spatial

Examples of appeng.block.spatial.BlockMatrixFrame


  public void swapRegions(World src /** over world **/
  , World dst /** storage cell **/
  , int x, int y, int z, int i, int j, int k, int scaleX, int scaleY, int scaleZ)
  {
    BlockMatrixFrame blkMF = (BlockMatrixFrame) AEApi.instance().blocks().blockMatrixFrame.block();

    transverseEdges( i - 1, j - 1, k - 1, i + scaleX + 1, j + scaleY + 1, k + scaleZ + 1, new WrapInMatrixFrame( blkMF, 0, dst ) );

    AxisAlignedBB srcBox = AxisAlignedBB.getBoundingBox( x, y, z, x + scaleX + 1, y + scaleY + 1, z + scaleZ + 1 );

View Full Code Here

TOP

Related Classes of appeng.block.spatial.BlockMatrixFrame

Copyright © 2018 www.massapicom. 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.