BartaEngine
1.0.0
This is a c++ library which implements core features of a physics engine. The core concepts for now are:
The project is open to collaboration at my GitHub account as there are plenty of ideas for new functionalities. This program is a base for my Master's degree research about soft bodies simulation.
FetchContentCMakeLists.txt file:
include(FetchContent)
FetchContent_Declare(
BartaEngine
GIT_REPOSITORY https://github.com/Bartanakin/BartaEngine.git
GIT_TAG main
)
FetchContent_MakeAvailable(BartaEngine)
target_link_libraries(target PRIVATE BartaEngine)
git clone https://github.com/Bartanakin/BartaEngineSandbox.git
git clone https://github.com/Bartanakin/BartaEngine.gitCMakeListst.txt in the root directory change FetchContent_Declare:
FetchContent_Declare(
BartaEngine
SOURCE_DIR /local/path/to/BartaEngine
)
[email protected]to be written down :)