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 | : 18.119.132.80
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 /
lights /
[ HOME SHELL ]
Name
Size
Permission
Action
AmbientLight.js
233
B
-rw-r--r--
DirectionalLight.js
703
B
-rw-r--r--
DirectionalLightShadow.js
337
B
-rw-r--r--
HemisphereLight.js
605
B
-rw-r--r--
Light.js
1.14
KB
-rw-r--r--
LightProbe.js
679
B
-rw-r--r--
LightShadow.js
2.58
KB
-rw-r--r--
PointLight.js
1
KB
-rw-r--r--
PointLightShadow.js
2.51
KB
-rw-r--r--
RectAreaLight.js
926
B
-rw-r--r--
SpotLight.js
1.33
KB
-rw-r--r--
SpotLightShadow.js
925
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : LightProbe.js
import { SphericalHarmonics3 } from '../math/SphericalHarmonics3.js'; import { Light } from './Light.js'; class LightProbe extends Light { constructor( sh = new SphericalHarmonics3(), intensity = 1 ) { super( undefined, intensity ); this.isLightProbe = true; this.sh = sh; } copy( source ) { super.copy( source ); this.sh.copy( source.sh ); return this; } fromJSON( json ) { this.intensity = json.intensity; // TODO: Move this bit to Light.fromJSON(); this.sh.fromArray( json.sh ); return this; } toJSON( meta ) { const data = super.toJSON( meta ); data.object.sh = this.sh.toArray(); return data; } } export { LightProbe };
Close