aboutsummaryrefslogtreecommitdiff
path: root/sdk/extensions/authoring/source/NvBlastExtAuthoringMeshCleanerImpl.h
blob: 0eb1a8568ad863b5761659f60e51ab5bdd1573a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "NvBlastExtAuthoringMeshCleaner.h"

namespace Nv
{
namespace Blast
{

class Mesh;

class MeshCleanerImpl : public MeshCleaner
{
public:
	/**
	Tries to remove self intersections and open edges in interior of mesh.
	\param[in] mesh Mesh to be cleaned.
	\return Cleaned mesh or nullptr if failed.
	*/
	virtual Mesh* cleanMesh(const Nv::Blast::Mesh* mesh) override;
	virtual void release() override;

	~MeshCleanerImpl() {};
};

}
}