A tiny software raymarcher that attempts to render "n-dimension" manofold insertions as an image appearing to be a non-euclidean 3-dimensional space. Written for the uqcs hackathon 2020. This repo is a mirror of: https://github.com/ailrst/blackpink
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
184 B

LINKS = -lSDL2 -lm -Wall
all: colours.o
gcc main.c $(LINKS) colours.o -o blackpink
colours.o: colours.c colours.h
gcc $(LINKS) -c colours.c -o colours.o
clean:
rm *.o blackpink