本文整理汇总了Java中appeng.api.util.WorldCoord类的典型用法代码示例。如果您正苦于以下问题:Java WorldCoord类的具体用法?Java WorldCoord怎么用?Java WorldCoord使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WorldCoord类属于appeng.api.util包,在下文中一共展示了WorldCoord类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getStoredSize
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* get the currently stored size.
*
* @param is spatial storage cell
* @return size of spatial
*/
WorldCoord getStoredSize(ItemStack is);
示例2: getMin
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* Minimum coordinates in its world for the storage cell.
*
* @param is spatial storage cell
* @return minimum coordinate of dimension
*/
WorldCoord getMin(ItemStack is);
示例3: getMax
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* Maximum coordinates in its world for the storage cell.
*
* @param is spatial storage cell
* @return maximum coordinate of dimension
*/
WorldCoord getMax(ItemStack is);
示例4: doSpatialTransition
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* Perform a spatial swap with the contents of the cell, and the world.
*
* @param is spatial storage cell
* @param w world of spatial
* @param min min coord
* @param max max coord
* @param doTransition transition
* @return result of transition
*/
TransitionResult doSpatialTransition(ItemStack is, World w, WorldCoord min, WorldCoord max, boolean doTransition);
示例5: getStoredSize
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* get the currently stored size.
*
* @param is
* @return
*/
WorldCoord getStoredSize(ItemStack is);
示例6: getMin
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* Minimum coordinates in its world for the storage cell.
*
* @param is
* @return
*/
WorldCoord getMin(ItemStack is);
示例7: getMax
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* Maximum coordinates in its world for the storage cell.
*
* @param is
* @return
*/
WorldCoord getMax(ItemStack is);
示例8: doSpatialTransition
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* Perform a spatial swap with the contents of the cell, and the world.
*
* @param is
* @param w
* @param min
* @param max
* @param doTransition
* @return
*/
TransitionResult doSpatialTransition(ItemStack is, World w, WorldCoord min, WorldCoord max, boolean doTransition);
示例9: getStoredSize
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* get the currently stored size.
*
* @param is spatial storage cell
*
* @return size of spatial
*/
WorldCoord getStoredSize( ItemStack is );
示例10: getMin
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* Minimum coordinates in its world for the storage cell.
*
* @param is spatial storage cell
*
* @return minimum coordinate of dimension
*/
WorldCoord getMin( ItemStack is );
示例11: getMax
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* Maximum coordinates in its world for the storage cell.
*
* @param is spatial storage cell
*
* @return maximum coordinate of dimension
*/
WorldCoord getMax( ItemStack is );
示例12: doSpatialTransition
import appeng.api.util.WorldCoord; //导入依赖的package包/类
/**
* Perform a spatial swap with the contents of the cell, and the world.
*
* @param is spatial storage cell
* @param w world of spatial
* @param min min coord
* @param max max coord
* @param doTransition transition
*
* @return result of transition
*/
TransitionResult doSpatialTransition( ItemStack is, World w, WorldCoord min, WorldCoord max, boolean doTransition );