Updated libs/xassets/xgfxportal.cpp
This commit is contained in:
parent
2b40623f83
commit
b34959ba1d
34
libs/xassets/xgfxportal.cpp
Normal file
34
libs/xassets/xgfxportal.cpp
Normal file
@ -0,0 +1,34 @@
|
||||
#include "xgfxportal.h"
|
||||
#include "xgfxcell.h"
|
||||
|
||||
XGfxPortal::XGfxPortal()
|
||||
: XAsset()
|
||||
, mWritable()
|
||||
, mPlane()
|
||||
, mCell(new XGfxCell())
|
||||
, mVertices()
|
||||
, mVertexCount(0)
|
||||
, mHullAxis()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
XGfxPortal::~XGfxPortal()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void XGfxPortal::ParseData(QDataStream *aStream)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void XGfxPortal::Clear()
|
||||
{
|
||||
mWritable = XGfxPortalWritable();
|
||||
mPlane.Clear();
|
||||
mCell->Clear();
|
||||
mVertices = QVector3D();
|
||||
mVertexCount = 0;
|
||||
mHullAxis.clear();
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user