Added the cutTreeAtLevel method

This commit is contained in:
Leonardo
2021-08-14 15:50:44 +02:00
parent 696be6f796
commit 72ba9f5699
@@ -334,7 +334,11 @@ public class LodQuadTree
*/
public void deleteChildren()
{
children = new LodQuadTree[2][2];
for (int NS = 0; NS <= 1; NS++) {
for (int WE = 0; WE <= 1; WE++) {
setChild(NS,WE,null);
}
}
}
/**