您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

23 行
389 B

#ifndef __EMATH_H
#define __EMATH_H
#include <iostream>
#include <cmath>
#include <SDL_opengl.h>
namespace segl {
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);
} // namespace segl
#endif