Searched refs:collideWith (Results 1 - 25 of 25) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DCollidable.java52 public int collideWith(Collidable other, CollisionResults results) throws UnsupportedCollisionException; method in interface:Collidable
H A DSweepSphere.java407 ss.collideWith(ss2, cr);
416 public int collideWith(Collidable other, CollisionResults results) method in class:SweepSphere
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DAbstractTriangle.java45 public int collideWith(Collidable other, CollisionResults results){ method in class:AbstractTriangle
46 return other.collideWith(this, results);
H A DRay.java385 public int collideWith(Collidable other, CollisionResults results) { method in class:Ray
388 return bv.collideWith(this, results);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DCollisionData.java48 public int collideWith(Collidable other, method in interface:CollisionData
H A DGeometry.java436 public int collideWith(Collidable other, CollisionResults results) { method in class:Geometry
448 int added = mesh.collideWith(other, cachedWorldMat, worldBound, results);
H A DNode.java491 public int collideWith(Collidable other, CollisionResults results){ method in class:Node
494 total += child.collideWith(other, results);
H A DMesh.java831 * Called automatically by {@link #collideWith(com.jme3.collision.Collidable,
844 * User code should only use collideWith() on scene
847 public int collideWith(Collidable other, method in class:Mesh
856 return collisionTree.collideWith(other, worldMatrix, worldBound, results);
/external/jmonkeyengine/engine/src/test/jme3test/bounding/
H A DTestRayCollision.java50 bbox.collideWith(r, res);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/util/
H A DEntropyComputeUtil.java59 terrainBlock.collideWith(ray, Matrix4f.IDENTITY, bbox, results);
/external/jmonkeyengine/engine/src/test/jme3test/collision/
H A DRayTrace.java90 scene.collideWith(r, results);
H A DTestTriangleCollision.java118 golem.collideWith(bv, results);
H A DTestMousePick.java84 shootables.collideWith(ray, results);
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DOctree.java152 bbox.collideWith(r, boundResults);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DTerrainPatch.java784 public int collideWith(Collidable other, CollisionResults results) throws UnsupportedCollisionException { method in class:TerrainPatch
841 if (t != null && bbox.collideWith(t, results) > 0)
844 if (t != null && bbox.collideWith(t, results) > 0)
847 if (t != null && bbox.collideWith(t, results) > 0)
850 if (t != null && bbox.collideWith(t, results) > 0)
860 if (t != null && bbox.collideWith(t, results) > 0)
H A DTerrainQuad.java1637 public int collideWith(Collidable other, CollisionResults results){ method in class:TerrainQuad
1649 total += child.collideWith(other, results);
1671 toTest.collideWith(tp.getWorldBound(), cr);
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
H A DBIHTree.java402 worldBound.collideWith(r, boundResults);
449 public int collideWith(Collidable other, method in class:BIHTree
H A DBIHNode.java217 int added = col.collideWith(t, results);
/external/jmonkeyengine/engine/src/test/jme3test/terrain/
H A DTerrainTestCollision.java260 int numCollisions = terrain.collideWith(ray, results);
303 if (terrain.collideWith(selectedCollisionObject.getWorldBound(), new CollisionResults()) > 0) {
H A DTerrainTestModifyHeight.java268 int numCollisions = terrain.collideWith(ray, results);
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
H A DHelloPicking.java100 shootables.collideWith(ray, results);
/external/jmonkeyengine/engine/src/blender/com/jme3/asset/
H A DBlenderKey.java671 public int collideWith(Collidable other, CollisionResults results) throws UnsupportedCollisionException { method in class:BlenderKey.LoadingResults
/external/jmonkeyengine/engine/src/test/jme3test/post/
H A DTestDepthOfField.java193 int numCollisions = terrain.collideWith(ray, results);
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingSphere.java795 public int collideWith(Collidable other, CollisionResults results) { method in class:BoundingSphere
H A DBoundingBox.java754 public int collideWith(Collidable other, CollisionResults results) { method in class:BoundingBox

Completed in 1224 milliseconds