- /**
- * @author alteredq / http://alteredqualia.com/
- */
- THREE.Ribbon = function ( geometry, material ) {
- THREE.Object3D.call( this );
- this.geometry = geometry;
- this.material = material;
- };
- THREE.Ribbon.prototype = new THREE.Object3D();
- THREE.Ribbon.prototype.constructor = THREE.Ribbon;
|