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

  /frameworks/rs/scriptc/
rs_quaternion.rsh 206 float invSinTheta = 1.0f / sin(theta);
207 scale = sin(theta * (1.0f - t)) * invSinTheta;
208 invScale = sin(theta * t) * invSinTheta;
  /frameworks/support/renderscript/v8/rs_support/scriptc/
rs_quaternion.rsh 206 float invSinTheta = 1.0f / sin(theta);
207 scale = sin(theta * (1.0f - t)) * invSinTheta;
208 invScale = sin(theta * t) * invSinTheta;
  /prebuilts/sdk/renderscript/include/
rs_quaternion.rsh 206 float invSinTheta = 1.0f / sin(theta);
207 scale = sin(theta * (1.0f - t)) * invSinTheta;
208 invScale = sin(theta * t) * invSinTheta;
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java 657 float invSinTheta = 1f / FastMath.sin(theta);
661 scale0 = FastMath.sin((1 - t) * theta) * invSinTheta;
662 scale1 = FastMath.sin((t * theta)) * invSinTheta;
714 float invSinTheta = 1f / FastMath.sin(theta);
718 scale0 = FastMath.sin((1 - changeAmnt) * theta) * invSinTheta;
719 scale1 = FastMath.sin((changeAmnt * theta)) * invSinTheta;
    [all...]

Completed in 335 milliseconds