mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
11 lines
408 B
C++
11 lines
408 B
C++
#include "vector.hpp"
|
|
|
|
|
|
namespace ace {
|
|
template <> float acos(float n) { return std::acosf(n); }
|
|
template <> double acos(double n) { return std::acos(n); }
|
|
template <> float cos(float n) { return std::cosf(n); }
|
|
template <> double cos(double n) { return std::cos(n); }
|
|
template <> float sin(float n) { return std::sinf(n); }
|
|
template <> double sin(double n) { return std::sin(n); }
|
|
} |