Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.147.6.58
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
HRD-Test /
src /
materials /
[ HOME SHELL ]
Name
Size
Permission
Action
LineBasicMaterial.js
727
B
-rw-r--r--
LineDashedMaterial.js
524
B
-rw-r--r--
Material.js
14.4
KB
-rw-r--r--
Materials.js
1.39
KB
-rw-r--r--
MeshBasicMaterial.js
1.57
KB
-rw-r--r--
MeshDepthMaterial.js
977
B
-rw-r--r--
MeshDistanceMaterial.js
699
B
-rw-r--r--
MeshLambertMaterial.js
2.54
KB
-rw-r--r--
MeshMatcapMaterial.js
1.49
KB
-rw-r--r--
MeshNormalMaterial.js
1.24
KB
-rw-r--r--
MeshPhongMaterial.js
2.67
KB
-rw-r--r--
MeshPhysicalMaterial.js
4.22
KB
-rw-r--r--
MeshStandardMaterial.js
2.66
KB
-rw-r--r--
MeshToonMaterial.js
2.2
KB
-rw-r--r--
PointsMaterial.js
719
B
-rw-r--r--
RawShaderMaterial.js
268
B
-rw-r--r--
ShaderMaterial.js
3.91
KB
-rw-r--r--
ShadowMaterial.js
513
B
-rw-r--r--
SpriteMaterial.js
761
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MeshLambertMaterial.js
import { MultiplyOperation, TangentSpaceNormalMap } from '../constants.js'; import { Material } from './Material.js'; import { Vector2 } from '../math/Vector2.js'; import { Color } from '../math/Color.js'; class MeshLambertMaterial extends Material { constructor( parameters ) { super(); this.isMeshLambertMaterial = true; this.type = 'MeshLambertMaterial'; this.color = new Color( 0xffffff ); // diffuse this.map = null; this.lightMap = null; this.lightMapIntensity = 1.0; this.aoMap = null; this.aoMapIntensity = 1.0; this.emissive = new Color( 0x000000 ); this.emissiveIntensity = 1.0; this.emissiveMap = null; this.bumpMap = null; this.bumpScale = 1; this.normalMap = null; this.normalMapType = TangentSpaceNormalMap; this.normalScale = new Vector2( 1, 1 ); this.displacementMap = null; this.displacementScale = 1; this.displacementBias = 0; this.specularMap = null; this.alphaMap = null; this.envMap = null; this.combine = MultiplyOperation; this.reflectivity = 1; this.refractionRatio = 0.98; this.wireframe = false; this.wireframeLinewidth = 1; this.wireframeLinecap = 'round'; this.wireframeLinejoin = 'round'; this.flatShading = false; this.fog = true; this.setValues( parameters ); } copy( source ) { super.copy( source ); this.color.copy( source.color ); this.map = source.map; this.lightMap = source.lightMap; this.lightMapIntensity = source.lightMapIntensity; this.aoMap = source.aoMap; this.aoMapIntensity = source.aoMapIntensity; this.emissive.copy( source.emissive ); this.emissiveMap = source.emissiveMap; this.emissiveIntensity = source.emissiveIntensity; this.bumpMap = source.bumpMap; this.bumpScale = source.bumpScale; this.normalMap = source.normalMap; this.normalMapType = source.normalMapType; this.normalScale.copy( source.normalScale ); this.displacementMap = source.displacementMap; this.displacementScale = source.displacementScale; this.displacementBias = source.displacementBias; this.specularMap = source.specularMap; this.alphaMap = source.alphaMap; this.envMap = source.envMap; this.combine = source.combine; this.reflectivity = source.reflectivity; this.refractionRatio = source.refractionRatio; this.wireframe = source.wireframe; this.wireframeLinewidth = source.wireframeLinewidth; this.wireframeLinecap = source.wireframeLinecap; this.wireframeLinejoin = source.wireframeLinejoin; this.flatShading = source.flatShading; this.fog = source.fog; return this; } } export { MeshLambertMaterial };
Close