/** * @author mr.doob / http://mrdoob.com/ */ THREE.RenderableParticle = function () { this.x = null; this.y = null; this.z = null; this.rotation = null; this.scale = new THREE.Vector2(); this.materials = null; };