RenderableLine.js 288 B

1234567891011121314151617
  1. /**
  2. * @author mrdoob / http://mrdoob.com/
  3. */
  4. THREE.RenderableLine = function () {
  5. this.id = 0;
  6. this.v1 = new THREE.RenderableVertex();
  7. this.v2 = new THREE.RenderableVertex();
  8. this.vertexColors = [ new THREE.Color(), new THREE.Color() ];
  9. this.material = null;
  10. this.z = 0;
  11. };