This commit is contained in:
Mike Bostock 2012-12-15 13:02:08 -08:00
Родитель 392ee52827
Коммит 9cc79b4aff
3 изменённых файлов: 0 добавлений и 21 удалений

Просмотреть файл

@ -1,5 +0,0 @@
function d3_geo_streamRadians(stream) {
return d3_geo_streamTransform(stream, function(x, y) {
stream.point(x * d3_radians, y * d3_radians);
});
}

Просмотреть файл

@ -1,6 +0,0 @@
function d3_geo_streamRotate(rotate, stream) {
return d3_geo_streamTransform(stream, function(x, y) {
x = rotate(x, y);
stream.point(x[0], x[1]);
});
}

Просмотреть файл

@ -1,10 +0,0 @@
function d3_geo_streamTransform(stream, point) {
return {
point: point,
sphere: stream.sphere,
lineStart: stream.lineStart,
lineEnd: stream.lineEnd,
polygonStart: stream.polygonStart,
polygonEnd: stream.polygonEnd
};
}