2015-02-26 15:02:31 +00:00
|
|
|
/*********************************** TRICK HEADER **************************
|
|
|
|
PURPOSE: (Test Baseball)
|
|
|
|
***************************************************************************/
|
|
|
|
|
2015-03-23 21:03:14 +00:00
|
|
|
#ifndef CANNON_JET_PROTO_H
|
|
|
|
#define CANNON_JET_PROTO_H
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
#include "cannon_aero.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int cannon_force_jet(CANNON_AERO*);
|
|
|
|
int cannon_init_aero(CANNON_AERO*) ;
|
|
|
|
int cannon_force_gravity(CANNON_AERO*) ;
|
|
|
|
int cannon_force_drag(CANNON_AERO*) ;
|
|
|
|
int cannon_force_lift(CANNON_AERO*) ;
|
|
|
|
int cannon_force_cross(CANNON_AERO*) ;
|
|
|
|
int cannon_collect_forces(CANNON_AERO*) ;
|
|
|
|
int cannon_integ_aero(CANNON_AERO*) ;
|
|
|
|
double cannon_impact_aero(CANNON_AERO*) ;
|
|
|
|
int cannon_aero_default_data(CANNON_AERO*) ;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|