/** * @author mr.doob / http://mrdoob.com/ */ THREE.RenderableLine = function () { this.z = null; this.v1 = new THREE.Vertex(); this.v2 = new THREE.Vertex(); this.materials = null; };