Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
cqt /
node_modules /
d3-shape /
src /
curve /
[ HOME SHELL ]
Name
Size
Permission
Action
basis.js
1.41
KB
-rw-r--r--
basisClosed.js
1.5
KB
-rw-r--r--
basisOpen.js
1.05
KB
-rw-r--r--
bump.js
1.71
KB
-rw-r--r--
bundle.js
1.06
KB
-rw-r--r--
cardinal.js
1.6
KB
-rw-r--r--
cardinalClosed.js
1.57
KB
-rw-r--r--
cardinalOpen.js
1.27
KB
-rw-r--r--
catmullRom.js
2.59
KB
-rw-r--r--
catmullRomClosed.js
2.04
KB
-rw-r--r--
catmullRomOpen.js
1.73
KB
-rw-r--r--
linear.js
744
B
-rw-r--r--
linearClosed.js
517
B
-rw-r--r--
monotone.js
3.13
KB
-rw-r--r--
natural.js
1.72
KB
-rw-r--r--
radial.js
658
B
-rw-r--r--
step.js
1.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bump.js
import pointRadial from "../pointRadial.js"; class Bump { constructor(context, x) { this._context = context; this._x = x; } areaStart() { this._line = 0; } areaEnd() { this._line = NaN; } lineStart() { this._point = 0; } lineEnd() { if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath(); this._line = 1 - this._line; } point(x, y) { x = +x, y = +y; switch (this._point) { case 0: { this._point = 1; if (this._line) this._context.lineTo(x, y); else this._context.moveTo(x, y); break; } case 1: this._point = 2; // falls through default: { if (this._x) this._context.bezierCurveTo(this._x0 = (this._x0 + x) / 2, this._y0, this._x0, y, x, y); else this._context.bezierCurveTo(this._x0, this._y0 = (this._y0 + y) / 2, x, this._y0, x, y); break; } } this._x0 = x, this._y0 = y; } } class BumpRadial { constructor(context) { this._context = context; } lineStart() { this._point = 0; } lineEnd() {} point(x, y) { x = +x, y = +y; if (this._point === 0) { this._point = 1; } else { const p0 = pointRadial(this._x0, this._y0); const p1 = pointRadial(this._x0, this._y0 = (this._y0 + y) / 2); const p2 = pointRadial(x, this._y0); const p3 = pointRadial(x, y); this._context.moveTo(...p0); this._context.bezierCurveTo(...p1, ...p2, ...p3); } this._x0 = x, this._y0 = y; } } export function bumpX(context) { return new Bump(context, true); } export function bumpY(context) { return new Bump(context, false); } export function bumpRadial(context) { return new BumpRadial(context); }
Close