当前位置: 首页>>代码示例>>Java>>正文


Java IBox类代码示例

本文整理汇总了Java中buildcraft.api.core.IBox的典型用法代码示例。如果您正苦于以下问题:Java IBox类的具体用法?Java IBox怎么用?Java IBox使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


IBox类属于buildcraft.api.core包,在下文中一共展示了IBox类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getBox

import buildcraft.api.core.IBox; //导入依赖的package包/类
/** This function can be used for SPOT and AREA types.
 * 
 * @param stack
 * @return The box representing the map location. */
IBox getBox(ItemStack stack);
 
开发者ID:Herobone,项目名称:HeroUtils,代码行数:6,代码来源:IMapLocation.java

示例2: createPatternIterator

import buildcraft.api.core.IBox; //导入依赖的package包/类
/**
 * Creates the object that does the pattern iteration. This object may be
 * state-full and will be used until the pattern is done or changes.
 *
 * @param tile the Filler
 * @param box the area to fill
 * @param orientation not currently used, but may be in the future (the filler needs some orientation code)
 * @return
 */
public IPatternIterator createPatternIterator(TileEntity tile, IBox box, ForgeDirection orientation);
 
开发者ID:piotrb,项目名称:hamcraft,代码行数:11,代码来源:IFillerPattern.java

示例3: surroundingBox

import buildcraft.api.core.IBox; //导入依赖的package包/类
IBox surroundingBox(); 
开发者ID:4Space,项目名称:4Space-5,代码行数:2,代码来源:IBuilderContext.java

示例4: iteratePattern

import buildcraft.api.core.IBox; //导入依赖的package包/类
public boolean iteratePattern(TileEntity tile, IBox box, ItemStack stackToPlace); 
开发者ID:austinv11,项目名称:PeripheralsPlusPlus,代码行数:2,代码来源:IFillerPattern.java

示例5: surroundingBox

import buildcraft.api.core.IBox; //导入依赖的package包/类
public IBox surroundingBox(); 
开发者ID:austinv11,项目名称:PeripheralsPlusPlus,代码行数:2,代码来源:IBptContext.java


注:本文中的buildcraft.api.core.IBox类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。