Aligning skywall slightly.

This commit is contained in:
2021-08-19 23:55:43 -07:00
parent 9a577cdf4f
commit ac74224279
3 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,6 @@ void skywallInit(primitive_t *primitive) {
indice_t indices[SKYWALL_INDICE_COUNT];
int32_t n, i, j;
float x, z, p, r;
int32_t slices;
// For each slice. We iterate slices+1 to do the wrapping mentioned below.
for(i = 0; i < SKYWALL_SLICE_COUNT+1; i++) {

View File

@ -8,7 +8,7 @@
#include "../primitive.h"
/** How many slices in each cylinder. */
#define SKYWALL_SLICE_COUNT 20
#define SKYWALL_SLICE_COUNT 40
/** How many vertices per slice */
#define SKYWALL_VERTICES_PER_SLICE 2