This commit is contained in:
Mike Bostock 2017-02-28 12:19:34 -08:00
Родитель fb47694c52
Коммит eadbaf3c1d
2 изменённых файлов: 15 добавлений и 13 удалений

2
API.md
Просмотреть файл

@ -71,6 +71,7 @@ Methods for searching arrays for a specific element.
Methods for transforming arrays and for generating new arrays.
* [d3.cross](https://github.com/d3/d3-array/blob/master/README.md#cross) - compute the Cartesian product of two arrays.
* [d3.merge](https://github.com/d3/d3-array/blob/master/README.md#merge) - merge multiple arrays into one array.
* [d3.pairs](https://github.com/d3/d3-array/blob/master/README.md#pairs) - create an array of adjacent pairs of elements.
* [d3.permute](https://github.com/d3/d3-array/blob/master/README.md#permute) - reorder an array of elements according to an array of indexes.
@ -429,6 +430,7 @@ Geographic projections, shapes and math.
* [d3.geoArea](https://github.com/d3/d3-geo/blob/master/README.md#geoArea) - compute the spherical area of a given feature.
* [d3.geoBounds](https://github.com/d3/d3-geo/blob/master/README.md#geoBounds) - compute the latitude-longitude bounding box for a given feature.
* [d3.geoCentroid](https://github.com/d3/d3-geo/blob/master/README.md#geoCentroid) - compute the spherical centroid of a given feature.
* [d3.geoContains](https://github.com/d3/d3-geo/blob/master/README.md#geoContains) - test whether a point is inside a given feature.
* [d3.geoDistance](https://github.com/d3/d3-geo/blob/master/README.md#geoDistance) - compute the great-arc distance between two points.
* [d3.geoLength](https://github.com/d3/d3-geo/blob/master/README.md#geoLength) - compute the length of a line string or the perimeter of a polygon.
* [d3.geoInterpolate](https://github.com/d3/d3-geo/blob/master/README.md#geoInterpolate) - interpolate between two points along a great arc.

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

@ -40,35 +40,35 @@
"uglify-js": "2"
},
"dependencies": {
"d3-array": "1.0.2",
"d3-axis": "1.0.4",
"d3-array": "1.1.0",
"d3-axis": "1.0.5",
"d3-brush": "1.0.3",
"d3-chord": "1.0.3",
"d3-collection": "1.0.2",
"d3-color": "1.0.2",
"d3-dispatch": "1.0.2",
"d3-drag": "1.0.2",
"d3-drag": "1.0.3",
"d3-dsv": "1.0.3",
"d3-ease": "1.0.2",
"d3-force": "1.0.4",
"d3-format": "1.0.2",
"d3-geo": "1.5.0",
"d3-force": "1.0.5",
"d3-format": "1.1.0",
"d3-geo": "1.6.0",
"d3-hierarchy": "1.1.2",
"d3-interpolate": "1.1.3",
"d3-path": "1.0.3",
"d3-polygon": "1.0.2",
"d3-quadtree": "1.0.2",
"d3-queue": "3.0.3",
"d3-queue": "3.0.4",
"d3-random": "1.0.2",
"d3-request": "1.0.3",
"d3-request": "1.0.4",
"d3-scale": "1.0.4",
"d3-selection": "1.0.3",
"d3-shape": "1.0.4",
"d3-time": "1.0.4",
"d3-time-format": "2.0.3",
"d3-selection": "1.0.4",
"d3-shape": "1.0.5",
"d3-time": "1.0.5",
"d3-time-format": "2.0.4",
"d3-timer": "1.0.4",
"d3-transition": "1.0.3",
"d3-voronoi": "1.1.1",
"d3-zoom": "1.1.1"
"d3-zoom": "1.1.2"
}
}