Modified Files:
src/FDM/YASim/Launchbar.cpp: Olaf Flebbe: Make sure expressions stay floats.
This commit is contained in:
parent
fbb676cbbe
commit
32d3d33fea
1 changed files with 2 additions and 2 deletions
|
@ -7,8 +7,8 @@
|
|||
|
||||
namespace yasim {
|
||||
|
||||
static const float YASIM_PI2 = 3.14159265358979323846/2;
|
||||
static const float YASIM_PI = 3.14159265358979323846;
|
||||
static const float YASIM_PI2 = 3.14159265358979323846f/2;
|
||||
static const float YASIM_PI = 3.14159265358979323846f;
|
||||
static const float RAD2DEG = 180/YASIM_PI;
|
||||
|
||||
Launchbar::Launchbar()
|
||||
|
|
Loading…
Reference in a new issue