trick/trick_models/Satellite/graphics/SceneElement.hh
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
Changed all header file once include variables to follow the same naming
convention and not start with any underscores.  Also deleted old
incorrect copyright notices.  Also removed $Id: tags from all files.

Fixes #14.  Fixes #22.
2015-03-23 16:03:14 -05:00

23 lines
362 B
C++

#ifndef SCENEELEMENT_HH
#define SCENEELEMENT_HH
class SceneElement {
public:
SceneElement(const char* model_name);
void init();
void display();
double pos[3];
double vel[3];
double R[4][4];
private:
void * dl_handle ;
void (*model_display_func)(void);
void (*model_init_func)(void);
SceneElement();
};
#endif