Interface ExpressionEnvironment

All Superinterfaces:
Cloneable
All Known Implementing Classes:
WorldEditExpressionEnvironment

public interface ExpressionEnvironment extends Cloneable
Represents a way to access blocks in a world. Has to accept non-rounded coordinates.
  • Method Details

    • getBlockType

      int getBlockType(double x, double y, double z)
    • getBlockData

      int getBlockData(double x, double y, double z)
    • getBlockTypeAbs

      int getBlockTypeAbs(double x, double y, double z)
    • getBlockDataAbs

      int getBlockDataAbs(double x, double y, double z)
    • getBlockTypeRel

      int getBlockTypeRel(double x, double y, double z)
    • getBlockDataRel

      int getBlockDataRel(double x, double y, double z)
    • clone