protected isHit(
context: IInputModeContext,
location: Point,
edge: IEdge
): boolean {
const thickness = this.distance + 2
const edgePath = super.getPath(edge)!
return edgePath.pathContains(
location,
context.hitTestRadius + thickness * 0.5
)
}