20 lines
404 B
C++
20 lines
404 B
C++
#ifndef __EMATH_H
|
|
#define __EMATH_H
|
|
|
|
#include <iostream>
|
|
#include <cmath>
|
|
#include <SDL_opengl.h>
|
|
|
|
#include "punkt3d.h" /* aus kompatibilitätsgründen */
|
|
|
|
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
|
|
float ssin(float);
|
|
float scos(float);
|
|
|
|
#endif
|