mirror of
https://github.com/encounter/ogws-dtk.git
synced 2026-03-30 11:33:39 -07:00
16 lines
254 B
C++
16 lines
254 B
C++
#ifndef EGG_MATH_MATH_H
|
|
#define EGG_MATH_MATH_H
|
|
#include "types_egg.h"
|
|
|
|
namespace EGG
|
|
{
|
|
template <typename T> struct Math
|
|
{
|
|
static T sqrt(T);
|
|
static T sin(T);
|
|
static T cos(T);
|
|
static T atan2(T, T);
|
|
};
|
|
}
|
|
|
|
#endif |