Package buildcraft.api.blueprints

Examples of buildcraft.api.blueprints.Translation


          / (float) blockScanner.totalBlocks();

      if (blockScanner.blocksLeft() == 0) {
        writingBlueprint.readEntitiesFromWorld(writingContext, architect);

        Translation transform = new Translation();

        transform.x = -writingContext.surroundingBox().pMin().x;
        transform.y = -writingContext.surroundingBox().pMin().y;
        transform.z = -writingContext.surroundingBox().pMin().z;
View Full Code Here


        rotateLeft(context);
        rotateLeft(context);
      }
    }

    Translation transform = new Translation();

    transform.x = x - anchorX;
    transform.y = y - anchorY;
    transform.z = z - anchorZ;
View Full Code Here

    }
  }

  @Override
  public void readEntitiesFromWorld(IBuilderContext context, TileEntity anchorTile) {
    Translation transform = new Translation();

    transform.x = -context.surroundingBox().pMin().x;
    transform.y = -context.surroundingBox().pMin().y;
    transform.z = -context.surroundingBox().pMin().z;
View Full Code Here

        bpt.rotateLeft(context);
        bpt.rotateLeft(context);
      }
    }

    Translation transform = new Translation();

    transform.x = x - bpt.anchorX;
    transform.y = y - bpt.anchorY;
    transform.z = z - bpt.anchorZ;
View Full Code Here

TOP

Related Classes of buildcraft.api.blueprints.Translation

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.