Files
three.js/src/objects/Particle.js
T
Mr.doob e98397cb5a + Added Line Object
+ Workaround for WebKit not supporting rgba() in SVG yet
+ Aesthetic changes on the readme file
2010-06-05 20:07:04 +01:00

14 lines
251 B
JavaScript

/**
* @author mr.doob / http://mrdoob.com/
*/
THREE.Particle = function (material) {
THREE.Object3D.call(this, material);
this.size = 1;
}
THREE.Particle.prototype = new THREE.Object3D();
THREE.Particle.prototype.constructor = THREE.Particle;