2008-02-09 13:43:23 +01:00
|
|
|
|
#ifndef __EMATH_H
|
|
|
|
|
#define __EMATH_H
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <cmath>
|
|
|
|
|
#include <SDL_opengl.h>
|
|
|
|
|
|
2008-03-08 23:03:26 +01:00
|
|
|
|
#include "punkt3d.h" /* aus kompatibilit<69>tsgr<67>nden */
|
2008-02-09 13:43:23 +01:00
|
|
|
|
|
|
|
|
|
float deg2rad(float deg);
|
|
|
|
|
float rad2deg(float rad);
|
|
|
|
|
|
|
|
|
|
// *grml* scheiss cmath-sinus
|
2008-03-08 23:03:26 +01:00
|
|
|
|
// 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);
|
|
|
|
|
|
|
|
|
|
#endif
|