This commit is contained in:
2023-10-27 20:38:55 -05:00
parent d7c7491746
commit c63c5e6896
3 changed files with 8 additions and 7 deletions
+3 -3
View File
@@ -47,10 +47,10 @@ public class MeshBounds {
Bounds.meshBoundsCache = DbManager.BuildingQueries.LOAD_MESH_BOUNDS();
}
public Area getArea(){
public Area getArea(float x, float z){
Polygon area = new Polygon();
area.addPoint((int) this.minX, (int) this.minZ);
area.addPoint((int) this.maxX, (int) this.maxZ);
area.addPoint((int)(x + this.minX), (int) (z + this.minZ));
area.addPoint((int)(x + this.maxX), (int)(z + this.maxZ));
return new Area(area);
}
}