Fen Dweller 8 лет назад
Родитель
Сommit
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,


Загрузка…
Отмена
Сохранить