spatial-dyn is a C++/Python rigid body dynamics library.
See the documentation for spatial-dyn
here.
This library is written in C++ with Python bindings automatically generated with pybind11. It has been tested on Ubuntu 18.04, Ubuntu 20.04, and macOS 10.15 Catalina.
Compilation requirements:
cmake >= 3.11- C++17 support (
gcc >= 7,clang >= 7).
See Updating CMake for details on how to install the latest
cmake. Ubuntu 20.04 comes with a sufficient version of cmake out of the box.
The C++ portion of spatial-dyn is header-only, but to add spatial-dyn as a
cmake dependency, you can run the following:
mkdir build
cmake -B buildUse pip to install spatial-dyn in your virtual environment.
pip install .You can now import the spatialdyn package in Python.
import spatialdyn as dynAn in-place pip install will run the appropriate CMake command to build
spatial-dyn locally in the ./build folder. This will give you access to the
cmake configuration files for C++ as well as the spatialdyn package in
Python.
pip install -e .The simplest way to install the latest version of cmake is through pip:
pip install cmakeYou can also install it through apt:
sudo apt-get update && sudo apt-get install -y apt-transport-https ca-certificates gnupg wget
wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | sudo tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null
sudo apt-add-repository -y 'deb https://apt.kitware.com/ubuntu/ bionic main'
sudo apt-get update && sudo apt-get install -y cmake kitware-archive-keyring
sudo rm /etc/apt/trusted.gpg.d/kitware.gpgInstall cmake through Homebrew:
brew install cmakeOr through pip:
pip3 install cmake