1234567891011121314151617181920212223242526272829303132 |
- #pragma once
- #include <Mathematics/ACosEstimate.h>
- namespace WwiseGTE
- {
- template <typename Real>
- class ASinEstimate
- {
- public:
-
-
-
- template <int D>
- inline static Real Degree(Real x)
- {
- return (Real)GTE_C_HALF_PI - ACosEstimate<Real>::Degree<D>(x);
- }
- };
- }
|