mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
26 lines
498 B
C++
26 lines
498 B
C++
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_HEIGHFIELDSHAPE_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_HEIGHFIELDSHAPE_H
|
||
|
|
||
|
#include <cstddef>
|
||
|
#include <variant>
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
struct HeightfieldPlane
|
||
|
{
|
||
|
float mHeight;
|
||
|
};
|
||
|
|
||
|
struct HeightfieldSurface
|
||
|
{
|
||
|
const float* mHeights;
|
||
|
std::size_t mSize;
|
||
|
float mMinHeight;
|
||
|
float mMaxHeight;
|
||
|
};
|
||
|
|
||
|
using HeightfieldShape = std::variant<HeightfieldPlane, HeightfieldSurface>;
|
||
|
}
|
||
|
|
||
|
#endif
|