From ac74224279e1cc47b7270f6dc6b047bdeeacea4e Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Thu, 19 Aug 2021 23:55:43 -0700 Subject: [PATCH] Aligning skywall slightly. --- src/display/primitives/skywall.c | 1 - src/display/primitives/skywall.h | 2 +- src/vn/vnscene.c | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/display/primitives/skywall.c b/src/display/primitives/skywall.c index 5abfdf67..fc950de0 100644 --- a/src/display/primitives/skywall.c +++ b/src/display/primitives/skywall.c @@ -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++) { diff --git a/src/display/primitives/skywall.h b/src/display/primitives/skywall.h index 2818935b..cf536f45 100644 --- a/src/display/primitives/skywall.h +++ b/src/display/primitives/skywall.h @@ -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 diff --git a/src/vn/vnscene.c b/src/vn/vnscene.c index dbe2ff64..50dbd74b 100644 --- a/src/vn/vnscene.c +++ b/src/vn/vnscene.c @@ -42,7 +42,7 @@ void vnSceneRenderWorld(vnscene_t *scene, engine_t *engine, shader_t *shader) { ); // Set Camera Perspective - cameraPerspective(&scene->camera, 35, + cameraPerspective(&scene->camera, 45, engine->render.width/engine->render.height, 0.01, 1000.0 );