(props: SVGProps)
| 114 | private lastTweenTargetDocument: SVGDocument | null = null; |
| 115 | |
| 116 | public constructor(props: SVGProps) { |
| 117 | super(props); |
| 118 | this.wrapper = new Node({}); |
| 119 | this.wrapper.children(this.documentNodes); |
| 120 | this.wrapper.scale(this.wrapperScale); |
| 121 | this.add(this.wrapper); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Get all SVG nodes with the given id. |