Home | History | Annotate | Download | only in texture

Lines Matching defs:bb

43         BoundingBox bb = (BoundingBox) sphere.getBound();
44 Vector3f min = bb.getMin(null);
45 float[] ext = new float[]{bb.getXExtent() * 2, bb.getYExtent() * 2, bb.getZExtent() * 2};
91 ByteBuffer bb = BufferUtils.createByteBuffer(10 * 10 * 10 * 3);//all data must be inside one buffer
94 bb.put((byte) (255f*i/10f));
95 bb.put((byte) (255f*i/10f));
96 bb.put((byte) (255f));
99 bb.rewind();
100 data.add(bb);