This commit is contained in:
onezplpl 2024-07-15 00:55:34 -04:00
parent 887dfbe5c4
commit 5ff44a7335
No known key found for this signature in database
GPG key ID: 7EC026A136F9EEC3
5 changed files with 115 additions and 39 deletions

View file

@ -15,8 +15,8 @@ typedef struct Vertex2 {
} Vertex2;
#define CHUNK_LENGTH 16
#define CHUNK_RADIUS_H 5 // 8
#define CHUNK_RADIUS_V 5 // 4
#define CHUNK_RADIUS_H 4 // 8
#define CHUNK_RADIUS_V 4 // 4
#define TEXT_GAP_H 1 / 3.0
#define TEXT_GAP_V 1 / 1.0
@ -26,7 +26,7 @@ typedef struct Vertex2 {
#define CHUNK_ALL CHUNK_DIAMETER_H *CHUNK_DIAMETER_H *CHUNK_DIAMETER_V
#define BLOCK_ALL CHUNK_LENGTH *CHUNK_LENGTH *CHUNK_LENGTH
#define CBLOCK_ALL BLOCK_ALL *CHUNK_ALL
#define CBUF_ALL 25
#define CBUF_ALL 2
#define CTRI_ALL CBLOCK_ALL * 18 * sizeof(Vertex)