(subplot, a)
| 19 | } |
| 20 | |
| 21 | function transform(subplot, a) { |
| 22 | var x = a[0]; |
| 23 | var y = a[1]; |
| 24 | |
| 25 | return [ |
| 26 | x * subplot.radius + subplot.cx, |
| 27 | -y * subplot.radius + subplot.cy |
| 28 | ]; |
| 29 | } |
| 30 | |
| 31 | function scale(subplot, r) { |
| 32 | return r * subplot.radius; |
no outgoing calls
no test coverage detected
searching dependent graphs…