1
0
포크 0

Make pedal attachment circle slightly bigger.

This commit is contained in:
Starbeamrainbowlabs 2016-06-13 14:43:21 +01:00
부모 e0c676280e
커밋 81478f5e06
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -98,7 +98,7 @@ class Bicycle
// Pedal attachment circle
context.beginPath();
context.ellipse(0, 0, this.gearWheelSize * 0.2, this.gearWheelSize * 0.2, 0, 0, Math.PI * 2, false);
context.ellipse(0, 0, this.gearWheelSize * 0.3, this.gearWheelSize * 0.3, 0, 0, Math.PI * 2, false);
context.lineWidth = 2;
context.strokeStyle = this.wheelLeft.spokeColour;
context.stroke();