Searched refs:worldMatrix (Results 1 - 11 of 11) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DCollisionData.java49 Matrix4f worldMatrix,
48 collideWith(Collidable other, Matrix4f worldMatrix, BoundingVolume worldBound, CollisionResults results) argument
H A DMesh.java848 Matrix4f worldMatrix,
856 return collisionTree.collideWith(other, worldMatrix, worldBound, results);
847 collideWith(Collidable other, Matrix4f worldMatrix, BoundingVolume worldBound, CollisionResults results) argument
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
H A DBIHNode.java150 Matrix4f worldMatrix,
211 if (worldMatrix != null) {
212 worldMatrix.mult(t.get1(), t.get1());
213 worldMatrix.mult(t.get2(), t.get2());
214 worldMatrix.mult(t.get3(), t.get3());
237 Matrix4f worldMatrix,
275 if (worldMatrix != null) {
276 worldMatrix.mult(v1, v1);
277 worldMatrix.mult(v2, v2);
278 worldMatrix
148 intersectWhere(Collidable col, BoundingBox box, Matrix4f worldMatrix, BIHTree tree, CollisionResults results) argument
236 intersectBrute(Ray r, Matrix4f worldMatrix, BIHTree tree, float sceneMin, float sceneMax, CollisionResults results) argument
296 intersectWhere(Ray r, Matrix4f worldMatrix, BIHTree tree, float sceneMin, float sceneMax, CollisionResults results) argument
[all...]
H A DBIHTree.java397 Matrix4f worldMatrix,
424 // return root.intersectBrute(r, worldMatrix, this, tMin, tMax, results);
425 return root.intersectWhere(r, worldMatrix, this, tMin, tMax, results);
431 Matrix4f worldMatrix,
445 bbox.transform(worldMatrix.invert(), bbox);
446 return root.intersectWhere(bv, bbox, worldMatrix, this, results);
450 Matrix4f worldMatrix,
456 return collideWithRay(ray, worldMatrix, worldBound, results);
459 return collideWithBoundingVolume(bv, worldMatrix, results);
396 collideWithRay(Ray r, Matrix4f worldMatrix, BoundingVolume worldBound, CollisionResults results) argument
430 collideWithBoundingVolume(BoundingVolume bv, Matrix4f worldMatrix, CollisionResults results) argument
449 collideWith(Collidable other, Matrix4f worldMatrix, BoundingVolume worldBound, CollisionResults results) argument
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DRenderer.java118 * @param worldMatrix World matrix to use.
120 public void setWorldMatrix(Matrix4f worldMatrix); argument
H A DRenderManager.java87 private Matrix4f worldMatrix = new Matrix4f(); field in class:RenderManager
337 // assums worldMatrix is properly set.
349 u.setValue(VarType.Matrix4, worldMatrix);
362 tempMat4.multLocal(worldMatrix);
367 tempMat4.multLocal(worldMatrix);
375 tempMat4.multLocal(worldMatrix);
379 tempMat4.set(worldMatrix);
384 worldMatrix.toRotationMatrix(tempMat3);
405 tempMat4.multLocal(worldMatrix);
411 tempMat4.multLocal(worldMatrix);
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DNullRenderer.java83 public void setWorldMatrix(Matrix4f worldMatrix) { argument
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DGeometryBatchFactory.java179 Matrix4f worldMatrix = geom.getWorldMatrix();
207 doTransformVerts(inPos, globalVertIndex, outPos, worldMatrix);
211 doTransformNorms(inPos, globalVertIndex, outPos, worldMatrix);
216 doTransformTangents(inPos, globalVertIndex, components, outPos, worldMatrix);
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
H A DLwjglGL1Renderer.java62 private Matrix4f worldMatrix = new Matrix4f(); field in class:LwjglGL1Renderer
456 public void setWorldMatrix(Matrix4f worldMatrix) { argument
457 this.worldMatrix.set(worldMatrix);
472 setModelView(worldMatrix, viewMatrix);
623 setModelView(worldMatrix, viewMatrix);
H A DLwjglRenderer.java751 public void setWorldMatrix(Matrix4f worldMatrix) { argument
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
H A DOGLESShaderRenderer.java734 public void setWorldMatrix(Matrix4f worldMatrix) { argument

Completed in 642 milliseconds