mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 02:49:55 +00:00
22 lines
437 B
C++
22 lines
437 B
C++
#include <components/openmw-mp/Log.hpp>
|
|
|
|
#include "MechanicsHelper.hpp"
|
|
#include "Main.hpp"
|
|
using namespace mwmp;
|
|
|
|
mwmp::MechanicsHelper::MechanicsHelper()
|
|
{
|
|
|
|
}
|
|
|
|
mwmp::MechanicsHelper::~MechanicsHelper()
|
|
{
|
|
|
|
}
|
|
|
|
osg::Vec3f MechanicsHelper::getLinearInterpolation(osg::Vec3f start, osg::Vec3f end, float percent)
|
|
{
|
|
osg::Vec3f position(percent, percent, percent);
|
|
|
|
return (start + osg::componentMultiply(position, (end - start)));
|
|
}
|