9a5ec79e11
speedups to uiuc_menu.cpp. (Note these were originally submitted before the cutoff date for new features, but something was corrupted in the transfer so I granted a bit of leeway in the schedule.)
22 lines
618 B
C
22 lines
618 B
C
#ifndef _COEFFICIENTS_H_
|
|
#define _COEFFICIENTS_H_
|
|
|
|
#include "uiuc_aircraft.h"
|
|
#include "uiuc_controlInput.h"
|
|
#include "uiuc_coef_drag.h"
|
|
#include "uiuc_coef_lift.h"
|
|
#include "uiuc_coef_pitch.h"
|
|
#include "uiuc_coef_sideforce.h"
|
|
#include "uiuc_coef_roll.h"
|
|
#include "uiuc_coef_yaw.h"
|
|
#include "uiuc_iceboot.h"
|
|
#include "uiuc_iced_nonlin.h"
|
|
#include "uiuc_ice_rates.h"
|
|
#include <FDM/LaRCsim/ls_generic.h>
|
|
#include <FDM/LaRCsim/ls_cockpit.h> /*Long_control,Lat_control,Rudder_pedal */
|
|
#include <FDM/LaRCsim/ls_constants.h> /* RAD_TO_DEG, DEG_TO_RAD*/
|
|
|
|
|
|
void uiuc_coefficients(double dt);
|
|
|
|
#endif // _COEFFICIENTS_H_
|