Skip to content
Snippets Groups Projects
Commit c20a7e1b authored by Tomas Vybiral's avatar Tomas Vybiral
Browse files

fixes

parent 6fe66311
No related branches found
No related tags found
No related merge requests found
#include "shooter.h"
 
shooter::shooter():position{0, 0, shooter::MAX_POSITION},
shooter::shooter():position{240, 0, shooter::MAX_POSITION},
angle{0.0, 0.0, shooter::MAX_ANGLE},
force{1.0, MIN_FORCE, MAX_FORCE} { }
 
......
......@@ -70,7 +70,7 @@ public:
constexpr static double MAX_ANGLE = M_PI/2.0;
/// CUrrent force value
ranged_value<double> force;
constexpr static double MAX_FORCE = 3.0;
constexpr static double MAX_FORCE = 2.0;
constexpr static double MIN_FORCE = 1.0;
};
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment