28 lines
728 B
C++
28 lines
728 B
C++
//==================================================================================================
|
|
/*
|
|
ROTGEN - Runtime Overlay for Eigen
|
|
Copyright : CODE RECKONS
|
|
SPDX-License-Identifier: BSL-1.0
|
|
*/
|
|
//==================================================================================================
|
|
#include <rotgen/detail/generators.hpp>
|
|
#include <rotgen/impl/map.hpp>
|
|
#include <rotgen/impl/payload.hpp>
|
|
#include <Eigen/Dense>
|
|
|
|
namespace rotgen
|
|
{
|
|
#define USE_CONST
|
|
#define CONST const
|
|
#define BASENAME map_const_impl
|
|
#include "map_indirect.cpp"
|
|
#undef BASENAME
|
|
#undef USE_CONST
|
|
#undef CONST
|
|
|
|
#define CONST
|
|
#define BASENAME map_impl
|
|
#include "map_indirect.cpp"
|
|
#undef BASENAME
|
|
#undef CONST
|
|
}
|