rotgen/include/rotgen/container/quaternion.hpp
Joel Falcou c400650f1a Implements rotgen::quaternion
Closes #19

Co-authored-by: Jules Pénuchot <jules@penuchot.com>
2025-11-09 19:07:20 +01:00

19 lines
535 B
C++

//==============================================================================
/*
ROTGEN - Runtime Overlay for Eigen
Copyright : CODE RECKONS
SPDX-License-Identifier: BSL-1.0
*/
//==============================================================================
#pragma once
// https://libeigen.gitlab.io/eigen/docs-3.4/classEigen_1_1Quaternion.html
#include <rotgen/config.hpp>
#if defined(ROTGEN_FORCE_DYNAMIC)
#include <rotgen/container/quaternion/dynamic.hpp>
#else
#include <rotgen/container/quaternion/fixed.hpp>
#endif