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

  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/
PhysicsRayTestResult.java 42 public class PhysicsRayTestResult {
52 private PhysicsRayTestResult() {
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/
PhysicsRayTestResult.java 40 public class PhysicsRayTestResult {
47 public PhysicsRayTestResult() {
50 public PhysicsRayTestResult(PhysicsCollisionObject collisionObject, Vector3f hitNormalLocal, float hitFraction, boolean normalInWorldSpace) {
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
PhysicsSpace.java 655 public List<PhysicsRayTestResult> rayTest(Vector3f from, Vector3f to) {
656 List<PhysicsRayTestResult> results = new LinkedList<PhysicsRayTestResult>();
664 public List<PhysicsRayTestResult> rayTest(Vector3f from, Vector3f to, List<PhysicsRayTestResult> results) {
672 private List<PhysicsRayTestResult> results;
674 public InternalRayListener(List<PhysicsRayTestResult> results) {
681 results.add(new PhysicsRayTestResult(obj, Converter.convert(lrr.hitNormalLocal), lrr.hitFraction, bln));
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/
PhysicsSpace.java 715 return (List<PhysicsRayTestResult>) results;
721 public List<PhysicsRayTestResult> rayTest(Vector3f from, Vector3f to, List<PhysicsRayTestResult> results) {
727 public native void rayTest_native(Vector3f from, Vector3f to, long physicsSpaceId, List<PhysicsRayTestResult> results);
731 // private List<PhysicsRayTestResult> results;
733 // public InternalRayListener(List<PhysicsRayTestResult> results) {
740 // results.add(new PhysicsRayTestResult(obj, Converter.convert(lrr.hitNormalLocal), lrr.hitFraction, bln));
    [all...]

Completed in 63 milliseconds