This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > You'll really have to explain what you are up to, because it's been months we see experiments of yours | |
| > doing ??? arithmetic, but we still don't know what any of these things are. man :) Would you write | |
| > somewhere what all these graphs are about? Please....? ^__^ | |
| Oh this is just to confuse y'all, there's no point to any of this. | |
| Just kidding. | |
| The point of my XYZ-arithmetic prototypes is to explore & explain various techniques to speed up root finding | |
| over simple sphere tracing, that is, find the surface that a ray hits much faster than SDF's do, but keep |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef _SDL_stb_h | |
| #define _SDL_stb_h | |
| // Memory buffers | |
| typedef struct | |
| { | |
| Uint8 *data; | |
| Uint32 size; | |
| } SDL_MemoryBuffer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // by dave @ beesandbombs.tumblr.com >:) | |
| void setup() { | |
| setup_(); | |
| result = new int[width*height][3]; | |
| result_ = new int[width*height][3]; | |
| } | |
| int[][] result, result_; | |
| float time; |