瀏覽代碼

Fixed dick volume

tags/v0.7.0
Fen Dweller 8 年之前
父節點
當前提交
0525aaa961
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. +3
    -3
      game.js

+ 3
- 3
game.js 查看文件

@@ -125,13 +125,13 @@ let macro =
return Math.pow((this.dickDiameter/ 2),2) * Math.PI;
},
get dickArea() {
return this.dickLength* this.dickDiameter* Math.PI / 2;
return this.dickLength * this.dickDiameter* Math.PI / 2;
},
get dickVolume() {
return this.dickLength* Math.pow(this.dickDiameter2,2) * Math.PI;
return this.dickLength * Math.pow(this.dickDiameter,2) * Math.PI;
},
get dickMass() {
return this.dickVolume* this.dickDensity;
return this.dickVolume * this.dickDensity;
},
"baseBallDiameter": 0.05,
"ballDensity": 1000,


Loading…
取消
儲存