Go to file
2020-08-09 16:23:12 +09:00
build_include Rename "include" to less ambiguous "build_include" 2020-07-24 17:57:43 +09:00
src Fix build with MS Visual Studio 2020-08-09 16:14:33 +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 Fix build with MS Visual Studio 2020-08-09 16:14:33 +09:00
LICENSE Add README.md, LICENSE 2020-08-09 15:26:49 +09:00
README.md Add SFML info to README.md 2020-08-09 16:23:12 +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.

Legal stuff

Uses SFML, which is licensed under the SFML license.

Uses imgui, which is licensed under the MIT license.

Uses imgui-sfml, which is licensed under the MIT license.

Uses catch, which is licensed under the Boost Software license.