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.
10 lines
196 B
Markdown
10 lines
196 B
Markdown
5 years ago
|
# Raymarching in C
|
||
|
|
||
|
## Compiling:
|
||
|
|
||
|
```fish
|
||
|
# load requirements
|
||
|
nix-shell
|
||
|
# run gcc with flags
|
||
|
gcc (pkg-config --cflags --libs gtk+-3.0 | string split " ") -lm -Wall -Wextra -o march.out main.c
|
||
|
```
|