mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
28 lines
612 B
C++
28 lines
612 B
C++
#ifndef OENGINE_BULLET_TRACE_H
|
|
#define OENGINE_BULLET_TRACE_H
|
|
|
|
#include <osg/Vec3f>
|
|
|
|
class btCollisionObject;
|
|
class btCollisionWorld;
|
|
|
|
|
|
namespace MWPhysics
|
|
{
|
|
class Actor;
|
|
|
|
struct ActorTracer
|
|
{
|
|
osg::Vec3f mEndPos;
|
|
osg::Vec3f mPlaneNormal;
|
|
const btCollisionObject* mHitObject;
|
|
|
|
float mFraction;
|
|
|
|
void doTrace(const btCollisionObject *actor, const osg::Vec3f& start, const osg::Vec3f& end, const btCollisionWorld* world);
|
|
void findGround(const Actor* actor, const osg::Vec3f& start, const osg::Vec3f& end, const btCollisionWorld* world);
|
|
};
|
|
}
|
|
|
|
#endif
|