Go to file
2020-08-09 15:26:49 +09:00
build_include Rename "include" to less ambiguous "build_include" 2020-07-24 17:57:43 +09:00
src Impl edit tri color, and more 2020-08-04 21:13:17 +09:00
third_party Impl edit tri color, and more 2020-08-04 21:13:17 +09:00
.gitignore Impl basic drawing, a basic start to the program 2020-07-21 20:15:10 +09:00
.gitmodules Init skeleton project 2020-07-21 20:03:22 +09:00
CMakeLists.txt Impl edit tri color, and more 2020-08-04 21:13:17 +09:00
LICENSE Add README.md, LICENSE 2020-08-09 15:26:49 +09:00
README.md Add README.md, LICENSE 2020-08-09 15:26:49 +09:00

Triangles

THIS PROJECT IS STILL A WORK IN PROGRESS!

A gui application that lets you draw triangles of different colors on a colored background.

Uses imgui for UI.

Compiling

Create a build dir, run cmake, and then make to build.

mkdir buildDebug
cd buildDebug
cmake ..
make

Dependencies

SFML should be installed on the system. imgui, and imgui-sfml are git submodules and should be initialized with git submodule update --init --recursive.