#include "meshOpFty.h"
meshOpFty::meshOpFty()
{
fComponentIDs.clear();
}
meshOpFty::~meshOpFty()
{}
void meshOpFty::setMesh(
MObject& mesh )
{
fMesh = mesh;
}
void meshOpFty::setComponentList(
MObject& componentList )
{
fComponentList = componentList;
}
void meshOpFty::setComponentIDs(
MIntArray& componentIDs )
{
fComponentIDs = componentIDs;
}
void meshOpFty::setMeshOperation( MeshOperation operationType )
{
fOperationType = operationType;
}
MFn::Type meshOpFty::getExpectedComponentType( MeshOperation operationType )
{
switch (operationType)
{
}
}