minor comment updating in LodQuadTree

This commit is contained in:
James Seibel
2023-02-04 22:22:48 -06:00
parent c94cf2a6ec
commit f44230df40
@@ -34,19 +34,21 @@ public class LodQuadTree implements AutoCloseable
private static final byte TREE_LOWEST_DETAIL_LEVEL = ColumnRenderSource.SECTION_SIZE_OFFSET;
private static final boolean SUPER_VERBOSE_LOGGING = false;
private static final Logger LOGGER = DhLoggerBuilder.getLogger();
public final byte getLayerDataDetailOffset() { return ColumnRenderSource.SECTION_SIZE_OFFSET; }
public final byte getLayerDataDetailOffset() { return ColumnRenderSource.SECTION_SIZE_OFFSET; }
public final byte getLayerDataDetail(byte sectionDetailLevel) { return (byte) (sectionDetailLevel - this.getLayerDataDetailOffset()); }
public final byte getLayerSectionDetailOffset() { return ColumnRenderSource.SECTION_SIZE_OFFSET; }
public final byte getLayerSectionDetail(byte dataDetail) { return (byte) (dataDetail + this.getLayerSectionDetailOffset()); }
private static final Logger LOGGER = DhLoggerBuilder.getLogger();
/** AKA number of section layers? - TODO James */
/** AKA how many detail levels are in this quad tree, adding this to the {@link LodQuadTree#TREE_LOWEST_DETAIL_LEVEL} is equivalent to the maximum detail level in this tree */
public final byte numbersOfSectionDetailLevels;
private final MovableGridRingList<LodRenderSection>[] renderSectionRingLists;
public final int blockViewDistance;
private final ILodRenderSourceProvider renderSourceProvider;