* The percentage of the curve that's currently visible. * * @remarks * The returned value is the ratio between the visible length (as defined by * start and end) and the offset length of the curve.
()
| 246 | * {@link start} and {@link end}) and the offset length of the curve. |
| 247 | */ |
| 248 | public completion(): number { |
| 249 | return Math.abs(this.start() - this.end()); |
| 250 | } |
| 251 | |
| 252 | protected processSubpath( |
| 253 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |