()
| 76 | } |
| 77 | |
| 78 | function createIdentityMatrix () |
| 79 | { |
| 80 | return { |
| 81 | scaleX: 1, |
| 82 | scaleY: 1, |
| 83 | transformPoint: function (x, y, point) |
| 84 | { |
| 85 | point.x = x; |
| 86 | point.y = y; |
| 87 | return point; |
| 88 | } |
| 89 | }; |
| 90 | } |
| 91 | |
| 92 | function createFullMockEmitter () |
| 93 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…