WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
SatAngle.h
1#ifndef _WINC_SATANGLE
2#define _WINC_SATANGLE
3
4namespace WXP {
5 struct SatAngle {
6 float elev;
7 float scan;
8
9 SatAngle();
10 int init();
11 int set( float e, float s );
12 int print();
13 };
14}
15#endif
16
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This struct stores the angle of the satellite imager.
Definition: SatAngle.h:5