threePiOver2.glsl 351 B

12345678910111213141516
  1. /**
  2. * A built-in GLSL floating-point constant for <code>3pi/2</code>.
  3. *
  4. * @alias czm_threePiOver2
  5. * @glslConstant
  6. *
  7. * @see CesiumMath.THREE_PI_OVER_TWO
  8. *
  9. * @example
  10. * // GLSL declaration
  11. * const float czm_threePiOver2 = ...;
  12. *
  13. * // Example
  14. * float pi = (2.0 / 3.0) * czm_threePiOver2;
  15. */
  16. const float czm_threePiOver2 = 4.71238898038469;