- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.jme3.scene.debug.WireBox
类的一些代码示例,展示了WireBox
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WireBox
类的具体详情如下:
包路径:com.jme3.scene.debug.WireBox
类名称:WireBox
暂无
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
public void putBox(Vector3f pos, float size, ColorRGBA color){
putShape(new WireBox(size, size, size), color, 1).setLocalTranslation(pos);
}
代码示例来源: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: jMonkeyEngine/jmonkeyengine
public void updatePositions(float xExt, float yExt, float zExt){
VertexBuffer pvb = getBuffer(Type.Position);
FloatBuffer pb;
if (pvb == null){
pvb = new VertexBuffer(Type.Position);
pb = BufferUtils.createVector3Buffer(8);
pvb.setupData(Usage.Dynamic, 3, Format.Float, pb);
setBuffer(pvb);
}else{
pb = (FloatBuffer) pvb.getData();
pvb.updateData(pb);
}
pb.rewind();
pb.put(
new float[]{
-xExt, -yExt, zExt,
xExt, -yExt, zExt,
xExt, yExt, zExt,
-xExt, yExt, zExt,
-xExt, -yExt, -zExt,
xExt, -yExt, -zExt,
xExt, yExt, -zExt,
-xExt, yExt, -zExt,
}
);
updateBound();
}
代码示例来源:origin: tonihele/OpenKeeper
private void setupVisualsForSelection() {
matWireBox = new Material(this.app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
matWireBox.getAdditionalRenderState().setFaceCullMode(FaceCullMode.Off);
matWireBox.setColor("Color", selectionColor.getColor());
matWireBox.getAdditionalRenderState().setLineWidth(6);
this.wireBox = new WireBox(MapLoader.TILE_WIDTH, MapLoader.TILE_WIDTH, MapLoader.TILE_WIDTH);
this.wireBox.setDynamic();
this.wireBoxGeo = new Geometry("wireBox", wireBox);
this.wireBoxGeo.setMaterial(matWireBox);
this.wireBoxGeo.setCullHint(CullHint.Never);
this.wireBoxGeo.setShadowMode(RenderQueue.ShadowMode.Off);
this.app.getRootNode().attachChild(this.wireBoxGeo);
}
代码示例来源:origin: info.projectkyoto/mms-engine
public void fromBoundingBox(BoundingBox bbox){
updatePositions(bbox.getXExtent(), bbox.getYExtent(), bbox.getZExtent());
}
代码示例来源: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);
}
}
代码示例来源: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 void updatePositions(float xExt, float yExt, float zExt){
VertexBuffer pvb = getBuffer(Type.Position);
FloatBuffer pb;
if (pvb == null){
pvb = new VertexBuffer(Type.Position);
pb = BufferUtils.createVector3Buffer(8);
pvb.setupData(Usage.Dynamic, 3, Format.Float, pb);
setBuffer(pvb);
}else{
pb = (FloatBuffer) pvb.getData();
pvb.updateData(pb);
}
pb.rewind();
pb.put(
new float[]{
-xExt, -yExt, zExt,
xExt, -yExt, zExt,
xExt, yExt, zExt,
-xExt, yExt, zExt,
-xExt, -yExt, -zExt,
xExt, -yExt, -zExt,
xExt, yExt, -zExt,
-xExt, yExt, -zExt,
}
);
updateBound();
}
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
/**
* Create a geometry suitable for visualizing the specified bounding box.
*
* @param bbox the bounding box (not null)
* @return a new Geometry instance in world space
*/
public static Geometry makeGeometry(BoundingBox bbox) {
float xExtent = bbox.getXExtent();
float yExtent = bbox.getYExtent();
float zExtent = bbox.getZExtent();
WireBox mesh = new WireBox(xExtent, yExtent, zExtent);
Geometry result = new Geometry("bounding box", mesh);
Vector3f center = bbox.getCenter();
result.setLocalTranslation(center);
return result;
}
}
代码示例来源: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: org.jmonkeyengine/jme3-core
public void updatePositions(float xExt, float yExt, float zExt){
VertexBuffer pvb = getBuffer(Type.Position);
FloatBuffer pb;
if (pvb == null){
pvb = new VertexBuffer(Type.Position);
pb = BufferUtils.createVector3Buffer(8);
pvb.setupData(Usage.Dynamic, 3, Format.Float, pb);
setBuffer(pvb);
}else{
pb = (FloatBuffer) pvb.getData();
pvb.updateData(pb);
}
pb.rewind();
pb.put(
new float[]{
-xExt, -yExt, zExt,
xExt, -yExt, zExt,
xExt, yExt, zExt,
-xExt, yExt, zExt,
-xExt, -yExt, -zExt,
xExt, -yExt, -zExt,
xExt, yExt, -zExt,
-xExt, yExt, -zExt,
}
);
updateBound();
}
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
/**
* used by attachBoundChildren()
*/
private void attachBoundingBox(BoundingBox bb, Node parent) {
WireBox wb = new WireBox(bb.getXExtent(), bb.getYExtent(), bb.getZExtent());
Geometry g = new Geometry();
g.setMesh(wb);
g.setLocalTranslation(bb.getCenter());
parent.attachChild(g);
}
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
WireBox box = new WireBox(bb.getXExtent(), bb.getYExtent(), bb.getZExtent());
Geometry geom = new Geometry(test.name + " bounds", box);
geom.setMaterial(new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md"));
box = new WireBox(size, size, 0);
geom = new Geometry(test.name + " metric", box);
geom.setMaterial(new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md"));
代码示例来源:origin: org.jmonkeyengine/jme3-core
/**
* Create a geometry suitable for visualizing the specified bounding box.
*
* @param bbox the bounding box (not null)
* @return a new Geometry instance in world space
*/
public static Geometry makeGeometry(BoundingBox bbox) {
float xExtent = bbox.getXExtent();
float yExtent = bbox.getYExtent();
float zExtent = bbox.getZExtent();
WireBox mesh = new WireBox(xExtent, yExtent, zExtent);
Geometry result = new Geometry("bounding box", mesh);
Vector3f center = bbox.getCenter();
result.setLocalTranslation(center);
return result;
}
}
代码示例来源:origin: us.ihmc.thirdparty.jme/jme3-terrain
/**
* used by attachBoundChildren()
*/
private void attachBoundingBox(BoundingBox bb, Node parent) {
WireBox wb = new WireBox(bb.getXExtent(), bb.getYExtent(), bb.getZExtent());
Geometry g = new Geometry();
g.setMesh(wb);
g.setLocalTranslation(bb.getCenter());
parent.attachChild(g);
}
Debug.Assert/Debug.Fail 是否自动条件编译#if "DEBUG"?或者它是否更像是没有附加调试器(即使在发行版中)它什么也做不了?如果是这样,将它们留在您的代码中是否会对性能产生
我有一个应用程序,我配置了多个路由,一切正常,直到我配置的最新路由不起作用(显示错误的屏幕)。 我的问题是如何进行调试?没有打印错误日志,我无法找到如何获取有关正在发生的事情的更多日志。我也不知道从哪
我正在 Intellij 中调试代码。我使用 maven 来构建项目,并且在本地 .m2 存储库中有该项目的各种版本。当我开始调试时,Intellij 继续从项目的前一个快照中选择旧版本的代码。如何让
我喜欢在业余时间进行一些 TiVo 黑客事件 - TiVo 使用 Linux 变体和 TCL 。我想在我的 Windows 笔记本电脑上编写 TCL 脚本,测试它们,然后将它们通过 FTP 传输到我的
我有 ASM 代码,它使用循环语法打印 abc 。这是我的代码 ;abc.com .model small .code org 100h start: mov ah, 02h mov
我在 Debugging .net 2.0 Applications 中看到了以下代码 [Conditional("DEBUG")] void AssertTableExists() { #i
在大型项目中哪个更好用,为什么: #if DEBUG public void SetPrivateValue(int value) { ... } #endif 或 [System.D
我似乎无法让调试器运行。调试运行图标变灰,菜单选项丢失。 这只是main的情况,我可以很好地调试单元测试。 类似的问题提到了项目结构,但我看不出有什么不对: $GOPATH/src/foo.bar.c
只是想知道我的浏览器一直询问我是否想在每次点击浏览器链接刷新时停止调试非常烦人,因为这会减慢开发时间。 有没有其他人遇到过这个? 干杯 最佳答案 更新的答案,现在找到根本原因 经过两年看到这个错误时断
我正在尝试包含调试/发布相关编译器标志,例如: set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++0x -Wall -DUSE_BOOST") set
当我尝试使用 debug.phonegap.com 调试我的phonegap 应用程序时遇到问题。 我把这个视频放在 HTML 文档的头部 在启动应用程序之前,我从 build.phonegap.
GDB 7.0以后,支持反向调试。 生成核心转储时,我可以使用反向调试命令吗? 我怎样才能做到这一点? 最佳答案 你不能。核心文件是某个时间点程序状态的快照。要在该状态下向后移动,您需要程序状态的较早
首先:如果之前有人问过这个问题,我很抱歉。我是一个熟练的谷歌用户,但这确实让我难住了,我找不到任何东西。 我目前正在编写一个小型库,我想对其进行调试。我还希望能够完全关闭调试,并且编译后的代码不应包含
我想在 tomcat 中将级别日志记录设置为 DEBUG,但在控制台中仍然只有 INFO 和 WARN 输出。谁能告诉我哪里出了问题? 我的 C:\tomcat\logging.properties:
我已经开始像这样使用定义类了: internal sealed class Defines { /// /// This constant is set to true iff th
在使用编译器指令时,我不清楚以下两个代码片段中哪一个是正确/首选的,以及为什么。似乎我见过的大多数开发人员和开源项目都使用第一种,但我也看到第二种也经常使用。 #ifdef DEBUG [self d
我遇到错误,无法完成构建。我搜索了 Stackoverflow 和 Github。我已经尝试了很多方法,但我无法修复。请帮忙。 (1) 在 [src/nullnull/debug, src/debug
我刚刚意识到,使用 TFS 部署时,DEBUG 处理器指令仍然有效,有没有办法更改 TFS/Azure 网站或构建定义中的设置,而不是在本地解决方案配置? 我仍然希望本地解决方案保持调试状态,只有部署
我有一段代码在 VS2008,C++ 中以 Debug模式运行。 问题是,当我逐行调试代码时,在代码的一个非常奇怪的地方,它崩溃并说: debug assertion faild. Expressio
我有一个简单的 Xamarin.Forms 项目,我在 Visual Studio 中运行,使用 iphone 模拟器。我在 App.cs 中有以下代码: protected override voi
我是一名优秀的程序员,十分优秀!