Miscellaneous Research
Signed Distance Field (SDF) Constructive Solid Geometry (CSG) Representation & GPU Renderer [2021-Present]
Currently in its early stages, I am developing a CSG tree representation of SDFs capable of representing arbitrary SDFs. This representation is then rendered on the GPU using a stack-based interpreter.
Issues addressed include:
Tree optimizations to minimize stack size requirement
Reducing operations and transformations to point-based operations during ray marching
Programmatic interfaces for SDF construction
Ray marching optimizations
Jitter - Extensible Scripting Language [2020-2021]
Jitter is a just-in-time compiled research language exploring the ideas of language extensibility. This is accomplished by embedding Jitter within a host application, then interfacing with the compiler like a library.
Jitter also supports drop-in “extensions” which enable metaprogramming through custom parsing.
Surreal - Declarative User Interface Library & Case Study [2020]
Surreal is a declarative user interface library developed to study user interface design patterns.
Surreal prioritizes The Elm Architecture while supporting Model View Controller patterns, allowing widgets to be fully self-managing via message passing while also enabling view hierarchy manipulations through additional hooks (enabling MVC patterns).
sdf-lang - Shading Language & Integrated Runtime [2020]
sdf-lang is a shading language inspired by Rust that compiles to GLSL.
sdf-lang features an integrated runtime using OpenGL & SDL2, enabling shader hot reloading and user input handling.