OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:heightStickWidth
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_collision_shapes_HeightfieldCollisionShape.cpp
50
(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);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
HeightfieldCollisionShape.java
33
protected int
heightStickWidth
;
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);
122
capsule.write(
heightStickWidth
, "
heightStickWidth
", 0);
135
heightStickWidth
= capsule.readInt("
heightStickWidth
", 0);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
HeightfieldCollisionShape.java
33
protected int
heightStickWidth
;
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 90 milliseconds