Updated libs/xassets/xgfxaabbtree.cpp
This commit is contained in:
parent
a8ca882e07
commit
c7ed43cf8d
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