(point)
| 12273 | } |
| 12274 | |
| 12275 | function invert(point) { |
| 12276 | point = projectRotateTransform.invert(point[0], point[1]); |
| 12277 | return point && [point[0] * degrees, point[1] * degrees]; |
| 12278 | } |
| 12279 | |
| 12280 | projection.stream = function(stream) { |
| 12281 | return cache && cacheStream === stream ? cache : cache = transformRadians(transformRotate(rotate)(preclip(projectResample(postclip(cacheStream = stream))))); |