123456789101112131415 |
- /**
- * @author alteredq / http://alteredqualia.com/
- */
- THREE.Ribbon = function ( geometry, materials ) {
- THREE.Object3D.call( this );
- this.geometry = geometry;
- this.materials = materials instanceof Array ? materials : [ materials ];
- };
- THREE.Ribbon.prototype = new THREE.Object3D();
- THREE.Ribbon.prototype.constructor = THREE.Ribbon;
|