| 1234567891011121314151617 |
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- THREE.RenderableLine = function () {
- this.id = 0;
- this.v1 = new THREE.RenderableVertex();
- this.v2 = new THREE.RenderableVertex();
- this.vertexColors = [ new THREE.Color(), new THREE.Color() ];
- this.material = null;
- this.z = 0;
- };
|