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.
 
 

14 lines
204 B

#ifndef SCENE_H
#define SCENE_H
#include <stdio.h>
#include <stdlib.h>
#include "types.h"
#include "camera.h"
extern struct scene_objects scene;
struct object * new_scene(int, struct object*);
#endif