You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
438 B
Markdown
22 lines
438 B
Markdown
# Raymarching in C
|
|
|
|
Visit the website at [renders.datenvorr.at](https://renders.datenvorr.at)
|
|
|
|
![infinite spheres](renders/mandelbulb-pow3.png)
|
|
|
|
## Compiling:
|
|
in fish:
|
|
```fish
|
|
# load requirements
|
|
nix-shell --run fish
|
|
# run gcc with flags
|
|
gcc (pkg-config --cflags --libs gtk+-3.0 | string split " ") -lm -Wall -Wextra -o march.out main.c
|
|
```
|
|
|
|
## Running
|
|
|
|
give it the number of threads you want to use
|
|
```bash
|
|
./march.out <num threads>
|
|
```
|