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
226 B

#ifndef __QUADER_H
#define __QUADER_H
#include <SDL_opengl.h>
#include "punkt3d.h"
namespace segl {
class Quader {
public:
Punkt3D a, b, c, d, e, f, g, h;
void clean();
void render();
};
} // namespace segl
#endif