| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592 |
- #include <glm/ext/scalar_ulp.hpp>
- #define GLM_ENABLE_EXPERIMENTAL
- #include <glm/gtc/type_precision.hpp>
- #include <glm/gtx/fast_trigonometry.hpp>
- #include <glm/gtx/integer.hpp>
- #include <glm/gtx/common.hpp>
- #include <glm/gtc/constants.hpp>
- #include <glm/gtc/vec1.hpp>
- #include <glm/trigonometric.hpp>
- #include <cmath>
- #include <ctime>
- #include <cstdio>
- #include <vector>
- namespace fastCos
- {
- static int perf(bool NextFloat)
- {
- const float begin = -glm::pi<float>();
- const float end = glm::pi<float>();
- float result = 0.f;
- const std::clock_t timestamp1 = std::clock();
- for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::fastCos(i);
- const std::clock_t timestamp2 = std::clock();
- for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::cos(i);
- const std::clock_t timestamp3 = std::clock();
- const std::clock_t time_fast = timestamp2 - timestamp1;
- const std::clock_t time_default = timestamp3 - timestamp2;
- std::printf("fastCos Time %d clocks\n", static_cast<int>(time_fast));
- std::printf("cos Time %d clocks\n", static_cast<int>(time_default));
- (void) result; // Silence set but not used warning
- return time_fast <= time_default ? 0 : 1;
- }
- }//namespace fastCos
- namespace fastSin
- {
- /*
- float sin(float x) {
- float temp;
- temp = (x + M_PI) / ((2 * M_PI) - M_PI);
- return limited_sin((x + M_PI) - ((2 * M_PI) - M_PI) * temp));
- }
- */
- static int perf(bool NextFloat)
- {
- const float begin = -glm::pi<float>();
- const float end = glm::pi<float>();
- float result = 0.f;
- const std::clock_t timestamp1 = std::clock();
- for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::fastSin(i);
- const std::clock_t timestamp2 = std::clock();
- for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::sin(i);
- const std::clock_t timestamp3 = std::clock();
- const std::clock_t time_fast = timestamp2 - timestamp1;
- const std::clock_t time_default = timestamp3 - timestamp2;
- std::printf("fastSin Time %d clocks\n", static_cast<int>(time_fast));
- std::printf("sin Time %d clocks\n", static_cast<int>(time_default));
- (void) result; // Silence set but not used warning
- return time_fast <= time_default ? 0 : 1;
- }
- }//namespace fastSin
- namespace fastTan
- {
- static int perf(bool NextFloat)
- {
- const float begin = -glm::pi<float>();
- const float end = glm::pi<float>();
- float result = 0.f;
- const std::clock_t timestamp1 = std::clock();
- for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::fastTan(i);
- const std::clock_t timestamp2 = std::clock();
- for (float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::tan(i);
- const std::clock_t timestamp3 = std::clock();
- const std::clock_t time_fast = timestamp2 - timestamp1;
- const std::clock_t time_default = timestamp3 - timestamp2;
- std::printf("fastTan Time %d clocks\n", static_cast<int>(time_fast));
- std::printf("tan Time %d clocks\n", static_cast<int>(time_default));
- (void) result; // Silence set but not used warning
- return time_fast <= time_default ? 0 : 1;
- }
- }//namespace fastTan
- namespace fastAcos
- {
- static int perf(bool NextFloat)
- {
- const float begin = -glm::pi<float>();
- const float end = glm::pi<float>();
- float result = 0.f;
- const std::clock_t timestamp1 = std::clock();
- for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::fastAcos(i);
- const std::clock_t timestamp2 = std::clock();
- for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::acos(i);
- const std::clock_t timestamp3 = std::clock();
- const std::clock_t time_fast = timestamp2 - timestamp1;
- const std::clock_t time_default = timestamp3 - timestamp2;
- std::printf("fastAcos Time %d clocks\n", static_cast<int>(time_fast));
- std::printf("acos Time %d clocks\n", static_cast<int>(time_default));
- (void) result; // Silence set but not used warning
- return time_fast <= time_default ? 0 : 1;
- }
- }//namespace fastAcos
- namespace fastAsin
- {
- static int perf(bool NextFloat)
- {
- const float begin = -glm::pi<float>();
- const float end = glm::pi<float>();
- float result = 0.f;
- const std::clock_t timestamp1 = std::clock();
- for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::fastAsin(i);
- const std::clock_t timestamp2 = std::clock();
- for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::asin(i);
- const std::clock_t timestamp3 = std::clock();
- const std::clock_t time_fast = timestamp2 - timestamp1;
- const std::clock_t time_default = timestamp3 - timestamp2;
- std::printf("fastAsin Time %d clocks\n", static_cast<int>(time_fast));
- std::printf("asin Time %d clocks\n", static_cast<int>(time_default));
- (void) result; // Silence set but not used warning
- return time_fast <= time_default ? 0 : 1;
- }
- }//namespace fastAsin
- namespace fastAtan
- {
- static int perf(bool NextFloat)
- {
- const float begin = -glm::pi<float>();
- const float end = glm::pi<float>();
- float result = 0.f;
- const std::clock_t timestamp1 = std::clock();
- for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::fastAtan(i);
- const std::clock_t timestamp2 = std::clock();
- for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i + 0.1f)
- result = glm::atan(i);
- const std::clock_t timestamp3 = std::clock();
- const std::clock_t time_fast = timestamp2 - timestamp1;
- const std::clock_t time_default = timestamp3 - timestamp2;
- std::printf("fastAtan Time %d clocks\n", static_cast<int>(time_fast));
- std::printf("atan Time %d clocks\n", static_cast<int>(time_default));
- (void) result; // Silence set but not used warning
- return time_fast <= time_default ? 0 : 1;
- }
- }//namespace fastAtan
- namespace taylorCos
- {
- using glm::qualifier;
- using glm::length_t;
- # if (GLM_COMPILER & GLM_COMPILER_CLANG)
- # pragma clang diagnostic push
- # pragma clang diagnostic ignored "-Wglobal-constructors"
- # endif
- glm::vec4 const AngleShift(0.0f, glm::half_pi<float>(), glm::pi<float>(), glm::three_over_two_pi<float>());
- # if (GLM_COMPILER & GLM_COMPILER_CLANG)
- # pragma clang diagnostic pop
- # endif
- template<length_t L, typename T, qualifier Q>
- static GLM_FUNC_QUALIFIER glm::vec<L, T, Q> taylorSeriesNewCos(glm::vec<L, T, Q> const& x)
- {
- glm::vec<L, T, Q> const Powed2(x * x);
- glm::vec<L, T, Q> const Powed4(Powed2 * Powed2);
- glm::vec<L, T, Q> const Powed6(Powed4 * Powed2);
- glm::vec<L, T, Q> const Powed8(Powed4 * Powed4);
- return static_cast<T>(1)
- - Powed2 * static_cast<T>(0.5)
- + Powed4 * static_cast<T>(0.04166666666666666666666666666667)
- - Powed6 * static_cast<T>(0.00138888888888888888888888888889)
- + Powed8 * static_cast<T>(2.4801587301587301587301587301587e-5);
- }
- /*
- template<length_t L, typename T, qualifier Q>
- static GLM_FUNC_QUALIFIER glm::vec<L, T, Q> taylorSeriesNewCos6(glm::vec<L, T, Q> const& x)
- {
- glm::vec<L, T, Q> const Powed2(x * x);
- glm::vec<L, T, Q> const Powed4(Powed2 * Powed2);
- glm::vec<L, T, Q> const Powed6(Powed4 * Powed2);
- return static_cast<T>(1)
- - Powed2 * static_cast<T>(0.5)
- + Powed4 * static_cast<T>(0.04166666666666666666666666666667)
- - Powed6 * static_cast<T>(0.00138888888888888888888888888889);
- }
- */
- /*
- template<glm::length_t L, qualifier Q>
- static GLM_FUNC_QUALIFIER glm::vec<L, float, Q> fastAbs(glm::vec<L, float, Q> x)
- {
- int* Pointer = reinterpret_cast<int*>(&x[0]);
- Pointer[0] &= 0x7fffffff;
- Pointer[1] &= 0x7fffffff;
- Pointer[2] &= 0x7fffffff;
- Pointer[3] &= 0x7fffffff;
- return x;
- }
- template<glm::length_t L, typename T, qualifier Q>
- static GLM_FUNC_QUALIFIER glm::vec<L, T, Q> fastCosNew(glm::vec<L, T, Q> const& x)
- {
- glm::vec<L, T, Q> const Angle0_PI(fastAbs(fmod(x + glm::pi<T>(), glm::two_pi<T>()) - glm::pi<T>()));
- return taylorSeriesNewCos6(x);
- // vec<L, bool, Q> const FirstQuarterPi(lessThanEqual(Angle0_PI, vec<L, T, Q>(glm::half_pi<T>())));
- // vec<L, T, Q> const RevertAngle(mix(vec<L, T, Q>(glm::pi<T>()), vec<L, T, Q>(0), FirstQuarterPi));
- // vec<L, T, Q> const ReturnSign(mix(vec<L, T, Q>(-1), vec<L, T, Q>(1), FirstQuarterPi));
- // vec<L, T, Q> const SectionAngle(RevertAngle - Angle0_PI);
- // return ReturnSign * taylorSeriesNewCos(SectionAngle);
- }
- */
- /*
- static int perf_fastCosNew(float Begin, float End, std::size_t Samples)
- {
- std::vector<glm::vec4> Results;
- Results.resize(Samples);
- float const Steps = (End - Begin) / static_cast<float>(Samples);
- std::clock_t const TimeStampBegin = std::clock();
- for(std::size_t i = 0; i < Samples; ++i)
- Results[i] = fastCosNew(AngleShift + glm::vec4(Begin + Steps * static_cast<float>(i)));
- std::clock_t const TimeStampEnd = std::clock();
- std::printf("fastCosNew %d clocks\n", static_cast<int>(TimeStampEnd - TimeStampBegin));
- int Error = 0;
- for(std::size_t i = 0; i < Samples; ++i)
- Error += Results[i].x >= -1.0f && Results[i].x <= 1.0f ? 0 : 1;
- return Error;
- }
- */
- template<length_t L, typename T, qualifier Q>
- static GLM_FUNC_QUALIFIER glm::vec<L, T, Q> deterministic_fmod(glm::vec<L, T, Q> const& x, T y)
- {
- return x - y * trunc(x / y);
- }
- template<length_t L, typename T, qualifier Q>
- static GLM_FUNC_QUALIFIER glm::vec<L, T, Q> fastCosDeterminisctic(glm::vec<L, T, Q> const& x)
- {
- glm::vec<L, T, Q> const Angle0_PI(abs(deterministic_fmod(x + glm::pi<T>(), glm::two_pi<T>()) - glm::pi<T>()));
- glm::vec<L, bool, Q> const FirstQuarterPi(lessThanEqual(Angle0_PI, glm::vec<L, T, Q>(glm::half_pi<T>())));
- glm::vec<L, T, Q> const RevertAngle(mix(glm::vec<L, T, Q>(glm::pi<T>()), glm::vec<L, T, Q>(0), FirstQuarterPi));
- glm::vec<L, T, Q> const ReturnSign(mix(glm::vec<L, T, Q>(-1), glm::vec<L, T, Q>(1), FirstQuarterPi));
- glm::vec<L, T, Q> const SectionAngle(RevertAngle - Angle0_PI);
- return ReturnSign * taylorSeriesNewCos(SectionAngle);
- }
- static int perf_fastCosDeterminisctic(float Begin, float End, std::size_t Samples)
- {
- std::vector<glm::vec4> Results;
- Results.resize(Samples);
- float const Steps = (End - Begin) / static_cast<float>(Samples);
- std::clock_t const TimeStampBegin = std::clock();
- for(std::size_t i = 0; i < Samples; ++i)
- Results[i] = taylorCos::fastCosDeterminisctic(AngleShift + glm::vec4(Begin + Steps * static_cast<float>(i)));
- std::clock_t const TimeStampEnd = std::clock();
- std::printf("fastCosDeterminisctic %d clocks\n", static_cast<int>(TimeStampEnd - TimeStampBegin));
- int Error = 0;
- for(std::size_t i = 0; i < Samples; ++i)
- Error += Results[i].x >= -1.0f && Results[i].x <= 1.0f ? 0 : 1;
- return Error;
- }
- template<length_t L, typename T, qualifier Q>
- static GLM_FUNC_QUALIFIER glm::vec<L, T, Q> taylorSeriesRefCos(glm::vec<L, T, Q> const& x)
- {
- return static_cast<T>(1)
- - (x * x) / glm::factorial(static_cast<T>(2))
- + (x * x * x * x) / glm::factorial(static_cast<T>(4))
- - (x * x * x * x * x * x) / glm::factorial(static_cast<T>(6))
- + (x * x * x * x * x * x * x * x) / glm::factorial(static_cast<T>(8));
- }
- template<length_t L, typename T, qualifier Q>
- static GLM_FUNC_QUALIFIER glm::vec<L, T, Q> fastRefCos(glm::vec<L, T, Q> const& x)
- {
- glm::vec<L, T, Q> const Angle0_PI(glm::abs(fmod(x + glm::pi<T>(), glm::two_pi<T>()) - glm::pi<T>()));
- // return taylorSeriesRefCos(Angle0_PI);
- glm::vec<L, bool, Q> const FirstQuarterPi(lessThanEqual(Angle0_PI, glm::vec<L, T, Q>(glm::half_pi<T>())));
- glm::vec<L, T, Q> const RevertAngle(mix(glm::vec<L, T, Q>(glm::pi<T>()), glm::vec<L, T, Q>(0), FirstQuarterPi));
- glm::vec<L, T, Q> const ReturnSign(mix(glm::vec<L, T, Q>(-1), glm::vec<L, T, Q>(1), FirstQuarterPi));
- glm::vec<L, T, Q> const SectionAngle(RevertAngle - Angle0_PI);
- return ReturnSign * taylorSeriesRefCos(SectionAngle);
- }
- static int perf_fastCosRef(float Begin, float End, std::size_t Samples)
- {
- std::vector<glm::vec4> Results;
- Results.resize(Samples);
- float const Steps = (End - Begin) / static_cast<float>(Samples);
- std::clock_t const TimeStampBegin = std::clock();
- for(std::size_t i = 0; i < Samples; ++i)
- Results[i] = taylorCos::fastRefCos(AngleShift + glm::vec4(Begin + Steps * static_cast<float>(i)));
- std::clock_t const TimeStampEnd = std::clock();
- std::printf("fastCosRef %d clocks\n", static_cast<int>(TimeStampEnd - TimeStampBegin));
- int Error = 0;
- for(std::size_t i = 0; i < Samples; ++i)
- Error += Results[i].x >= -1.0f && Results[i].x <= 1.0f ? 0 : 1;
- return Error;
- }
- static int perf_fastCosOld(float Begin, float End, std::size_t Samples)
- {
- std::vector<glm::vec4> Results;
- Results.resize(Samples);
- float const Steps = (End - Begin) / static_cast<float>(Samples);
- std::clock_t const TimeStampBegin = std::clock();
- for(std::size_t i = 0; i < Samples; ++i)
- Results[i] = glm::fastCos(AngleShift + glm::vec4(Begin + Steps * static_cast<float>(i)));
- std::clock_t const TimeStampEnd = std::clock();
- std::printf("fastCosOld %d clocks\n", static_cast<int>(TimeStampEnd - TimeStampBegin));
- int Error = 0;
- for(std::size_t i = 0; i < Samples; ++i)
- Error += Results[i].x >= -1.0f && Results[i].x <= 1.0f ? 0 : 1;
- return Error;
- }
- static int perf_cos(float Begin, float End, std::size_t Samples)
- {
- std::vector<glm::vec4> Results;
- Results.resize(Samples);
- float const Steps = (End - Begin) / static_cast<float>(Samples);
- std::clock_t const TimeStampBegin = std::clock();
- for(std::size_t i = 0; i < Samples; ++i)
- Results[i] = glm::cos(AngleShift + glm::vec4(Begin + Steps * static_cast<float>(i)));
- std::clock_t const TimeStampEnd = std::clock();
- std::printf("cos %d clocks\n", static_cast<int>(TimeStampEnd - TimeStampBegin));
- int Error = 0;
- for(std::size_t i = 0; i < Samples; ++i)
- Error += Results[i].x >= -1.0f && Results[i].x <= 1.0f ? 0 : 1;
- return Error;
- }
- static int perf(std::size_t const Samples)
- {
- int Error = 0;
- float const Begin = -glm::pi<float>();
- float const End = glm::pi<float>();
- Error += perf_cos(Begin, End, Samples);
- Error += perf_fastCosOld(Begin, End, Samples);
- Error += perf_fastCosRef(Begin, End, Samples);
- //Error += perf_fastCosNew(Begin, End, Samples);
- Error += perf_fastCosDeterminisctic(Begin, End, Samples);
- return Error;
- }
- static int test()
- {
- int Error = 0;
- //for(float Angle = -4.0f * glm::pi<float>(); Angle < 4.0f * glm::pi<float>(); Angle += 0.1f)
- //for(float Angle = -720.0f; Angle < 720.0f; Angle += 0.1f)
- for(float Angle = 0.0f; Angle < 180.0f; Angle += 0.1f)
- {
- float const modAngle = std::fmod(glm::abs(Angle), 360.f);
- assert(modAngle >= 0.0f && modAngle <= 360.f);
- float const radAngle = glm::radians(modAngle);
- float const Cos0 = std::cos(radAngle);
- float const Cos1 = taylorCos::fastRefCos(glm::fvec1(radAngle)).x;
- Error += glm::abs(Cos1 - Cos0) < 0.1f ? 0 : 1;
- //float const Cos2 = taylorCos::fastCosNew(glm::fvec1(radAngle)).x;
- //Error += glm::abs(Cos2 - Cos0) < 0.1f ? 0 : 1;
- assert(!Error);
- }
- return Error;
- }
- }//namespace taylorCos
- namespace taylor2
- {
- # if (GLM_COMPILER & GLM_COMPILER_CLANG)
- # pragma clang diagnostic push
- # pragma clang diagnostic ignored "-Wglobal-constructors"
- # endif
- glm::vec4 const AngleShift(0.0f, glm::pi<float>() * 0.5f, glm::pi<float>() * 1.0f, glm::pi<float>() * 1.5f);
- # if (GLM_COMPILER & GLM_COMPILER_CLANG)
- # pragma clang diagnostic pop
- # endif
- static float taylorCosA(float x)
- {
- return 1.f
- - (x * x) * (1.f / 2.f)
- + (x * x * x * x) * (1.f / 24.f)
- - (x * x * x * x * x * x) * (1.f / 720.f)
- + (x * x * x * x * x * x * x * x) * (1.f / 40320.f);
- }
- static float taylorCosB(float x)
- {
- return 1.f
- - (x * x) * (1.f / 2.f)
- + (x * x * x * x) * (1.f / 24.f)
- - (x * x * x * x * x * x) * (1.f / 720.f)
- + (x * x * x * x * x * x * x * x) * (1.f / 40320.f);
- }
- static float taylorCosC(float x)
- {
- return 1.f
- - (x * x) * (1.f / 2.f)
- + ((x * x) * (x * x)) * (1.f / 24.f)
- - (((x * x) * (x * x)) * (x * x)) * (1.f / 720.f)
- + (((x * x) * (x * x)) * ((x * x) * (x * x))) * (1.f / 40320.f);
- }
- static int perf_taylorCosA(float Begin, float End, std::size_t Samples)
- {
- std::vector<float> Results;
- Results.resize(Samples);
- float const Steps = (End - Begin) / static_cast<float>(Samples);
- std::clock_t const TimeStampBegin = std::clock();
- for(std::size_t i = 0; i < Samples; ++i)
- Results[i] = taylorCosA(AngleShift.x + Begin + Steps * static_cast<float>(i));
- std::clock_t const TimeStampEnd = std::clock();
- std::printf("taylorCosA %d clocks\n", static_cast<int>(TimeStampEnd - TimeStampBegin));
- int Error = 0;
- for(std::size_t i = 0; i < Samples; ++i)
- Error += Results[i] >= -1.0f && Results[i] <= 1.0f ? 0 : 1;
- return Error;
- }
- static int perf_taylorCosB(float Begin, float End, std::size_t Samples)
- {
- std::vector<float> Results;
- Results.resize(Samples);
- float const Steps = (End - Begin) / static_cast<float>(Samples);
- std::clock_t const TimeStampBegin = std::clock();
- for(std::size_t i = 0; i < Samples; ++i)
- Results[i] = taylorCosB(AngleShift.x + Begin + Steps * static_cast<float>(i));
- std::clock_t const TimeStampEnd = std::clock();
- std::printf("taylorCosB %d clocks\n", static_cast<int>(TimeStampEnd - TimeStampBegin));
- int Error = 0;
- for(std::size_t i = 0; i < Samples; ++i)
- Error += Results[i] >= -1.0f && Results[i] <= 1.0f ? 0 : 1;
- return Error;
- }
- static int perf_taylorCosC(float Begin, float End, std::size_t Samples)
- {
- std::vector<float> Results;
- Results.resize(Samples);
- float const Steps = (End - Begin) / static_cast<float>(Samples);
- std::clock_t const TimeStampBegin = std::clock();
- for(std::size_t i = 0; i < Samples; ++i)
- Results[i] = taylorCosC(AngleShift.x + Begin + Steps * static_cast<float>(i));
- std::clock_t const TimeStampEnd = std::clock();
- std::printf("taylorCosC %d clocks\n", static_cast<int>(TimeStampEnd - TimeStampBegin));
- int Error = 0;
- for(std::size_t i = 0; i < Samples; ++i)
- Error += Results[i] >= -1.0f && Results[i] <= 1.0f ? 0 : 1;
- return Error;
- }
- static int perf(std::size_t Samples)
- {
- int Error = 0;
- float const Begin = -glm::pi<float>();
- float const End = glm::pi<float>();
- Error += perf_taylorCosA(Begin, End, Samples);
- Error += perf_taylorCosB(Begin, End, Samples);
- Error += perf_taylorCosC(Begin, End, Samples);
- return Error;
- }
- }//namespace taylor2
- int main()
- {
- int Error(0);
- Error += ::taylor2::perf(1000);
- Error += ::taylorCos::test();
- Error += ::taylorCos::perf(1000);
- ::fastCos::perf(false);
- ::fastSin::perf(false);
- ::fastTan::perf(false);
- ::fastAcos::perf(false);
- ::fastAsin::perf(false);
- ::fastAtan::perf(false);
- return Error;
- }
|