Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __SP_PHYSICS_PHYSX_CORE_H__
00009 #define __SP_PHYSICS_PHYSX_CORE_H__
00010
00011
00012 #include "Base/spStandard.hpp"
00013
00014 #ifdef SP_COMPILE_WITH_PHYSX
00015
00016
00017 #include <PxPhysicsAPI.h>
00018
00019 using namespace physx;
00020
00021 #define VecPx2Sp(v) dim::vector3df(v.x, v.y, v.z)
00022 #define VecSp2Px(v) PxVec3(v.X, v.Y, v.Z)
00023
00024
00025 #endif
00026
00027 #endif
00028
00029
00030
00031