A 3D WebGL line plot
var createScene = require('gl-plot3d')
var createLine  = require('gl-line3d')
//Create the scene
var scene = createScene()
//Create a helix
var polyline = []
for(var i=0; i<100; ++i) {
  var theta = (i / 100.0) * Math.PI
  polyline.push([
      Math.cos(3*theta),
      Math.sin(3*theta),
      (i/50) - 1.0
    ])
}
//Create the line plot
var lines = createLines({
  gl:       scene.gl,
  position: polyline,
  color:    [1,0,0]
})
//Add the lines to the scene
scene.add(lines)npm install gl-line3d
Creates a new line plot
options.glA WebGL contextoptions.positionAn array of position values for the points on the curveoptions.colorAn array of color values (or a singular color) for the curveoptions.pickIdThe selection ID for the line plotoptions.lineWidthThe width of the lineoptions.dashesAn array of dash patterns representing the dash pattern. For example,[0.5,0.5,0.5]options.dashScaleThe number of times to repeat the dash patternoptions.opacityThe opacity of the lines
Updates the plot.  options has the same properties as in the constructor
The width of the lines
To run it, follow these steps:
git clone https://github.com/gl-vis/gl-line3d.git
cd gl-line3d
mkdir dist
browserify lines.js -o dist/bundle.js
browserify example/simple.js -o dist/simple_example_bundle.js
then open simple.html in the example directory.
(c) 2014 Mikola Lysenko. MIT License