git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@2 fdac6126-5c0c-442c-9429-916003d36597
10 lines
257 B
C++
10 lines
257 B
C++
class BaseImporter
|
|
{
|
|
public:
|
|
|
|
virtual void add_vertex (const OpenMesh::Vec3f&) {};
|
|
virtual void add_normal (const OpenMesh::Vec3f&) {};
|
|
virtual void add_texture (const OpenMesh::Vec2f&) {};
|
|
virtual void add_face (const FaceType&) {};
|
|
};
|