feature/test #9
39
libs/xassets/xgfxaabbtree.cpp
Normal file
39
libs/xassets/xgfxaabbtree.cpp
Normal file
@ -0,0 +1,39 @@
|
||||
#include "xgfxaabbtree.h"
|
||||
|
||||
XGfxAabbTree::XGfxAabbTree()
|
||||
: XAsset()
|
||||
, mMins()
|
||||
, mMaxs()
|
||||
, mChildCount(0)
|
||||
, mSurfaceCount(0)
|
||||
, mStartSurfIndex(0)
|
||||
, mModelIndexCount(0)
|
||||
, mModelIndexesPtr(0)
|
||||
, mModelIndexes()
|
||||
, mChildrenOffset(0)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
XGfxAabbTree::~XGfxAabbTree()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void XGfxAabbTree::ParseData(QDataStream *aStream)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void XGfxAabbTree::Clear()
|
||||
{
|
||||
mMins = QVector3D();
|
||||
mMaxs = QVector3D();
|
||||
mChildCount = 0;
|
||||
mSurfaceCount = 0;
|
||||
mStartSurfIndex = 0;
|
||||
mModelIndexCount = 0;
|
||||
mModelIndexesPtr = 0;
|
||||
mModelIndexes.clear();
|
||||
mChildrenOffset = 0;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user