feature/test #9
25
libs/xassets/xmodelhighmipbounds.cpp
Normal file
25
libs/xassets/xmodelhighmipbounds.cpp
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#include "xmodelhighmipbounds.h"
|
||||||
|
|
||||||
|
XModelHighMipBounds::XModelHighMipBounds()
|
||||||
|
: XAsset()
|
||||||
|
, mMins()
|
||||||
|
, mMaxs()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
XModelHighMipBounds::~XModelHighMipBounds()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XModelHighMipBounds::ParseData(QDataStream *aStream)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XModelHighMipBounds::Clear()
|
||||||
|
{
|
||||||
|
mMins = QVector3D();
|
||||||
|
mMaxs = QVector3D();
|
||||||
|
}
|
||||||
22
libs/xassets/xmodelhighmipbounds.h
Normal file
22
libs/xassets/xmodelhighmipbounds.h
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
#ifndef XMODELHIGHMIPBOUNDS_H
|
||||||
|
#define XMODELHIGHMIPBOUNDS_H
|
||||||
|
|
||||||
|
#include "xasset.h"
|
||||||
|
|
||||||
|
#include <QVector3D>
|
||||||
|
|
||||||
|
class XModelHighMipBounds : public XAsset
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
XModelHighMipBounds();
|
||||||
|
~XModelHighMipBounds();
|
||||||
|
|
||||||
|
virtual void ParseData(QDataStream* aStream) override;
|
||||||
|
virtual void Clear() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
QVector3D mMins;
|
||||||
|
QVector3D mMaxs;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // XMODELHIGHMIPBOUNDS_H
|
||||||
Loading…
x
Reference in New Issue
Block a user