public AABB(Vec3 min, Vec3 max) { this.min = min; this.max = max; }
public PlaneCollider(Entity self, Vec3 normal, double d) { this.self = self; this.normal = normal; this.d = d; }