Assimp  v3.1.1 (June 2014)
Assimp::FindInvalidDataProcess Class Reference

The FindInvalidData post-processing step. More...

Inherits Assimp::BaseProcess.

Public Member Functions

void Execute (aiScene *pScene)
 Executes the post processing step on the given imported data. More...
 
 FindInvalidDataProcess ()
 
bool IsActive (unsigned int pFlags) const
 Returns whether the processing step is present in the given flag. More...
 
void ProcessAnimation (aiAnimation *anim)
 Executes the postprocessing step on the given animation. More...
 
void ProcessAnimationChannel (aiNodeAnim *anim)
 Executes the postprocessing step on the given anim channel. More...
 
int ProcessMesh (aiMesh *pMesh)
 Executes the postprocessing step on the given mesh. More...
 
void SetupProperties (const Importer *pImp)
 Called prior to ExecuteOnScene(). More...
 
 ~FindInvalidDataProcess ()
 
- Public Member Functions inherited from Assimp::BaseProcess
 BaseProcess ()
 Constructor to be privately used by Importer. More...
 
void ExecuteOnScene (Importer *pImp)
 Executes the post processing step on the given imported data. More...
 
SharedPostProcessInfoGetSharedData ()
 Get the shared data that is assigned to the step. More...
 
virtual bool RequireVerboseFormat () const
 Check whether this step expects its input vertex data to be in verbose format. More...
 
void SetSharedData (SharedPostProcessInfo *sh)
 Assign a new SharedPostProcessInfo to the step. More...
 
virtual ~BaseProcess ()
 Destructor, private as well. More...
 

Additional Inherited Members

- Protected Attributes inherited from Assimp::BaseProcess
ProgressHandlerprogress
 Currently active progress handler. More...
 
SharedPostProcessInfoshared
 See the doc of #SharedPostProcessInfo for more details. More...
 

Detailed Description

The FindInvalidData post-processing step.

It searches the mesh data for parts that are obviously invalid and removes them.

Originally this was a workaround for some models written by Blender which have zero normal vectors.

Constructor & Destructor Documentation

FindInvalidDataProcess::FindInvalidDataProcess ( )
FindInvalidDataProcess::~FindInvalidDataProcess ( )

Member Function Documentation

void FindInvalidDataProcess::Execute ( aiScene pScene)
virtual

Executes the post processing step on the given imported data.

A process should throw an ImportErrorException* if it fails. This method must be implemented by deriving classes.

Parameters
pSceneThe imported data to work at.

Implements Assimp::BaseProcess.

bool FindInvalidDataProcess::IsActive ( unsigned int  pFlags) const
virtual

Returns whether the processing step is present in the given flag.

Parameters
pFlagsThe processing flags the importer was called with. A bitwise combination of aiPostProcessSteps.
Returns
true if the process is present in this flag fields, false if not.

Implements Assimp::BaseProcess.

void FindInvalidDataProcess::ProcessAnimation ( aiAnimation anim)

Executes the postprocessing step on the given animation.

Parameters
animThe animation to process.
void FindInvalidDataProcess::ProcessAnimationChannel ( aiNodeAnim anim)

Executes the postprocessing step on the given anim channel.

Parameters
animThe animation channel to process.
int FindInvalidDataProcess::ProcessMesh ( aiMesh pMesh)

Executes the postprocessing step on the given mesh.

Parameters
pMeshThe mesh to process.
Returns
0 - nothing, 1 - removed sth, 2 - please delete me
void FindInvalidDataProcess::SetupProperties ( const Importer pImp)
virtual

Called prior to ExecuteOnScene().

The function is a request to the process to update its configuration basing on the Importer's configuration property list.

Reimplemented from Assimp::BaseProcess.


The documentation for this class was generated from the following files: