Home | History | Annotate | Download | only in scriptc

Lines Matching full:atan2

477  * atan2: Inverse tangent of a ratio
488 atan2(float numerator, float denominator);
491 atan2(float2 numerator, float2 denominator);
494 atan2(float3 numerator, float3 denominator);
497 atan2(float4 numerator, float4 denominator);
501 atan2(half numerator, half denominator);
506 atan2(half2 numerator, half2 denominator);
511 atan2(half3 numerator, half3 denominator);
516 atan2(half4 numerator, half4 denominator);
4023 * See also atan2().
6177 * instructions. For example, instead of computing (a[i] < b[i]) ? 0.f : atan2(a[i], b[i])
6178 * for the corresponding elements of a vector, you could instead use step(a, b) * atan2(a, b).