Assimp
v3.1.1 (June 2014)
|
The PretransformVertices pre-transforms all vertices in the node tree and removes the whole graph. More...
Inherits Assimp::BaseProcess.
Public Member Functions | |
void | Execute (aiScene *pScene) |
Executes the post processing step on the given imported data. More... | |
bool | IsActive (unsigned int pFlags) const |
Returns whether the processing step is present in the given flag. More... | |
bool | IsHierarchyKept () const |
Check whether 'keep hierarchy' is currently enabled. More... | |
void | KeepHierarchy (bool d) |
Toggle the 'keep hierarchy' option. More... | |
PretransformVertices () | |
void | SetupProperties (const Importer *pImp) |
Called prior to ExecuteOnScene(). More... | |
~PretransformVertices () | |
![]() | |
BaseProcess () | |
Constructor to be privately used by Importer. More... | |
void | ExecuteOnScene (Importer *pImp) |
Executes the post processing step on the given imported data. More... | |
SharedPostProcessInfo * | GetSharedData () |
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 | |
![]() | |
ProgressHandler * | progress |
Currently active progress handler. More... | |
SharedPostProcessInfo * | shared |
See the doc of #SharedPostProcessInfo for more details. More... | |
The PretransformVertices pre-transforms all vertices in the node tree and removes the whole graph.
The output is a list of meshes, one for each material.
PretransformVertices::PretransformVertices | ( | ) |
PretransformVertices::~PretransformVertices | ( | ) |
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.
pScene | The imported data to work at. |
Implements Assimp::BaseProcess.
|
virtual |
Returns whether the processing step is present in the given flag.
pFlags | The processing flags the importer was called with. A bitwise combination of aiPostProcessSteps. |
Implements Assimp::BaseProcess.
|
inline |
Check whether 'keep hierarchy' is currently enabled.
|
inline |
Toggle the 'keep hierarchy' option.
d | hm ... difficult to guess what this means, hu!? |
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.