2017-11-07 23:04:33 +08:00
|
|
|
#include "..\ecommon.h"
|
2017-10-28 18:48:21 +08:00
|
|
|
|
|
|
|
|
e2d::EPhysicsMsg::INTERSECT_RELATION e2d::EPhysicsMsg::s_nRelation = e2d::EPhysicsMsg::INTERSECT_RELATION::UNKNOWN;
|
|
|
|
|
e2d::EGeometry * e2d::EPhysicsMsg::s_pActiveGeometry = nullptr;
|
|
|
|
|
e2d::EGeometry * e2d::EPhysicsMsg::s_pPassiveGeometry = nullptr;
|
|
|
|
|
|
|
|
|
|
e2d::EPhysicsMsg::INTERSECT_RELATION e2d::EPhysicsMsg::getMsg()
|
|
|
|
|
{
|
|
|
|
|
return EPhysicsMsg::s_nRelation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
e2d::EGeometry * e2d::EPhysicsMsg::getActiveGeometry()
|
|
|
|
|
{
|
|
|
|
|
return EPhysicsMsg::s_pActiveGeometry;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
e2d::EGeometry * e2d::EPhysicsMsg::getPassiveGeometry()
|
|
|
|
|
{
|
|
|
|
|
return EPhysicsMsg::s_pPassiveGeometry;
|
|
|
|
|
}
|