(v)
| 207 | |
| 208 | // to more easily catch 'almost zero' numbers in if-else blocks |
| 209 | function clampTiny(v) { |
| 210 | return Math.abs(v) > 1e-10 ? v : 0; |
| 211 | } |
| 212 | |
| 213 | function transformForSVG(pts0, cx, cy) { |
| 214 | cx = cx || 0; |
no outgoing calls
no test coverage detected
searching dependent graphs…