Fix incorrect comment in DhSectionPos

This commit is contained in:
James Seibel
2024-08-01 06:52:05 -05:00
parent 0c36dc03a5
commit 116d7f4a3f
@@ -34,11 +34,11 @@ import java.util.function.LongConsumer;
* For the specifics of how they compare can be viewed in the constants {@link #SECTION_BLOCK_DETAIL_LEVEL},
* {@link #SECTION_CHUNK_DETAIL_LEVEL}, and {@link #SECTION_REGION_DETAIL_LEVEL}).<br><br>
*
* <strong>Why does the smallest render section represent 2x2 MC chunks (section detail level 6)? </strong> <br>
* <strong>Why does the smallest render section represent 4x4 MC chunks (section detail level 6)? </strong> <br>
* A section defines what unit the quad tree works in, because of that we don't want that unit to be too big or too small. <br>
* <strong>Too small</strong>, and we'll have 1,000s of sections running around, all needing individual files and render buffers.<br>
* <strong>Too big</strong>, and the LOD dropoff will be very noticeable.<br>
* With those thoughts in mind we decided on a smallest section size of 32 data points square (IE 2x2 chunks).
* With those thoughts in mind we decided on a smallest section size of 64 data points square (IE 4x4 chunks).
*
* @author Leetom
*/