(projection, size, object)
| 134078 | }, object); |
| 134079 | } |
| 134080 | function fitSize(projection, size, object) { |
| 134081 | return fitExtent(projection, [ |
| 134082 | [ |
| 134083 | 0, |
| 134084 | 0 |
| 134085 | ], |
| 134086 | size |
| 134087 | ], object); |
| 134088 | } |
| 134089 | function fitWidth(projection, width, object) { |
| 134090 | return fit(projection, function(b) { |
| 134091 | var w = +width, k = w / (b[1][0] - b[0][0]), x = (w - k * (b[1][0] + b[0][0])) / 2, y = -k * b[0][1]; |
nothing calls this directly
no test coverage detected