HomeSort by relevance Sort by last modified time
    Searched refs:bHeight (Results 1 - 4 of 4) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
UploadedTexture.java 223 int bHeight = bitmap.getHeight();
225 int height = bHeight + mBorder * 2;
229 Utils.assertTrue(bWidth <= texWidth && bHeight <= texHeight);
236 sCropRect[1] = mBorder + bHeight;
238 sCropRect[3] = -bHeight;
254 if (bWidth == texWidth && bHeight == texHeight) {
286 if (mBorder + bHeight < texHeight) {
289 0, mBorder + bHeight, line, format, type);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestBrickWall.java 67 static float bHeight = 0.12f;
93 brick = new Box(Vector3f.ZERO, bLength, bHeight, bWidth);
145 Vector3f vt = new Vector3f(i * bLength * 2 + startpt, bHeight + height, 0);
149 height += 2 * bHeight;
TestRagdollCharacter.java 141 public void initWall(float bLength, float bWidth, float bHeight) {
142 Box brick = new Box(Vector3f.ZERO, bLength, bHeight, bWidth);
154 Vector3f ori = new Vector3f(i * bLength * 2 + startpt, bHeight + height, -10);
166 height += 2 * bHeight;
TestWalkingChar.java 115 float bHeight = 0.4f;
174 brick = new Box(Vector3f.ZERO, bLength, bHeight, bWidth);
178 Vector3f vt = new Vector3f(i * bLength * 2 + startpt, bHeight + height, zOff);
182 height += 1.01f * bHeight;

Completed in 121 milliseconds