Projects

Check out my personal projects below

Show 3 projects filtered by Library.

beyond::core (2020)

beyond::core contains a bunch of utilities that are associated with graphics. It serves as a supplementary of the C++ standard library and is shared in a lot of my graphics projects. The library implements an ECS, a math library built for 3d graphics, a thread pool, and some customized containers.

beyond::functions (2019)

beyond::functions is a C++17 implementation of various type erased callable types including unique_function (small-buffer optimized like std::function but is const correct and move-only, see p0228) and fixed_function (always stack-allocated with a fix maximum capacity). This library is the stand-along version of the same components in the beyond::core library.