Skip to content

Commit

Permalink
min of gravity range to 1 m/s/s, #263
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Sep 7, 2021
1 parent 0e9883c commit 5fcdcaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/common/ProjectileMotionConstants.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const ProjectileMotionConstants = {
PROJECTILE_DRAG_COEFFICIENT_RANGE: new Range( 0.04, 1.2 ), // teardrop to almost hemisphere shape

ALTITUDE_RANGE: new Range( 0, 5000 ), // meters, max is arbitrary but in upper stratosphere
GRAVITY_RANGE: new Range( 5, 20 ), // in m/s/s
GRAVITY_RANGE: new Range( 1, 20 ), // in m/s/s

// projectile and trajectory
AIR_RESISTANCE_ON_PATH_COLOR: 'rgb( 252, 40, 252 )',
Expand Down

0 comments on commit 5fcdcaf

Please sign in to comment.