use of com.irtimaled.bbor.client.models.BoundingBoxLine in project BoundingBoxOutlineReloaded by irtimaled.
the class CustomLineProvider method add.
public static void add(Point minPoint, Point maxPoint, Double width) {
DimensionId dimensionId = Player.getDimensionId();
int cacheKey = getHashKey(minPoint, maxPoint);
BoundingBoxLine line = BoundingBoxLine.from(minPoint, maxPoint, width, BoundingBoxType.Custom);
getCache(dimensionId).put(cacheKey, line);
}
Aggregations