소스 검색

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,


불러오는 중...
취소
저장