mirror of
https://github.com/wahyd4/three.js.git
synced 2026-08-09 04:56:01 +10:00
Do not use for anything, this is just snapshot of a test in progress. I solved quite a few issues, but many things are still clumsy and broken.
16 lines
295 B
JavaScript
16 lines
295 B
JavaScript
/**
|
|
* @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;
|