Home | History | Annotate | Download | only in anim

Lines Matching refs:box

49 import com.jme3.scene.shape.Box;
74 Box box = new Box(1, 1, 1);
77 FloatBuffer weights = FloatBuffer.allocate( box.getVertexCount() * 4 );
80 box.setBuffer(weightsBuf);
83 ByteBuffer indices = ByteBuffer.allocate( box.getVertexCount() * 4 );
86 box.setBuffer(indicesBuf);
89 box.generateBindPose(true);
98 for (int i = 0; i < box.getVertexCount() * 4; i += 4){
113 box.setMaxNumWeights(1);
116 Geometry geom = new Geometry("box", box);