summaryrefslogtreecommitdiff
path: root/js/Misc/BOUNCE.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/Misc/BOUNCE.js')
-rw-r--r--js/Misc/BOUNCE.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/Misc/BOUNCE.js b/js/Misc/BOUNCE.js
index 75550541..b55e03cc 100644
--- a/js/Misc/BOUNCE.js
+++ b/js/Misc/BOUNCE.js
@@ -45,11 +45,11 @@ function BOUNCE() {
var options = {
rpar1:["Mass",this.rpar1],
rpar2:["Radius",this.rpar2],
- walls:["[xmin,xmax,ymin,ymax]",this.walls],
+ walls:["[xmin,xmax,ymin,ymax]",this.walls.toString().replace(/,/g," ")],
xt:["xpos",this.xt],
- xd:["xdpos",this.xd],
+ xd:["xdpos",this.xd.toString().replace(/,/g," ")],
y:["ypos",this.y],
- yd:["ydpos",this.yd],
+ yd:["ydpos",this.yd.toString().replace(/,/g," ")],
g:["g (gravity)",this.g],
C:["C (aerodynamic coeff",this.C],
}