mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Got rid of the math include in the ab extension
This commit is contained in:
parent
d9bd98bf60
commit
3bfbf8b64e
@ -5,19 +5,17 @@
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
||||
#define _USE_MATH_DEFINES
|
||||
#include <math.h>
|
||||
|
||||
#define GRAVITY 9.80665
|
||||
#define ABSOLUTE_ZERO_IN_CELSIUS -273.15
|
||||
#define M_PI 3.14159265358979323846f
|
||||
#define GRAVITY 9.80665f
|
||||
#define ABSOLUTE_ZERO_IN_CELSIUS -273.15f
|
||||
#define KELVIN(t) (t - ABSOLUTE_ZERO_IN_CELSIUS)
|
||||
#define CELSIUS(t) (t + ABSOLUTE_ZERO_IN_CELSIUS)
|
||||
#define UNIVERSAL_GAS_CONSTANT 8.314
|
||||
#define WATER_VAPOR_MOLAR_MASS 0.018016
|
||||
#define DRY_AIR_MOLAR_MASS 0.028964
|
||||
#define SPECIFIC_GAS_CONSTANT_DRY_AIR 287.058
|
||||
#define STD_AIR_DENSITY_ICAO 1.22498
|
||||
#define STD_AIR_DENSITY_ASM 1.20885
|
||||
#define UNIVERSAL_GAS_CONSTANT 8.314f
|
||||
#define WATER_VAPOR_MOLAR_MASS 0.018016f
|
||||
#define DRY_AIR_MOLAR_MASS 0.028964f
|
||||
#define SPECIFIC_GAS_CONSTANT_DRY_AIR 287.058f
|
||||
#define STD_AIR_DENSITY_ICAO 1.22498f
|
||||
#define STD_AIR_DENSITY_ASM 1.20885f
|
||||
|
||||
struct Bullet {
|
||||
double airFriction;
|
||||
|
Loading…
Reference in New Issue
Block a user