mirror of https://github.com/AxioDL/metaforce.git
34 lines
654 B
C++
34 lines
654 B
C++
#include "CCollidableOBBTree.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
CCollidableOBBTree::CCollidableOBBTree(const COBBTree* tree, const urde::CMaterialList& material)
|
|
: CCollisionPrimitive(material),
|
|
x10_tree((COBBTree*)tree)
|
|
{
|
|
|
|
}
|
|
|
|
FourCC CCollidableOBBTree::GetPrimType() const
|
|
{
|
|
return SBIG('OBBT');
|
|
}
|
|
|
|
CRayCastResult CCollidableOBBTree::CastRayInternal(const CInternalRayCastStructure&) const
|
|
{
|
|
return {};
|
|
}
|
|
|
|
zeus::CAABox CCollidableOBBTree::CalculateAABox(const zeus::CTransform& xf) const
|
|
{
|
|
return x10_tree->CalculateAABox(xf);
|
|
}
|
|
|
|
zeus::CAABox CCollidableOBBTree::CalculateLocalAABox() const
|
|
{
|
|
return x10_tree->CalculateLocalAABox();
|
|
}
|
|
|
|
}
|