| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * @author mrdoob / http://mrdoob.com/
- *
- * parameters = {
- * opacity: <float>,
- *
- * shading: THREE.FlatShading,
- * blending: THREE.NormalBlending,
- * depthTest: <bool>,
- * depthWrite: <bool>,
- *
- * wireframe: <boolean>,
- * wireframeLinewidth: <float>
- * }
- */
- THREE.MeshNormalMaterial = function ( parameters ) {
- THREE.Material.call( this, parameters );
- this.shading = THREE.FlatShading;
- this.wireframe = false;
- this.wireframeLinewidth = 1;
- this.morphTargets = false;
- this.setValues( parameters );
- };
- THREE.MeshNormalMaterial.prototype = Object.create( THREE.Material.prototype );
- THREE.MeshNormalMaterial.prototype.clone = function () {
- var material = new THREE.MeshNormalMaterial();
- THREE.Material.prototype.clone.call( this, material );
- material.shading = this.shading;
- material.wireframe = this.wireframe;
- material.wireframeLinewidth = this.wireframeLinewidth;
- return material;
- };
|