本文整理匯總了Java中org.cubeengine.libcube.util.math.MathHelper類的典型用法代碼示例。如果您正苦於以下問題:Java MathHelper類的具體用法?Java MathHelper怎麽用?Java MathHelper使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
MathHelper類屬於org.cubeengine.libcube.util.math包,在下文中一共展示了MathHelper類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getPortalPos
import org.cubeengine.libcube.util.math.MathHelper; //導入依賴的package包/類
public Location<World> getPortalPos()
{
if (this.config.location.destination == null)
{
Vector3i midpoint = MathHelper.midpoint(this.config.location.to, this.config.location.from);
return new Location<World>(this.config.world.getWorld(), midpoint.getX() + 0.5, midpoint.getY(), midpoint.getZ() + 0.5);
}
return this.config.location.destination.getLocationIn(this.config.world.getWorld()); // TODO rotation
}