libsegl/emath.h

23 lines
389 B
C
Raw Normal View History

2008-02-09 13:43:23 +01:00
#ifndef __EMATH_H
#define __EMATH_H
#include <iostream>
#include <cmath>
#include <SDL_opengl.h>
namespace segl {
2008-02-09 13:43:23 +01:00
float deg2rad(float deg);
float rad2deg(float rad);
// *grml* scheiss cmath-sinus
// diese beiden sinusfunktionenrechnen erst deg2rad
// wenn es sich nicht um 0, 90, 180, 270 oder ein vielfaches handelt
2008-02-09 13:43:23 +01:00
float ssin(float);
float scos(float);
} // namespace segl
2008-02-09 13:43:23 +01:00
#endif