Searched defs:heightStickWidth (Results 1 - 3 of 3) sorted by relevance

/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_HeightfieldCollisionShape.cpp50 (JNIEnv * env, jobject object, jint heightStickWidth, jint heightStickLength, jobject heightfieldData, jfloat heightScale, jfloat minHeight, jfloat maxHeight, jint upAxis, jboolean flipQuadEdges) {
53 btHeightfieldTerrainShape* shape=new btHeightfieldTerrainShape(heightStickWidth, heightStickLength, data, heightScale, minHeight, maxHeight, upAxis, PHY_FLOAT, flipQuadEdges);
49 Java_com_jme3_bullet_collision_shapes_HeightfieldCollisionShape_createShape(JNIEnv * env, jobject object, jint heightStickWidth, jint heightStickLength, jobject heightfieldData, jfloat heightScale, jfloat minHeight, jfloat maxHeight, jint upAxis, jboolean flipQuadEdges) argument
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DHeightfieldCollisionShape.java33 protected int heightStickWidth; field in class:HeightfieldCollisionShape
89 heightStickWidth = (int) FastMath.sqrt(heightfieldData.length);
90 heightStickLength = heightStickWidth;
106 objectId = createShape(heightStickWidth, heightStickLength, bbuf, heightScale, minHeight, maxHeight, upAxis, flipQuadEdges);
112 private native long createShape(int heightStickWidth, int heightStickLength, ByteBuffer heightfieldData, float heightScale, float minHeight, float maxHeight, int upAxis, boolean flipQuadEdges); argument
122 capsule.write(heightStickWidth, "heightStickWidth", 0);
135 heightStickWidth = capsule.readInt("heightStickWidth", 0);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DHeightfieldCollisionShape.java33 protected int heightStickWidth; field in class:HeightfieldCollisionShape
85 heightStickWidth = (int) FastMath.sqrt(heightfieldData.length);
86 heightStickLength = heightStickWidth;
94 HeightfieldTerrainShape shape = new HeightfieldTerrainShape(heightStickWidth, heightStickLength, heightfieldData, heightScale, minHeight, maxHeight, upAxis, flipQuadEdges);
109 capsule.write(heightStickWidth, "heightStickWidth", 0);
122 heightStickWidth = capsule.readInt("heightStickWidth", 0);

Completed in 40 milliseconds