(a, b)
| 4658 | return "translate(" + this.translate + ")rotate(" + this.rotate + ")skewX(" + this.skew + ")scale(" + this.scale + ")"; |
| 4659 | }; |
| 4660 | function d3_transformDot(a, b) { |
| 4661 | return a[0] * b[0] + a[1] * b[1]; |
| 4662 | } |
| 4663 | function d3_transformNormalize(a) { |
| 4664 | var k = Math.sqrt(d3_transformDot(a, a)); |
| 4665 | if (k) { |
no outgoing calls
no test coverage detected