(box, y0)
| 1215 | } |
| 1216 | |
| 1217 | function xCorners(box, y0) { |
| 1218 | return 'M' + |
| 1219 | (box.l - 0.5) + ',' + (y0 - MINZOOM - 0.5) + |
| 1220 | 'h-3v' + (2 * MINZOOM + 1) + 'h3ZM' + |
| 1221 | (box.r + 0.5) + ',' + (y0 - MINZOOM - 0.5) + |
| 1222 | 'h3v' + (2 * MINZOOM + 1) + 'h-3Z'; |
| 1223 | } |
| 1224 | |
| 1225 | function yCorners(box, x0) { |
| 1226 | return 'M' + |
no outgoing calls
no test coverage detected
searching dependent graphs…