()
| 675 | |
| 676 | |
| 677 | refreshAbsolutePositions() { |
| 678 | let previous: SvgItem | null = null; |
| 679 | let origin = new Point(0, 0); |
| 680 | for (const item of this.path) { |
| 681 | item.refresh(origin, previous); |
| 682 | |
| 683 | if (item instanceof MoveTo || item instanceof ClosePath) { |
| 684 | origin = item.targetLocation(); |
| 685 | } |
| 686 | previous = item; |
| 687 | } |
| 688 | } |
| 689 | } |
no outgoing calls
no test coverage detected