OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rayTest
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/
PhysicsSpace.java
712
public List
rayTest
(Vector3f from, Vector3f to) {
714
rayTest
(from, to, results);
721
public List<PhysicsRayTestResult>
rayTest
(Vector3f from, Vector3f to, List<PhysicsRayTestResult> results) {
[
all
...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
PhysicsSpace.java
655
public List<PhysicsRayTestResult>
rayTest
(Vector3f from, Vector3f to) {
657
dynamicsWorld.
rayTest
(Converter.convert(from, rayVec1), Converter.convert(to, rayVec2), new InternalRayListener(results));
664
public List<PhysicsRayTestResult>
rayTest
(Vector3f from, Vector3f to, List<PhysicsRayTestResult> results) {
666
dynamicsWorld.
rayTest
(Converter.convert(from, rayVec1), Converter.convert(to, rayVec2), new InternalRayListener(results));
[
all
...]
Completed in 133 milliseconds