OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:QUARTER_PI
(Results
1 - 5
of
5
) sorted by null
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/
HumanoidRagdollPreset.java
17
boneMap.put("head", new JointPreset(FastMath.
QUARTER_PI
, -FastMath.
QUARTER_PI
, FastMath.
QUARTER_PI
, -FastMath.
QUARTER_PI
, FastMath.
QUARTER_PI
, -FastMath.
QUARTER_PI
));
19
boneMap.put("torso", new JointPreset(FastMath.
QUARTER_PI
, -FastMath.
QUARTER_PI
, 0, 0, FastMath.
QUARTER_PI
, -FastMath.
QUARTER_PI
));
[
all
...]
/external/jmonkeyengine/engine/src/core/com/jme3/light/
SpotLight.java
59
protected float spotInnerAngle = FastMath.
QUARTER_PI
/ 8;
60
protected float spotOuterAngle = FastMath.
QUARTER_PI
/ 6;
198
oc.write(spotInnerAngle, "spotInnerAngle", FastMath.
QUARTER_PI
/ 8);
199
oc.write(spotOuterAngle, "spotOuterAngle", FastMath.
QUARTER_PI
/ 6);
207
spotInnerAngle = ic.readFloat("spotInnerAngle", FastMath.
QUARTER_PI
/ 8);
208
spotOuterAngle = ic.readFloat("spotOuterAngle", FastMath.
QUARTER_PI
/ 6);
/external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestAnimationFactory.java
67
animationFactory.addTimeRotation(0.5f,new Quaternion().fromAngleAxis(FastMath.
QUARTER_PI
, Vector3f.UNIT_Z));
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java
60
private final static float EULER_STEP = FastMath.
QUARTER_PI
* 3;
/external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java
61
public static final float
QUARTER_PI
= 0.25f * PI;
[
all
...]
Completed in 73 milliseconds