VectorGL / Showcase

Graphics are better seen than listed

Explore real output from repository programs, then open the source and build each example locally.

Built with VectorGL

Real output from real C++ programs

These are captures from executables shipped in the repository—not design mockups. Each example isolates a useful rendering or interaction pattern and links directly to its source.

Walkthroughs

Understand the rendering flow

These compact examples isolate one idea at a time, making them useful as starting points for your own components.

Runnable programs

Explore complete examples

The repository includes applications you can compile, modify, and step through in a debugger.

Build locally

Compile every example

Terminal
cmake -S . -B build -DVECTORGL_BUILD_EXAMPLES=ON
cmake --build build --config Release
ctest --test-dir build -C Release --output-on-failure
Windows note.For multi-config generators such as Visual Studio, keep --config Release on both the build and test commands.