(target, source)
| 1787 | } |
| 1788 | |
| 1789 | function copyTransformAttrs(target, source) { |
| 1790 | target.x = source.x; |
| 1791 | target.y = source.y; |
| 1792 | target.rotation = source.rotation; |
| 1793 | target.scaleX = source.scaleX; |
| 1794 | target.scaleY = source.scaleY; |
| 1795 | target.originX = source.originX; |
| 1796 | target.originY = source.originY; |
| 1797 | target.skewX = source.skewX; |
| 1798 | target.skewY = source.skewY; |
| 1799 | target.anchorX = source.anchorX; |
| 1800 | target.anchorY = source.anchorY; |
| 1801 | } |
| 1802 | } |
| 1803 | } |
| 1804 |
no outgoing calls
no test coverage detected
searching dependent graphs…