This repository contains general, often-used utility functions and structs for both C++ and Python.
In Python, import your desired function/dataclass like for example:
from vortex_utils.python_utils import ssa
In C++, include vortex_utils like
#include <vortex_utils/cpp_utils.hpp>
and in the code
double some_angle = 3.14;
double angle_ssa = vortex_utils::ssa(some_angle);