mirror of
https://github.com/funkemunky/KauriV3.git
synced 2026-07-01 02:08:27 +00:00
Adding neo
This commit is contained in:
@@ -313,6 +313,10 @@ public class AxisAlignedBB {
|
||||
return vec3d != null && (vec3d.x >= this.minX && vec3d.x <= this.maxX && vec3d.y >= this.minY && vec3d.y <= this.maxY);
|
||||
}
|
||||
|
||||
public me.hydro.emulator.util.mcp.AxisAlignedBB toNeo() {
|
||||
return new me.hydro.emulator.util.mcp.AxisAlignedBB(minX, minY, minZ, maxX, maxY, maxZ);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "box[" + this.minX + ", " + this.minY + ", " + this.minZ + " -> " + this.maxX + ", " + this.maxY + ", " + this.maxZ + "]";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user