mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
343 B
C++
21 lines
343 B
C++
6 years ago
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_BOUNDS_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_BOUNDS_H
|
||
|
|
||
|
#include <osg/Vec3f>
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
struct Bounds
|
||
|
{
|
||
|
osg::Vec3f mMin;
|
||
|
osg::Vec3f mMax;
|
||
|
};
|
||
|
|
||
|
inline bool isEmpty(const Bounds& value)
|
||
|
{
|
||
|
return value.mMin == value.mMax;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|