cyphesis/tests/stubs/physics/stubConvert.h
2017-07-25 23:40:40 +02:00

51 lines
No EOL
1.3 KiB
C

// AUTOGENERATED file, created by the tool generate_stub.py, don't edit!
// If you want to add your own functionality, instead edit the stubConvert_custom.h file.
#include "physics/Convert.h"
#include "stubConvert_custom.h"
#ifndef STUB_PHYSICS_CONVERT_H
#define STUB_PHYSICS_CONVERT_H
#ifndef STUB_Convert_toBullet
//#define STUB_Convert_toBullet
btVector3 Convert::toBullet(const WFMath::Vector<3>& p)
{
return *static_cast< btVector3*>(nullptr);
}
#endif //STUB_Convert_toBullet
#ifndef STUB_Convert_toBullet
//#define STUB_Convert_toBullet
btVector3 Convert::toBullet(const WFMath::Point<3>& p)
{
return *static_cast< btVector3*>(nullptr);
}
#endif //STUB_Convert_toBullet
#ifndef STUB_Convert_toBullet
//#define STUB_Convert_toBullet
btQuaternion Convert::toBullet(const WFMath::Quaternion& aq)
{
return *static_cast< btQuaternion*>(nullptr);
}
#endif //STUB_Convert_toBullet
#ifndef STUB_Convert_toWF
//#define STUB_Convert_toWF
T Convert::toWF(const btVector3& p)
{
return *static_cast< T*>(nullptr);
}
#endif //STUB_Convert_toWF
#ifndef STUB_Convert_toWF
//#define STUB_Convert_toWF
WFMath::Quaternion Convert::toWF(const btQuaternion& aq)
{
return *static_cast< WFMath::Quaternion*>(nullptr);
}
#endif //STUB_Convert_toWF
#endif