OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hitFraction
(Results
1 - 5
of
5
) sorted by null
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/
PhysicsSweepTestResult.java
44
private float
hitFraction
;
50
public PhysicsSweepTestResult(PhysicsCollisionObject collisionObject, Vector3f hitNormalLocal, float
hitFraction
, boolean normalInWorldSpace) {
53
this.
hitFraction
=
hitFraction
;
72
* @return the
hitFraction
75
return
hitFraction
;
85
public void fill(PhysicsCollisionObject collisionObject, Vector3f hitNormalLocal, float
hitFraction
, boolean normalInWorldSpace) {
88
this.
hitFraction
=
hitFraction
;
PhysicsRayTestResult.java
46
private float
hitFraction
;
70
* @return the
hitFraction
73
return
hitFraction
;
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/
PhysicsRayTestResult.java
44
private float
hitFraction
;
50
public PhysicsRayTestResult(PhysicsCollisionObject collisionObject, Vector3f hitNormalLocal, float
hitFraction
, boolean normalInWorldSpace) {
53
this.
hitFraction
=
hitFraction
;
72
* @return the
hitFraction
75
return
hitFraction
;
85
public void fill(PhysicsCollisionObject collisionObject, Vector3f hitNormalLocal, float
hitFraction
, boolean normalInWorldSpace) {
88
this.
hitFraction
=
hitFraction
;
PhysicsSweepTestResult.java
44
private float
hitFraction
;
50
public PhysicsSweepTestResult(PhysicsCollisionObject collisionObject, Vector3f hitNormalLocal, float
hitFraction
, boolean normalInWorldSpace) {
53
this.
hitFraction
=
hitFraction
;
72
* @return the
hitFraction
75
return
hitFraction
;
85
public void fill(PhysicsCollisionObject collisionObject, Vector3f hitNormalLocal, float
hitFraction
, boolean normalInWorldSpace) {
88
this.
hitFraction
=
hitFraction
;
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
PhysicsSpace.java
681
results.add(new PhysicsRayTestResult(obj, Converter.convert(lrr.hitNormalLocal), lrr.
hitFraction
, bln));
682
return lrr.
hitFraction
;
[
all
...]
Completed in 190 milliseconds