You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Stephen Seo ef19ff326a Update LICENSE for 2021 2 years ago
build_include Rename "include" to less ambiguous "build_include" 3 years ago
src Get argc/argv when using WinMain 3 years ago
third_party Impl edit tri color, and more 3 years ago
.gitignore Impl basic drawing, a basic start to the program 3 years ago
.gitmodules Init skeleton project 3 years ago
CMakeLists.txt Fix header usage in MSVS build 3 years ago
LICENSE Update LICENSE for 2021 2 years ago
README.md Add SFML info to README.md 3 years ago

README.md

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.