You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
495 B

#ifndef __EMATH_OPENGL
#define __EMATH_OPENGL
#include <cmath>
#include "punkt3d.h"
#include "emath.h"
#include "rotationsmatrix.h"
#include <SDL_opengl.h>
namespace segl {
void rotFrom2VecTo2Vec(Punkt3D a, Punkt3D b, Punkt3D c, Punkt3D d, Punkt3D *, float *, Punkt3D *, float *);
void rotFrom2VecTo2Vec(Punkt3D a, Punkt3D b, Punkt3D c, Punkt3D d);
void rotvec2(Punkt3D a, Punkt3D b, Punkt3D c, Punkt3D d, float *dega, Punkt3D *veca, float *degb, Punkt3D *vecb);
} // namespace segl
#endif