MCPcopy Create free account
hub / github.com/idank/explainshell / d3_geo_streamLine

Function d3_geo_streamLine

explainshell/web/static/js/d3.v3.js:2056–2061  ·  view source on GitHub ↗
(coordinates, listener, closed)

Source from the content-addressed store, hash-verified

2054 }
2055 };
2056 function d3_geo_streamLine(coordinates, listener, closed) {
2057 var i = -1, n = coordinates.length - closed, coordinate;
2058 listener.lineStart();
2059 while (++i < n) coordinate = coordinates[i], listener.point(coordinate[0], coordinate[1]);
2060 listener.lineEnd();
2061 }
2062 function d3_geo_streamPolygon(coordinates, listener) {
2063 var i = -1, n = coordinates.length;
2064 listener.polygonStart();

Callers 2

d3.v3.jsFile · 0.85
d3_geo_streamPolygonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected