Files
assimp/port/Assimp.NET/Assimp.NET/Texel.cpp
rave3d bbf5a32e6c adding native pointer to manganed classes
implementing c'tors and d'tors for managend classes (execept logging system)
rename some files

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@481 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-09-24 14:44:21 +00:00

44 lines
601 B
C++

#include "Texel.h"
namespace AssimpNET
{
Texel::Texel(void)
{
this->p_native = new aiTexel();
}
Texel::Texel(aiTexel* native)
{
this->p_native = native;
}
Texel::~Texel(void)
{
if(this->p_native)
delete this->p_native;
}
Texel::operator Color4D()
{
throw gcnew System::NotImplementedException();
}
bool Texel::operator != (const Texel^ t)
{
throw gcnew System::NotImplementedException();
}
bool Texel::operator == (const Texel^ t)
{
throw gcnew System::NotImplementedException();
}
aiTexel* Texel::getNative()
{
return this->p_native;
}
}