use of com.irtimaled.bbor.client.models.BoundingBoxSphere in project BoundingBoxOutlineReloaded by irtimaled.
the class CustomSphereProvider method add.
public static void add(Point center, double radius) {
DimensionId dimensionId = Player.getDimensionId();
int cacheKey = center.hashCode();
BoundingBoxSphere sphere = new BoundingBoxSphere(center, radius, BoundingBoxType.Custom);
getCache(dimensionId).put(cacheKey, sphere);
}
Aggregations