mirror of
https://github.com/nasa/trick.git
synced 2024-12-26 00:01:09 +00:00
20 lines
275 B
C++
20 lines
275 B
C++
|
|
#ifndef SCENE_HH
|
|
#define SCENE_HH
|
|
|
|
#include "Camera.hh"
|
|
#include "SceneElement.hh"
|
|
#include <vector>
|
|
|
|
typedef struct {
|
|
double pos[3];
|
|
double R[3][3];
|
|
} ElementState;
|
|
|
|
typedef struct {
|
|
ElementState satellite;
|
|
// ElementState satellite2;
|
|
} Comm_packet;
|
|
|
|
#endif
|