XPlor/libs/xassets/xphysmass.cpp

28 lines
375 B
C++
Raw Normal View History

2025-09-03 13:20:51 -04:00
#include "xphysmass.h"
XPhysMass::XPhysMass()
: XAsset()
, mCenterOfMass()
, mMomentsOfInertia()
, mProductsOfInertia()
{
}
XPhysMass::~XPhysMass()
{
}
void XPhysMass::ParseData(QDataStream *aStream)
{
}
void XPhysMass::Clear()
{
mCenterOfMass = QVector3D();
mMomentsOfInertia = QVector3D();
mProductsOfInertia = QVector3D();
}