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

  /external/jmonkeyengine/engine/src/test/jme3test/collision/
TestRayCasting.java 77 teapot.rotate(FastMath.HALF_PI, FastMath.HALF_PI, FastMath.HALF_PI);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/
HumanoidRagdollPreset.java 27 boneMap.put("upperarm", new JointPreset(FastMath.HALF_PI, -FastMath.QUARTER_PI, 0, 0, FastMath.HALF_PI, -FastMath.QUARTER_PI));
29 boneMap.put("lowerarm", new JointPreset(FastMath.HALF_PI, 0, 0, 0, 0, 0));
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestOgreComplexAnim.java 122 if (angle > FastMath.HALF_PI / 2f){
123 angle = FastMath.HALF_PI / 2f;
125 }else if (angle < -FastMath.HALF_PI / 2f){
126 angle = -FastMath.HALF_PI / 2f;
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsCar.java 137 wheels1.rotate(0, FastMath.HALF_PI, 0);
145 wheels2.rotate(0, FastMath.HALF_PI, 0);
153 wheels3.rotate(0, FastMath.HALF_PI, 0);
161 wheels4.rotate(0, FastMath.HALF_PI, 0);
TestAttachDriver.java 165 wheels1.rotate(0, FastMath.HALF_PI, 0);
173 wheels2.rotate(0, FastMath.HALF_PI, 0);
181 wheels3.rotate(0, FastMath.HALF_PI, 0);
189 wheels4.rotate(0, FastMath.HALF_PI, 0);
  /external/jmonkeyengine/engine/src/test/jme3test/material/
TestParallax.java 90 g.setLocalRotation(new Quaternion().fromAngleAxis(-FastMath.HALF_PI, Vector3f.UNIT_X));
107 signpost.rotate(0, FastMath.HALF_PI, 0);
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestLightRadius.java 62 g.rotate(-FastMath.HALF_PI, 0, 0);
TestLightNode.java 63 g.rotate(-FastMath.HALF_PI, 0, 0);
TestSpotLight.java 119 signpost.rotate(0, FastMath.HALF_PI, 0);
TestTransparentShadow.java 73 geom.rotate(-FastMath.HALF_PI, 0, 0);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Sphere.java 186 float fAFraction = FastMath.HALF_PI * (-1.0f + fZFactor * iZ); // in (-pi/2, pi/2)
232 * (FastMath.HALF_PI + FastMath.asin(fZFraction)));
234 float r = (FastMath.HALF_PI - FastMath.abs(fAFraction)) / FastMath.PI;
252 * (FastMath.HALF_PI + FastMath.asin(fZFraction)));
254 float r = (FastMath.HALF_PI - FastMath.abs(fAFraction)) / FastMath.PI;
  /external/arduino/hardware/arduino/cores/arduino/
wiring.h 46 #define HALF_PI 1.5707963267948966192313216916398
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
AbstractBlenderHelper.java 71 upAxisRotationQuaternion = new Quaternion().fromAngles(-FastMath.HALF_PI, 0, 0);
  /external/jmonkeyengine/engine/src/test/jme3test/input/
TestChaseCamera.java 69 ground.setLocalRotation(new Quaternion().fromAngleAxis(-FastMath.HALF_PI, Vector3f.UNIT_X));
TestCameraNode.java 79 ground.setLocalRotation(new Quaternion().fromAngleAxis(-FastMath.HALF_PI, Vector3f.UNIT_X));
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestTransparentSSAO.java 39 geom.rotate(-FastMath.HALF_PI, 0, 0);
TestTransparentCartoonEdge.java 41 geom.rotate(-FastMath.HALF_PI, 0, 0);
TestPostFilters.java 126 signpost.rotate(0, FastMath.HALF_PI, 0);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 59 public static final float HALF_PI = 0.5f * PI;
436 * <ul><li>If fValue is smaller than -1, then the result is -HALF_PI.
437 * <li>If the argument is greater than 1, then the result is HALF_PI.</ul>
448 return HALF_PI;
451 return -HALF_PI;
499 if (Math.abs(radians) > HALF_PI) {// put us in -PI/2 to +PI/2 space
534 return sin2(fValue + HALF_PI);
    [all...]
Quaternion.java 304 angles[2] = FastMath.HALF_PI;
308 angles[2] = -FastMath.HALF_PI;
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/water/
TestSceneWater.java 131 water.setLocalRotation(new Quaternion().fromAngleAxis(-FastMath.HALF_PI, Vector3f.UNIT_X));
  /external/jmonkeyengine/engine/src/test/jme3test/animation/
TestMotionPath.java 84 motionControl.setRotation(new Quaternion().fromAngleNormalAxis(-FastMath.HALF_PI, Vector3f.UNIT_Y));
  /external/jmonkeyengine/engine/src/test/jme3test/effect/
TestEverything.java 175 signpost.rotate(0, FastMath.HALF_PI, 0);
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
SimpleWaterProcessor.java 80 * water.setLocalRotation(new Quaternion().fromAngleAxis(-FastMath.HALF_PI, Vector3f.UNIT_X));
514 geom.setLocalRotation(new Quaternion().fromAngleAxis(-FastMath.HALF_PI, Vector3f.UNIT_X));

Completed in 978 milliseconds