(item: SvgItem, subpathOnly?: boolean)
| 381 | } |
| 382 | |
| 383 | useAsOrigin(item: SvgItem, subpathOnly?: boolean) { |
| 384 | const idx = this.parsedPath.path.indexOf(item); |
| 385 | changePathOrigin(this.parsedPath, idx, subpathOnly); |
| 386 | this.afterModelChange(); |
| 387 | this.focusedItem = null; |
| 388 | } |
| 389 | |
| 390 | reverseSubPath(item: SvgItem) { |
| 391 | const idx = this.parsedPath.path.indexOf(item); |
nothing calls this directly
no test coverage detected