trick/trick_models/Satellite/include/Thruster.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

24 lines
807 B
C++

#ifndef THRUSTER_HH
#define THRUSTER_HH
/********************************* TRICK HEADER *******************************
PURPOSE:
()
LIBRARY DEPENDENCY:
((../src/Thruster.cpp))
PROGRAMMERS:
(((John M. Penn) () () () ))
*******************************************************************************/
class Thruster {
public:
Thruster();
void add_force_and_torque(double* force, double* torque);
void initialize(double p0, double p1, double p2, double f0, double f1, double f2);
bool on; /* (--) Whether the thruster is on (true) or off (false). */
double position[3]; /* (m) Position of the thruster in vehicle body frame. */
double thrust[3]; /* (kg*m/s2) Thrusting force in vehicle body frame */
};
#endif