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

  /external/arduino/hardware/arduino/cores/arduino/
wiring.h 46 #define HALF_PI 1.5707963267948966192313216916398
  /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...]

Completed in 138 milliseconds