- doc: clarify wording in bone section.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1101 67173fc5-114c-0410-ac8e-9d2fd5bffc1fpull/4/merge
parent
48e72d7851
commit
848b98e5be
10
doc/dox.h
10
doc/dox.h
|
@ -697,10 +697,10 @@ c) Recursively iterate over the node hierarchy <br>
|
||||||
c1) If the node is marked as necessary, copy it into the skeleton and check its children <br>
|
c1) If the node is marked as necessary, copy it into the skeleton and check its children <br>
|
||||||
c2) If the node is marked as not necessary, skip it and do not iterate over its children. <br>
|
c2) If the node is marked as not necessary, skip it and do not iterate over its children. <br>
|
||||||
|
|
||||||
Reasons: you need all the parent nodes to keep the transformation chain intact. Depending on the
|
Reasons: you need all the parent nodes to keep the transformation chain intact. For most
|
||||||
file format and the modelling package the node hierarchy of the skeleton is either a child
|
file formats and modelling packages the node hierarchy of the skeleton is either a child
|
||||||
of the mesh node or a sibling of the mesh node. Therefore b3) stops at both the mesh's node and
|
of the mesh node or a sibling of the mesh node but this is by no means a requirement so you shouldn't rely on it.
|
||||||
the mesh's node's parent. The node closest to the root node is your skeleton root, from there you
|
The node closest to the root node is your skeleton root, from there you
|
||||||
start copying the hierarchy. You can skip every branch without a node being a bone in the mesh -
|
start copying the hierarchy. You can skip every branch without a node being a bone in the mesh -
|
||||||
that's why the algorithm skips the whole branch if the node is marked as "not necessary".
|
that's why the algorithm skips the whole branch if the node is marked as "not necessary".
|
||||||
|
|
||||||
|
@ -1671,4 +1671,4 @@ void xxxxImporter::InternReadFile( const std::string& pFile,
|
||||||
}
|
}
|
||||||
|
|
||||||
@endcode
|
@endcode
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue