| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /**
- * @author mrdoob / http://mrdoob.com/
- * @author alteredq / http://alteredqualia.com/
- *
- * parameters = {
- * color: <hex>,
- * opacity: <float>,
- * map: new THREE.Texture( <Image> ),
- *
- * size: <float>,
- * sizeAttenuation: <bool>,
- *
- * blending: THREE.NormalBlending,
- * depthTest: <bool>,
- * depthWrite: <bool>,
- *
- * vertexColors: <bool>,
- *
- * fog: <bool>
- * }
- */
- THREE.PointsMaterial = function ( parameters ) {
- THREE.Material.call( this );
- this.type = 'PointsMaterial';
- this.color = new THREE.Color( 0xffffff );
- this.map = null;
- this.size = 1;
- this.sizeAttenuation = true;
- this.vertexColors = THREE.NoColors;
- this.fog = true;
- this.setValues( parameters );
- };
- THREE.PointsMaterial.prototype = Object.create( THREE.Material.prototype );
- THREE.PointsMaterial.prototype.constructor = THREE.PointsMaterial;
- THREE.PointsMaterial.prototype.copy = function ( source ) {
- THREE.Material.prototype.copy.call( this, source );
- this.color.copy( source.color );
- this.map = source.map;
- this.size = source.size;
- this.sizeAttenuation = source.sizeAttenuation;
- this.vertexColors = source.vertexColors;
- this.fog = source.fog;
- return this;
- };
- // backwards compatibility
- THREE.PointCloudMaterial = function ( parameters ) {
- console.warn( 'THREE.PointCloudMaterial has been renamed to THREE.PointsMaterial.' );
- return new THREE.PointsMaterial( parameters );
- };
- THREE.ParticleBasicMaterial = function ( parameters ) {
- console.warn( 'THREE.ParticleBasicMaterial has been renamed to THREE.PointsMaterial.' );
- return new THREE.PointsMaterial( parameters );
- };
- THREE.ParticleSystemMaterial = function ( parameters ) {
- console.warn( 'THREE.ParticleSystemMaterial has been renamed to THREE.PointsMaterial.' );
- return new THREE.PointsMaterial( parameters );
- };
|