Made the galaxy more spirally

This commit is contained in:
VegOwOtenks 2025-03-02 12:28:46 +01:00
parent 05e2b6b6d8
commit 22614b68bf

View file

@ -14,7 +14,7 @@
#define WINDOW_SIZE 600
#define SWIRLINESS 35
#define ARM_COUNT 3
#define ARM_COUNT 2
#define STAR_COUNT 2000
#include "../submodules/utilitiec/src/Vector/Vec2DF64.h"
@ -116,7 +116,7 @@ void GenerateStars()
star->color = star_colors[color_index];
arm_distance = Galaxy_ArmDistance(
star->position.x / WINDOW_SIZE,
star->position.x / (WINDOW_SIZE * 0.75),
star->position.y / WINDOW_SIZE,
SWIRLINESS,
ARM_COUNT
@ -151,7 +151,7 @@ void SDL_RenderArms()
for (size_t y = 0; y < WINDOW_SIZE; y++) {
double norm_y = (double) y / WINDOW_SIZE;
for (size_t x = 0; x < WINDOW_SIZE; x++) {
double norm_x = (double) x / WINDOW_SIZE;
double norm_x = (double) x / (WINDOW_SIZE * 0.75);
double distance = Galaxy_ArmDistance(norm_x, norm_y, SWIRLINESS, ARM_COUNT);
uint progress = distance * 100;
SDL_Color black = { 0, 0, 0, 255 };