(r)
| 8883 | |
| 8884 | // Bounds on a rational number when rounded to a float |
| 8885 | function boundRat (r) { |
| 8886 | var f = ratToFloat(r) |
| 8887 | return [ |
| 8888 | nextafter(f, -Infinity), |
| 8889 | nextafter(f, Infinity) |
| 8890 | ] |
| 8891 | } |
| 8892 | |
| 8893 | // Convert a list of edges in a pslg to bounding boxes |
| 8894 | function boundEdges (points, edges) { |
no test coverage detected
searching dependent graphs…