function drawCircle(point: Vector, radius: number) { this.context.beginPath(); this.context.arc(point.x, point.y, radius, 0, Math.PI * 2); this.context.fill(); this.context.stroke(); }