作者热门文章
- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.jme3.scene.debug.WireBox.updatePositions()
方法的一些代码示例,展示了WireBox.updatePositions()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WireBox.updatePositions()
方法的具体详情如下:
包路径:com.jme3.scene.debug.WireBox
类名称:WireBox
方法名:updatePositions
暂无
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
public WireBox(float xExt, float yExt, float zExt){
updatePositions(xExt,yExt,zExt);
setBuffer(Type.Index, 2,
new short[]{
0, 1,
1, 2,
2, 3,
3, 0,
4, 5,
5, 6,
6, 7,
7, 4,
0, 4,
1, 5,
2, 6,
3, 7,
}
);
setMode(Mode.Lines);
updateCounts();
}
代码示例来源:origin: info.projectkyoto/mms-engine
public void fromBoundingBox(BoundingBox bbox){
updatePositions(bbox.getXExtent(), bbox.getYExtent(), bbox.getZExtent());
}
代码示例来源:origin: org.jmonkeyengine/jme3-core
public WireBox(float xExt, float yExt, float zExt){
updatePositions(xExt,yExt,zExt);
setBuffer(Type.Index, 2,
new short[]{
0, 1,
1, 2,
2, 3,
3, 0,
4, 5,
5, 6,
6, 7,
7, 4,
0, 4,
1, 5,
2, 6,
3, 7,
}
);
setMode(Mode.Lines);
updateCounts();
}
代码示例来源:origin: info.projectkyoto/mms-engine
public WireBox(float xExt, float yExt, float zExt){
updatePositions(xExt,yExt,zExt);
setBuffer(Type.Index, 2,
new short[]{
0, 1,
1, 2,
2, 3,
3, 0,
4, 5,
5, 6,
6, 7,
7, 4,
0, 4,
1, 5,
2, 6,
3, 7,
}
);
setMode(Mode.Lines);
updateCounts();
}
代码示例来源:origin: tonihele/OpenKeeper
public void updateSelectionBox() {
if (isVisible()) {
float dx = selectionArea.getDeltaX();
float dy = selectionArea.getDeltaY();
float delta = 0.01f;
Vector2f position = selectionArea.getCenter();
wireBoxGeo.setLocalTranslation(position.x, MapLoader.FLOOR_HEIGHT, position.y);
wireBox.updatePositions(MapLoader.TILE_WIDTH / 2 * dx + delta,
MapLoader.FLOOR_HEIGHT + delta,
MapLoader.TILE_WIDTH / 2 * dy + delta);
// Selection color indicator
ColorIndicator newSelectionColor = getColorIndicator();
if (!newSelectionColor.equals(selectionColor)) {
selectionColor = newSelectionColor;
matWireBox.setColor("Color", selectionColor.getColor());
}
this.wireBoxGeo.setCullHint(CullHint.Never);
} else {
this.wireBoxGeo.setCullHint(CullHint.Always);
}
}
你好,我是第一次使用 lodash。我的 jquery 代码不断跳转,我试图将它迁移到 lodash 函数中,但我真的不明白该怎么做。 IDK 如果这很重要,但代码背后的主要思想是让 div 向下滚动
本文整理了Java中com.jme3.scene.debug.WireBox.updatePositions()方法的一些代码示例,展示了WireBox.updatePositions()的具体用法。
我是一名优秀的程序员,十分优秀!