(coordinates, stream, closed)
| 9893 | }; |
| 9894 | |
| 9895 | function streamLine(coordinates, stream, closed) { |
| 9896 | var i = -1, n = coordinates.length - closed, coordinate; |
| 9897 | stream.lineStart(); |
| 9898 | while (++i < n) coordinate = coordinates[i], stream.point(coordinate[0], coordinate[1], coordinate[2]); |
| 9899 | stream.lineEnd(); |
| 9900 | } |
| 9901 | |
| 9902 | function streamPolygon(coordinates, stream) { |
| 9903 | var i = -1, n = coordinates.length; |
no test coverage detected