RenderableLine.js 275 B

123456789101112131415
  1. /**
  2. * @author mrdoob / http://mrdoob.com/
  3. */
  4. THREE.RenderableLine = function () {
  5. this.z = null;
  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. };
粤ICP备19079148号