diff --git a/README_out.md b/README_out.md index b07e664..b29181b 100644 --- a/README_out.md +++ b/README_out.md @@ -129,9 +129,47 @@ Several Python examples are provided for reference and can be found in the **exa Note: Examples are grouped in three groups: DNA, DNACalib, and DNAViewer. These names are embedded as prefixes: dna_, dnacalib_, and dna_viewer_. ## Example DNA files -[Two demo DNA files](https://github.com/EpicGames/MetaHuman-DNA-Calibration/tree/main/data/dna) are provided for easier testing of this tool. Any DNA generated with [MetaHumanCreator](https://www.unrealengine.com/en-US/metahuman) +[Two demo DNA files](https://github.com/EpicGames/MetaHuman-DNA-Calibration/tree/main/data/dna_files) are provided for easier testing of this tool. Any DNA generated with [MetaHumanCreator](https://www.unrealengine.com/en-US/metahuman) should work. +The MHC 2023 spring release introduced changes to the rig definition (number of joints increased as well as the number of expressions). +In order to accommodate those changes, we added several files to the repository in `/data/mh4` folder: new [gui scene](/data/mh4/gui.ma), updated [assemble script](/data/mh4/additional_assemble_script.py) and example of Ada’s [DNA file](https://github.com/EpicGames/MetaHuman-DNA-Calibration/tree/main/data/mh4/dna_files/Ada.dna). +If a user wants to switch and use this new rig version it is necessary to update paths in their scripts: +```python +GUI = f"{DATA_DIR}/mh4/gui.ma" +ADDITIONAL_ASSEMBLE_SCRIPT = f"{DATA_DIR}/mh4/additional_assemble_script.py" +``` + +In case character DNA is downloaded from [Quixel Bridge](https://quixel.com/bridge) and we are not sure which rig definition is used, it can be checked with following code: +```python +from dna import ( + BinaryStreamReader, + DataLayer_All, + FileStream, + Status, +) + +def load_dna_reader(dna_file): + stream = FileStream( + dna_file, FileStream.AccessMode_Read, FileStream.OpenMode_Binary + ) + reader = BinaryStreamReader(stream, DataLayer_All) + reader.read() + if not Status.isOk(): + status = Status.get() + raise RuntimeError(f"Error loading DNA: {status.message}") + return reader + +character_dna = "path_to/character.dna" +reader = load_dna_reader(character_dna) +if reader.getDBName() == "MH.4": + print("Use mh4 folder") +elif reader.getDBName() == "DHI": + print("Use data folder") +else: + print("Unsupported rig definition!") +``` + # Notes If a user runs examples in Maya 2022, the value for `ROOT_DIR` should be changed and absolute paths must be used, e.g. `c:/MetaHuman-DNA-Calibration` in Windows or `/home/user/MetaHuman-DNA-Calibration` in Linux. Important: Use `/` (forward slash), Maya uses forward slashes in path. diff --git a/docs/README_out.md b/docs/README_out.md index b07e664..b29181b 100644 --- a/docs/README_out.md +++ b/docs/README_out.md @@ -129,9 +129,47 @@ Several Python examples are provided for reference and can be found in the **exa Note: Examples are grouped in three groups: DNA, DNACalib, and DNAViewer. These names are embedded as prefixes: dna_, dnacalib_, and dna_viewer_. ## Example DNA files -[Two demo DNA files](https://github.com/EpicGames/MetaHuman-DNA-Calibration/tree/main/data/dna) are provided for easier testing of this tool. Any DNA generated with [MetaHumanCreator](https://www.unrealengine.com/en-US/metahuman) +[Two demo DNA files](https://github.com/EpicGames/MetaHuman-DNA-Calibration/tree/main/data/dna_files) are provided for easier testing of this tool. Any DNA generated with [MetaHumanCreator](https://www.unrealengine.com/en-US/metahuman) should work. +The MHC 2023 spring release introduced changes to the rig definition (number of joints increased as well as the number of expressions). +In order to accommodate those changes, we added several files to the repository in `/data/mh4` folder: new [gui scene](/data/mh4/gui.ma), updated [assemble script](/data/mh4/additional_assemble_script.py) and example of Ada’s [DNA file](https://github.com/EpicGames/MetaHuman-DNA-Calibration/tree/main/data/mh4/dna_files/Ada.dna). +If a user wants to switch and use this new rig version it is necessary to update paths in their scripts: +```python +GUI = f"{DATA_DIR}/mh4/gui.ma" +ADDITIONAL_ASSEMBLE_SCRIPT = f"{DATA_DIR}/mh4/additional_assemble_script.py" +``` + +In case character DNA is downloaded from [Quixel Bridge](https://quixel.com/bridge) and we are not sure which rig definition is used, it can be checked with following code: +```python +from dna import ( + BinaryStreamReader, + DataLayer_All, + FileStream, + Status, +) + +def load_dna_reader(dna_file): + stream = FileStream( + dna_file, FileStream.AccessMode_Read, FileStream.OpenMode_Binary + ) + reader = BinaryStreamReader(stream, DataLayer_All) + reader.read() + if not Status.isOk(): + status = Status.get() + raise RuntimeError(f"Error loading DNA: {status.message}") + return reader + +character_dna = "path_to/character.dna" +reader = load_dna_reader(character_dna) +if reader.getDBName() == "MH.4": + print("Use mh4 folder") +elif reader.getDBName() == "DHI": + print("Use data folder") +else: + print("Unsupported rig definition!") +``` + # Notes If a user runs examples in Maya 2022, the value for `ROOT_DIR` should be changed and absolute paths must be used, e.g. `c:/MetaHuman-DNA-Calibration` in Windows or `/home/user/MetaHuman-DNA-Calibration` in Linux. Important: Use `/` (forward slash), Maya uses forward slashes in path. diff --git a/docs/index.html b/docs/index.html index 9362f51..86353e5 100644 --- a/docs/index.html +++ b/docs/index.html @@ -241,8 +241,44 @@ If running on Linux, please make sure to append the LD_LIBRARY_PATH with absolut
Note: Examples are grouped in three groups: DNA, DNACalib, and DNAViewer. These names are embedded as prefixes: dna_, dnacalib_, and dna_viewer_.
Two demo DNA files are provided for easier testing of this tool. Any DNA generated with MetaHumanCreator +
Two demo DNA files are provided for easier testing of this tool. Any DNA generated with MetaHumanCreator should work.
+The MHC 2023 spring release introduced changes to the rig definition (number of joints increased as well as the number of expressions).
+In order to accommodate those changes, we added several files to the repository in /data/mh4
folder: new gui scene, updated assemble script and example of Ada’s DNA file.
+If a user wants to switch and use this new rig version it is necessary to update paths in their scripts:
GUI = f"{DATA_DIR}/mh4/gui.ma"
+ADDITIONAL_ASSEMBLE_SCRIPT = f"{DATA_DIR}/mh4/additional_assemble_script.py"
+
In case character DNA is downloaded from Quixel Bridge and we are not sure which rig definition is used, it can be checked with following code:
+from dna import (
+ BinaryStreamReader,
+ DataLayer_All,
+ FileStream,
+ Status,
+)
+
+def load_dna_reader(dna_file):
+ stream = FileStream(
+ dna_file, FileStream.AccessMode_Read, FileStream.OpenMode_Binary
+ )
+ reader = BinaryStreamReader(stream, DataLayer_All)
+ reader.read()
+ if not Status.isOk():
+ status = Status.get()
+ raise RuntimeError(f"Error loading DNA: {status.message}")
+ return reader
+
+character_dna = "path_to/character.dna"
+reader = load_dna_reader(character_dna)
+if reader.getDBName() == "MH.4":
+ print("Use mh4 folder")
+elif reader.getDBName() == "DHI":
+ print("Use data folder")
+else:
+ print("Unsupported rig definition!")
+
Note: Examples are grouped in three groups: DNA, DNACalib, and DNAViewer. These names are embedded as prefixes: dna_, dnacalib_, and dna_viewer_.
Two demo DNA files are provided for easier testing of this tool. Any DNA generated with MetaHumanCreator +
Two demo DNA files are provided for easier testing of this tool. Any DNA generated with MetaHumanCreator should work.
+The MHC 2023 spring release introduced changes to the rig definition (number of joints increased as well as the number of expressions).
+In order to accommodate those changes, we added several files to the repository in /data/mh4
folder: new gui scene, updated assemble script and example of Ada’s DNA file.
+If a user wants to switch and use this new rig version it is necessary to update paths in their scripts:
GUI = f"{DATA_DIR}/mh4/gui.ma"
+ADDITIONAL_ASSEMBLE_SCRIPT = f"{DATA_DIR}/mh4/additional_assemble_script.py"
+
In case character DNA is downloaded from Quixel Bridge and we are not sure which rig definition is used, it can be checked with following code:
+from dna import (
+ BinaryStreamReader,
+ DataLayer_All,
+ FileStream,
+ Status,
+)
+
+def load_dna_reader(dna_file):
+ stream = FileStream(
+ dna_file, FileStream.AccessMode_Read, FileStream.OpenMode_Binary
+ )
+ reader = BinaryStreamReader(stream, DataLayer_All)
+ reader.read()
+ if not Status.isOk():
+ status = Status.get()
+ raise RuntimeError(f"Error loading DNA: {status.message}")
+ return reader
+
+character_dna = "path_to/character.dna"
+reader = load_dna_reader(character_dna)
+if reader.getDBName() == "MH.4":
+ print("Use mh4 folder")
+elif reader.getDBName() == "DHI":
+ print("Use data folder")
+else:
+ print("Unsupported rig definition!")
+
Note: Change the path ~/MetaHuman-DNA-Calibration
to where MetaHuman-DNA-Calibration
is located.
additional_assemble_script.py
is used to organize objects in scene and
connect controls. The ideal setup looks like this:
The MHC 2023 spring release introduced changes to the rig definition (number of joints increased as well as the number of expressions).
+In order to accommodate those changes, we added several files to the repository in /data/mh4
folder: new gui scene, updated assemble script and example of Ada’s DNA file.
+Furthermore, in lib folder we added Maya RBF plugin which is used for controlling neck expressions. Neck setup has recently been improved and adding RBF plugin as well as new gui scene to use it, we get better neck deformations.
build_rig
)","Environment Setup","Usage in Maya","DNAViewer","DNAViewer","DNACalib","API overview","DNACalib","Frequently Asked Questions (FAQ)","MetaHuman DNA Calibration","MetaHuman DNA Calibration","dna_calibration","<no title>","Repository Organization"],titleterms:{"do":15,"function":13,"import":6,addit:13,api:13,app:5,ask:15,behavior:4,bind:13,blendshap:13,build:[6,7,8,14],build_mesh:6,build_rig:7,builder:[2,3],c:14,calcul:13,calibr:[16,17],certain:13,chang:[13,15],code:10,command:13,config:[2,6],creat:[6,7],data:20,definit:4,depend:[16,17],descriptor:4,distribut:15,dna:[0,8,13,15,16,17],dna_calibr:18,dna_view:[2,3,4,5],dnacalib:[12,14,16,17,20],dnalib:4,dnaview:[1,2,3,4,5,10,11,16,17,20],environ:[8,16,17],error:15,exampl:[6,7,10,14,16,17,20],expect:15,extern:[16,17],faq:15,file:[15,16,17],fix:15,folder:[10,14,20],frequent:15,from:10,gener:15,geometri:4,got:15,how:[10,15],i:15,indic:[16,17],instanc:[6,7],joint:2,knowledg:[16,17],layer:4,lib:20,licens:[16,17],linux:20,load:[8,15],locat:20,maya:[3,9,10,15],mesh:[2,3,6,8],metahuman:[16,17],mismatch:15,modifi:13,modul:[2,3,4,5],note:[16,17],open:15,option:[16,17],organ:20,overview:[13,16,17],packag:[1,2,3,4,5],part:13,path:15,perform:13,pose:13,provid:13,python:14,question:15,remov:13,renam:13,repositori:20,requir:[16,17],rig:[7,8],rig_build:2,rigconfig:7,runtimeerror:15,scene:15,setup:[8,16,17],share:15,signatur:15,skin_weight:3,softwar:[16,17],structur:[10,14,20],submodul:[2,3,4,5],subpackag:1,tabl:[16,17],transform:13,ui:5,us:13,usag:[9,10,14],util:[3,6],ver:15,widget:5,work:10}})
\ No newline at end of file
+Search.setIndex({docnames:["dna","dna_viewer","dna_viewer.builder","dna_viewer.builder.maya","dna_viewer.dnalib","dna_viewer.ui","dna_viewer_api_build_meshes_md","dna_viewer_api_build_rig_md","dna_viewer_api_md","dna_viewer_maya_md","dna_viewer_md","dna_viewer_modules","dnacalib","dnacalib_api_md","dnacalib_md","faq_md","index","index_","modules","navigation","repository_organization_md"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["dna.rst","dna_viewer.rst","dna_viewer.builder.rst","dna_viewer.builder.maya.rst","dna_viewer.dnalib.rst","dna_viewer.ui.rst","dna_viewer_api_build_meshes_md.md","dna_viewer_api_build_rig_md.md","dna_viewer_api_md.md","dna_viewer_maya_md.md","dna_viewer_md.md","dna_viewer_modules.rst","dnacalib.rst","dnacalib_api_md.md","dnacalib_md.md","faq_md.md","index.md","index_.md","modules.rst","navigation.md","repository_organization_md.md"],objects:{"":[[0,0,1,"_CPPv4N3dna17AnimatedMapFilterE","dna::AnimatedMapFilter"],[0,1,1,"_CPPv4N3dna17AnimatedMapFilter17AnimatedMapFilterEP14MemoryResource","dna::AnimatedMapFilter::AnimatedMapFilter"],[0,2,1,"_CPPv4N3dna17AnimatedMapFilter17AnimatedMapFilterEP14MemoryResource","dna::AnimatedMapFilter::AnimatedMapFilter::memRes_"],[0,1,1,"_CPPv4N3dna17AnimatedMapFilter5applyER13RawDefinition","dna::AnimatedMapFilter::apply"],[0,2,1,"_CPPv4N3dna17AnimatedMapFilter5applyER13RawDefinition","dna::AnimatedMapFilter::apply::dest"],[0,1,1,"_CPPv4N3dna17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::AnimatedMapFilter::configure"],[0,2,1,"_CPPv4N3dna17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::AnimatedMapFilter::configure::allowedAnimatedMapIndices"],[0,2,1,"_CPPv4N3dna17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::AnimatedMapFilter::configure::animatedMapCount"],[0,3,1,"_CPPv4N3dna17AnimatedMapFilter6memResE","dna::AnimatedMapFilter::memRes"],[0,1,1,"_CPPv4NK3dna17AnimatedMapFilter6passesENSt8uint16_tE","dna::AnimatedMapFilter::passes"],[0,2,1,"_CPPv4NK3dna17AnimatedMapFilter6passesENSt8uint16_tE","dna::AnimatedMapFilter::passes::index"],[0,3,1,"_CPPv4N3dna17AnimatedMapFilter14passingIndicesE","dna::AnimatedMapFilter::passingIndices"],[0,3,1,"_CPPv4N3dna17AnimatedMapFilter15remappedIndicesE","dna::AnimatedMapFilter::remappedIndices"],[0,0,1,"_CPPv4N3dna8BaseImplE","dna::BaseImpl"],[0,1,1,"_CPPv4N3dna8BaseImpl8BaseImplEP14MemoryResource","dna::BaseImpl::BaseImpl"],[0,1,1,"_CPPv4N3dna8BaseImpl8BaseImplERK8BaseImpl","dna::BaseImpl::BaseImpl"],[0,1,1,"_CPPv4N3dna8BaseImpl8BaseImplERR8BaseImpl","dna::BaseImpl::BaseImpl"],[0,2,1,"_CPPv4N3dna8BaseImpl8BaseImplEP14MemoryResource","dna::BaseImpl::BaseImpl::memRes_"],[0,2,1,"_CPPv4N3dna8BaseImpl8BaseImplERR8BaseImpl","dna::BaseImpl::BaseImpl::rhs"],[0,3,1,"_CPPv4N3dna8BaseImpl3dnaE","dna::BaseImpl::dna"],[0,1,1,"_CPPv4N3dna8BaseImpl17getMemoryResourceEv","dna::BaseImpl::getMemoryResource"],[0,3,1,"_CPPv4N3dna8BaseImpl6memResE","dna::BaseImpl::memRes"],[0,1,1,"_CPPv4N3dna8BaseImplaSERK8BaseImpl","dna::BaseImpl::operator="],[0,1,1,"_CPPv4N3dna8BaseImplaSERR8BaseImpl","dna::BaseImpl::operator="],[0,1,1,"_CPPv4N3dna8BaseImplD0Ev","dna::BaseImpl::~BaseImpl"],[0,0,1,"_CPPv4N3dna14BehaviorReaderE","dna::BehaviorReader"],[0,1,1,"_CPPv4NK3dna14BehaviorReader23getAnimatedMapCutValuesEv","dna::BehaviorReader::getAnimatedMapCutValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader24getAnimatedMapFromValuesEv","dna::BehaviorReader::getAnimatedMapFromValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader26getAnimatedMapInputIndicesEv","dna::BehaviorReader::getAnimatedMapInputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader18getAnimatedMapLODsEv","dna::BehaviorReader::getAnimatedMapLODs"],[0,1,1,"_CPPv4NK3dna14BehaviorReader27getAnimatedMapOutputIndicesEv","dna::BehaviorReader::getAnimatedMapOutputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader25getAnimatedMapSlopeValuesEv","dna::BehaviorReader::getAnimatedMapSlopeValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader22getAnimatedMapToValuesEv","dna::BehaviorReader::getAnimatedMapToValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader32getBlendShapeChannelInputIndicesEv","dna::BehaviorReader::getBlendShapeChannelInputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader24getBlendShapeChannelLODsEv","dna::BehaviorReader::getBlendShapeChannelLODs"],[0,1,1,"_CPPv4NK3dna14BehaviorReader33getBlendShapeChannelOutputIndicesEv","dna::BehaviorReader::getBlendShapeChannelOutputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader20getGUIToRawCutValuesEv","dna::BehaviorReader::getGUIToRawCutValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader21getGUIToRawFromValuesEv","dna::BehaviorReader::getGUIToRawFromValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader23getGUIToRawInputIndicesEv","dna::BehaviorReader::getGUIToRawInputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader24getGUIToRawOutputIndicesEv","dna::BehaviorReader::getGUIToRawOutputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader22getGUIToRawSlopeValuesEv","dna::BehaviorReader::getGUIToRawSlopeValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader19getGUIToRawToValuesEv","dna::BehaviorReader::getGUIToRawToValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader19getJointColumnCountEv","dna::BehaviorReader::getJointColumnCount"],[0,1,1,"_CPPv4NK3dna14BehaviorReader18getJointGroupCountEv","dna::BehaviorReader::getJointGroupCount"],[0,1,1,"_CPPv4NK3dna14BehaviorReader25getJointGroupInputIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupInputIndices"],[0,2,1,"_CPPv4NK3dna14BehaviorReader25getJointGroupInputIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupInputIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna14BehaviorReader25getJointGroupJointIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupJointIndices"],[0,2,1,"_CPPv4NK3dna14BehaviorReader25getJointGroupJointIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupJointIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna14BehaviorReader17getJointGroupLODsENSt8uint16_tE","dna::BehaviorReader::getJointGroupLODs"],[0,2,1,"_CPPv4NK3dna14BehaviorReader17getJointGroupLODsENSt8uint16_tE","dna::BehaviorReader::getJointGroupLODs::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna14BehaviorReader26getJointGroupOutputIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupOutputIndices"],[0,2,1,"_CPPv4NK3dna14BehaviorReader26getJointGroupOutputIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupOutputIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna14BehaviorReader19getJointGroupValuesENSt8uint16_tE","dna::BehaviorReader::getJointGroupValues"],[0,2,1,"_CPPv4NK3dna14BehaviorReader19getJointGroupValuesENSt8uint16_tE","dna::BehaviorReader::getJointGroupValues::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna14BehaviorReader16getJointRowCountEv","dna::BehaviorReader::getJointRowCount"],[0,1,1,"_CPPv4NK3dna14BehaviorReader32getJointVariableAttributeIndicesENSt8uint16_tE","dna::BehaviorReader::getJointVariableAttributeIndices"],[0,2,1,"_CPPv4NK3dna14BehaviorReader32getJointVariableAttributeIndicesENSt8uint16_tE","dna::BehaviorReader::getJointVariableAttributeIndices::lod"],[0,1,1,"_CPPv4NK3dna14BehaviorReader19getPSDColumnIndicesEv","dna::BehaviorReader::getPSDColumnIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader11getPSDCountEv","dna::BehaviorReader::getPSDCount"],[0,1,1,"_CPPv4NK3dna14BehaviorReader16getPSDRowIndicesEv","dna::BehaviorReader::getPSDRowIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader12getPSDValuesEv","dna::BehaviorReader::getPSDValues"],[0,1,1,"_CPPv4N3dna14BehaviorReaderD0Ev","dna::BehaviorReader::~BehaviorReader"],[0,0,1,"_CPPv4N3dna14BehaviorWriterE","dna::BehaviorWriter"],[0,1,1,"_CPPv4N3dna14BehaviorWriter16clearJointGroupsEv","dna::BehaviorWriter::clearJointGroups"],[0,1,1,"_CPPv4N3dna14BehaviorWriter16deleteJointGroupENSt8uint16_tE","dna::BehaviorWriter::deleteJointGroup"],[0,2,1,"_CPPv4N3dna14BehaviorWriter16deleteJointGroupENSt8uint16_tE","dna::BehaviorWriter::deleteJointGroup::jointGroupIndex"],[0,1,1,"_CPPv4N3dna14BehaviorWriter23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapCutValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapCutValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapCutValues::cutValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapFromValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapFromValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapFromValues::fromValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapInputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapInputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapLODs"],[0,2,1,"_CPPv4N3dna14BehaviorWriter18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapLODs::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapLODs::lods"],[0,1,1,"_CPPv4N3dna14BehaviorWriter27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapOutputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapOutputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapSlopeValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapSlopeValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapSlopeValues::slopeValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapToValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapToValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapToValues::toValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelInputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelInputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelLODs"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelLODs::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelLODs::lods"],[0,1,1,"_CPPv4N3dna14BehaviorWriter33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelOutputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelOutputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawCutValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawCutValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawCutValues::cutValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawFromValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawFromValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawFromValues::fromValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawInputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawInputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawOutputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawOutputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawSlopeValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawSlopeValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawSlopeValues::slopeValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawToValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawToValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawToValues::toValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter19setJointColumnCountENSt8uint16_tE","dna::BehaviorWriter::setJointColumnCount"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setJointColumnCountENSt8uint16_tE","dna::BehaviorWriter::setJointColumnCount::columnCount"],[0,1,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupInputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupInputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupInputIndices::inputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupInputIndices::jointGroupIndex"],[0,1,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupJointIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupJointIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupJointIndices::jointGroupIndex"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupJointIndices::jointIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupLODs"],[0,2,1,"_CPPv4N3dna14BehaviorWriter17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupLODs::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupLODs::jointGroupIndex"],[0,2,1,"_CPPv4N3dna14BehaviorWriter17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupLODs::lods"],[0,1,1,"_CPPv4N3dna14BehaviorWriter26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupOutputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupOutputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupOutputIndices::jointGroupIndex"],[0,2,1,"_CPPv4N3dna14BehaviorWriter26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::BehaviorWriter::setJointGroupValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::BehaviorWriter::setJointGroupValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::BehaviorWriter::setJointGroupValues::jointGroupIndex"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::BehaviorWriter::setJointGroupValues::values"],[0,1,1,"_CPPv4N3dna14BehaviorWriter16setJointRowCountENSt8uint16_tE","dna::BehaviorWriter::setJointRowCount"],[0,2,1,"_CPPv4N3dna14BehaviorWriter16setJointRowCountENSt8uint16_tE","dna::BehaviorWriter::setJointRowCount::rowCount"],[0,1,1,"_CPPv4N3dna14BehaviorWriter19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDColumnIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDColumnIndices::columnIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDColumnIndices::count"],[0,1,1,"_CPPv4N3dna14BehaviorWriter11setPSDCountENSt8uint16_tE","dna::BehaviorWriter::setPSDCount"],[0,2,1,"_CPPv4N3dna14BehaviorWriter11setPSDCountENSt8uint16_tE","dna::BehaviorWriter::setPSDCount::count"],[0,1,1,"_CPPv4N3dna14BehaviorWriter16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDRowIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDRowIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDRowIndices::rowIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter12setPSDValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setPSDValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter12setPSDValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setPSDValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter12setPSDValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setPSDValues::weights"],[0,1,1,"_CPPv4N3dna14BehaviorWriterD0Ev","dna::BehaviorWriter::~BehaviorWriter"],[0,0,1,"_CPPv4N3dna16BlendShapeFilterE","dna::BlendShapeFilter"],[0,1,1,"_CPPv4N3dna16BlendShapeFilter16BlendShapeFilterEP14MemoryResource","dna::BlendShapeFilter::BlendShapeFilter"],[0,2,1,"_CPPv4N3dna16BlendShapeFilter16BlendShapeFilterEP14MemoryResource","dna::BlendShapeFilter::BlendShapeFilter::memRes_"],[0,1,1,"_CPPv4N3dna16BlendShapeFilter5applyER13RawDefinition","dna::BlendShapeFilter::apply"],[0,2,1,"_CPPv4N3dna16BlendShapeFilter5applyER13RawDefinition","dna::BlendShapeFilter::apply::dest"],[0,1,1,"_CPPv4N3dna16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::BlendShapeFilter::configure"],[0,2,1,"_CPPv4N3dna16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::BlendShapeFilter::configure::allowedBlendShapeIndices"],[0,2,1,"_CPPv4N3dna16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::BlendShapeFilter::configure::blendShapeCount"],[0,3,1,"_CPPv4N3dna16BlendShapeFilter6memResE","dna::BlendShapeFilter::memRes"],[0,1,1,"_CPPv4NK3dna16BlendShapeFilter6passesENSt8uint16_tE","dna::BlendShapeFilter::passes"],[0,2,1,"_CPPv4NK3dna16BlendShapeFilter6passesENSt8uint16_tE","dna::BlendShapeFilter::passes::index"],[0,3,1,"_CPPv4N3dna16BlendShapeFilter14passingIndicesE","dna::BlendShapeFilter::passingIndices"],[0,3,1,"_CPPv4N3dna16BlendShapeFilter15remappedIndicesE","dna::BlendShapeFilter::remappedIndices"],[0,0,1,"_CPPv4N3dna16DefinitionReaderE","dna::DefinitionReader"],[0,1,1,"_CPPv4NK3dna16DefinitionReader19getAnimatedMapCountEv","dna::DefinitionReader::getAnimatedMapCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader28getAnimatedMapIndexListCountEv","dna::DefinitionReader::getAnimatedMapIndexListCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader27getAnimatedMapIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getAnimatedMapIndicesForLOD"],[0,2,1,"_CPPv4NK3dna16DefinitionReader27getAnimatedMapIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getAnimatedMapIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna16DefinitionReader18getAnimatedMapNameENSt8uint16_tE","dna::DefinitionReader::getAnimatedMapName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader18getAnimatedMapNameENSt8uint16_tE","dna::DefinitionReader::getAnimatedMapName::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader25getBlendShapeChannelCountEv","dna::DefinitionReader::getBlendShapeChannelCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader34getBlendShapeChannelIndexListCountEv","dna::DefinitionReader::getBlendShapeChannelIndexListCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getBlendShapeChannelIndicesForLOD"],[0,2,1,"_CPPv4NK3dna16DefinitionReader33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getBlendShapeChannelIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna16DefinitionReader24getBlendShapeChannelNameENSt8uint16_tE","dna::DefinitionReader::getBlendShapeChannelName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader24getBlendShapeChannelNameENSt8uint16_tE","dna::DefinitionReader::getBlendShapeChannelName::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader18getGUIControlCountEv","dna::DefinitionReader::getGUIControlCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader17getGUIControlNameENSt8uint16_tE","dna::DefinitionReader::getGUIControlName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader17getGUIControlNameENSt8uint16_tE","dna::DefinitionReader::getGUIControlName::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader13getJointCountEv","dna::DefinitionReader::getJointCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader22getJointIndexListCountEv","dna::DefinitionReader::getJointIndexListCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader21getJointIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getJointIndicesForLOD"],[0,2,1,"_CPPv4NK3dna16DefinitionReader21getJointIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getJointIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna16DefinitionReader12getJointNameENSt8uint16_tE","dna::DefinitionReader::getJointName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader12getJointNameENSt8uint16_tE","dna::DefinitionReader::getJointName::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader19getJointParentIndexENSt8uint16_tE","dna::DefinitionReader::getJointParentIndex"],[0,2,1,"_CPPv4NK3dna16DefinitionReader19getJointParentIndexENSt8uint16_tE","dna::DefinitionReader::getJointParentIndex::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader31getMeshBlendShapeChannelMappingENSt8uint16_tE","dna::DefinitionReader::getMeshBlendShapeChannelMapping"],[0,2,1,"_CPPv4NK3dna16DefinitionReader31getMeshBlendShapeChannelMappingENSt8uint16_tE","dna::DefinitionReader::getMeshBlendShapeChannelMapping::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader36getMeshBlendShapeChannelMappingCountEv","dna::DefinitionReader::getMeshBlendShapeChannelMappingCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getMeshBlendShapeChannelMappingIndicesForLOD"],[0,2,1,"_CPPv4NK3dna16DefinitionReader44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getMeshBlendShapeChannelMappingIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna16DefinitionReader12getMeshCountEv","dna::DefinitionReader::getMeshCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader21getMeshIndexListCountEv","dna::DefinitionReader::getMeshIndexListCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader20getMeshIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getMeshIndicesForLOD"],[0,2,1,"_CPPv4NK3dna16DefinitionReader20getMeshIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getMeshIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna16DefinitionReader11getMeshNameENSt8uint16_tE","dna::DefinitionReader::getMeshName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader11getMeshNameENSt8uint16_tE","dna::DefinitionReader::getMeshName::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader23getNeutralJointRotationENSt8uint16_tE","dna::DefinitionReader::getNeutralJointRotation"],[0,2,1,"_CPPv4NK3dna16DefinitionReader23getNeutralJointRotationENSt8uint16_tE","dna::DefinitionReader::getNeutralJointRotation::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader25getNeutralJointRotationXsEv","dna::DefinitionReader::getNeutralJointRotationXs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader25getNeutralJointRotationYsEv","dna::DefinitionReader::getNeutralJointRotationYs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader25getNeutralJointRotationZsEv","dna::DefinitionReader::getNeutralJointRotationZs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader26getNeutralJointTranslationENSt8uint16_tE","dna::DefinitionReader::getNeutralJointTranslation"],[0,2,1,"_CPPv4NK3dna16DefinitionReader26getNeutralJointTranslationENSt8uint16_tE","dna::DefinitionReader::getNeutralJointTranslation::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader28getNeutralJointTranslationXsEv","dna::DefinitionReader::getNeutralJointTranslationXs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader28getNeutralJointTranslationYsEv","dna::DefinitionReader::getNeutralJointTranslationYs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader28getNeutralJointTranslationZsEv","dna::DefinitionReader::getNeutralJointTranslationZs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader18getRawControlCountEv","dna::DefinitionReader::getRawControlCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader17getRawControlNameENSt8uint16_tE","dna::DefinitionReader::getRawControlName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader17getRawControlNameENSt8uint16_tE","dna::DefinitionReader::getRawControlName::index"],[0,1,1,"_CPPv4N3dna16DefinitionReaderD0Ev","dna::DefinitionReader::~DefinitionReader"],[0,0,1,"_CPPv4N3dna16DefinitionWriterE","dna::DefinitionWriter"],[0,1,1,"_CPPv4N3dna16DefinitionWriter23clearAnimatedMapIndicesEv","dna::DefinitionWriter::clearAnimatedMapIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter21clearAnimatedMapNamesEv","dna::DefinitionWriter::clearAnimatedMapNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter29clearBlendShapeChannelIndicesEv","dna::DefinitionWriter::clearBlendShapeChannelIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter27clearBlendShapeChannelNamesEv","dna::DefinitionWriter::clearBlendShapeChannelNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter20clearGUIControlNamesEv","dna::DefinitionWriter::clearGUIControlNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter17clearJointIndicesEv","dna::DefinitionWriter::clearJointIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter15clearJointNamesEv","dna::DefinitionWriter::clearJointNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter27clearLODAnimatedMapMappingsEv","dna::DefinitionWriter::clearLODAnimatedMapMappings"],[0,1,1,"_CPPv4N3dna16DefinitionWriter33clearLODBlendShapeChannelMappingsEv","dna::DefinitionWriter::clearLODBlendShapeChannelMappings"],[0,1,1,"_CPPv4N3dna16DefinitionWriter21clearLODJointMappingsEv","dna::DefinitionWriter::clearLODJointMappings"],[0,1,1,"_CPPv4N3dna16DefinitionWriter20clearLODMeshMappingsEv","dna::DefinitionWriter::clearLODMeshMappings"],[0,1,1,"_CPPv4N3dna16DefinitionWriter34clearMeshBlendShapeChannelMappingsEv","dna::DefinitionWriter::clearMeshBlendShapeChannelMappings"],[0,1,1,"_CPPv4N3dna16DefinitionWriter16clearMeshIndicesEv","dna::DefinitionWriter::clearMeshIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter14clearMeshNamesEv","dna::DefinitionWriter::clearMeshNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter20clearRawControlNamesEv","dna::DefinitionWriter::clearRawControlNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setAnimatedMapIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setAnimatedMapIndices::animatedMapIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setAnimatedMapIndices::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setAnimatedMapIndices::index"],[0,1,1,"_CPPv4N3dna16DefinitionWriter18setAnimatedMapNameENSt8uint16_tEPKc","dna::DefinitionWriter::setAnimatedMapName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter18setAnimatedMapNameENSt8uint16_tEPKc","dna::DefinitionWriter::setAnimatedMapName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter18setAnimatedMapNameENSt8uint16_tEPKc","dna::DefinitionWriter::setAnimatedMapName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriter27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setBlendShapeChannelIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setBlendShapeChannelIndices::blendShapeChannelIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setBlendShapeChannelIndices::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setBlendShapeChannelIndices::index"],[0,1,1,"_CPPv4N3dna16DefinitionWriter24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::DefinitionWriter::setBlendShapeChannelName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::DefinitionWriter::setBlendShapeChannelName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::DefinitionWriter::setBlendShapeChannelName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriter17setGUIControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setGUIControlName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setGUIControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setGUIControlName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setGUIControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setGUIControlName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriter17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointHierarchy"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointHierarchy::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointHierarchy::jointIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointIndices::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointIndices::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointIndices::jointIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter12setJointNameENSt8uint16_tEPKc","dna::DefinitionWriter::setJointName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter12setJointNameENSt8uint16_tEPKc","dna::DefinitionWriter::setJointName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter12setJointNameENSt8uint16_tEPKc","dna::DefinitionWriter::setJointName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriter24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODAnimatedMapMapping"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODAnimatedMapMapping::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODAnimatedMapMapping::lod"],[0,1,1,"_CPPv4N3dna16DefinitionWriter30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODBlendShapeChannelMapping"],[0,2,1,"_CPPv4N3dna16DefinitionWriter30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODBlendShapeChannelMapping::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODBlendShapeChannelMapping::lod"],[0,1,1,"_CPPv4N3dna16DefinitionWriter18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODJointMapping"],[0,2,1,"_CPPv4N3dna16DefinitionWriter18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODJointMapping::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODJointMapping::lod"],[0,1,1,"_CPPv4N3dna16DefinitionWriter17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODMeshMapping"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODMeshMapping::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODMeshMapping::lod"],[0,1,1,"_CPPv4N3dna16DefinitionWriter31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshBlendShapeChannelMapping"],[0,2,1,"_CPPv4N3dna16DefinitionWriter31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshBlendShapeChannelMapping::blendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna16DefinitionWriter31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshBlendShapeChannelMapping::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshBlendShapeChannelMapping::meshIndex"],[0,1,1,"_CPPv4N3dna16DefinitionWriter14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshIndices::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshIndices::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshIndices::meshIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter11setMeshNameENSt8uint16_tEPKc","dna::DefinitionWriter::setMeshName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter11setMeshNameENSt8uint16_tEPKc","dna::DefinitionWriter::setMeshName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter11setMeshNameENSt8uint16_tEPKc","dna::DefinitionWriter::setMeshName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriter24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointRotations"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointRotations::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointRotations::rotations"],[0,1,1,"_CPPv4N3dna16DefinitionWriter27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointTranslations"],[0,2,1,"_CPPv4N3dna16DefinitionWriter27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointTranslations::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointTranslations::translations"],[0,1,1,"_CPPv4N3dna16DefinitionWriter17setRawControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setRawControlName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setRawControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setRawControlName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setRawControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setRawControlName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriterD0Ev","dna::DefinitionWriter::~DefinitionWriter"],[0,0,1,"_CPPv4N3dna16DescriptorReaderE","dna::DescriptorReader"],[0,1,1,"_CPPv4NK3dna16DescriptorReader6getAgeEv","dna::DescriptorReader::getAge"],[0,1,1,"_CPPv4NK3dna16DescriptorReader12getArchetypeEv","dna::DescriptorReader::getArchetype"],[0,1,1,"_CPPv4NK3dna16DescriptorReader19getCoordinateSystemEv","dna::DescriptorReader::getCoordinateSystem"],[0,1,1,"_CPPv4NK3dna16DescriptorReader15getDBComplexityEv","dna::DescriptorReader::getDBComplexity"],[0,1,1,"_CPPv4NK3dna16DescriptorReader11getDBMaxLODEv","dna::DescriptorReader::getDBMaxLOD"],[0,1,1,"_CPPv4NK3dna16DescriptorReader9getDBNameEv","dna::DescriptorReader::getDBName"],[0,1,1,"_CPPv4NK3dna16DescriptorReader9getGenderEv","dna::DescriptorReader::getGender"],[0,1,1,"_CPPv4NK3dna16DescriptorReader11getLODCountEv","dna::DescriptorReader::getLODCount"],[0,1,1,"_CPPv4NK3dna16DescriptorReader16getMetaDataCountEv","dna::DescriptorReader::getMetaDataCount"],[0,1,1,"_CPPv4NK3dna16DescriptorReader14getMetaDataKeyENSt8uint32_tE","dna::DescriptorReader::getMetaDataKey"],[0,2,1,"_CPPv4NK3dna16DescriptorReader14getMetaDataKeyENSt8uint32_tE","dna::DescriptorReader::getMetaDataKey::index"],[0,1,1,"_CPPv4NK3dna16DescriptorReader16getMetaDataValueEPKc","dna::DescriptorReader::getMetaDataValue"],[0,2,1,"_CPPv4NK3dna16DescriptorReader16getMetaDataValueEPKc","dna::DescriptorReader::getMetaDataValue::key"],[0,1,1,"_CPPv4NK3dna16DescriptorReader7getNameEv","dna::DescriptorReader::getName"],[0,1,1,"_CPPv4NK3dna16DescriptorReader15getRotationUnitEv","dna::DescriptorReader::getRotationUnit"],[0,1,1,"_CPPv4NK3dna16DescriptorReader18getTranslationUnitEv","dna::DescriptorReader::getTranslationUnit"],[0,1,1,"_CPPv4N3dna16DescriptorReaderD0Ev","dna::DescriptorReader::~DescriptorReader"],[0,0,1,"_CPPv4N3dna16DescriptorWriterE","dna::DescriptorWriter"],[0,1,1,"_CPPv4N3dna16DescriptorWriter13clearMetaDataEv","dna::DescriptorWriter::clearMetaData"],[0,1,1,"_CPPv4N3dna16DescriptorWriter6setAgeENSt8uint16_tE","dna::DescriptorWriter::setAge"],[0,2,1,"_CPPv4N3dna16DescriptorWriter6setAgeENSt8uint16_tE","dna::DescriptorWriter::setAge::age"],[0,1,1,"_CPPv4N3dna16DescriptorWriter12setArchetypeE9Archetype","dna::DescriptorWriter::setArchetype"],[0,2,1,"_CPPv4N3dna16DescriptorWriter12setArchetypeE9Archetype","dna::DescriptorWriter::setArchetype::archetype"],[0,1,1,"_CPPv4N3dna16DescriptorWriter19setCoordinateSystemE16CoordinateSystem","dna::DescriptorWriter::setCoordinateSystem"],[0,2,1,"_CPPv4N3dna16DescriptorWriter19setCoordinateSystemE16CoordinateSystem","dna::DescriptorWriter::setCoordinateSystem::system"],[0,1,1,"_CPPv4N3dna16DescriptorWriter15setDBComplexityEPKc","dna::DescriptorWriter::setDBComplexity"],[0,2,1,"_CPPv4N3dna16DescriptorWriter15setDBComplexityEPKc","dna::DescriptorWriter::setDBComplexity::name"],[0,1,1,"_CPPv4N3dna16DescriptorWriter11setDBMaxLODENSt8uint16_tE","dna::DescriptorWriter::setDBMaxLOD"],[0,2,1,"_CPPv4N3dna16DescriptorWriter11setDBMaxLODENSt8uint16_tE","dna::DescriptorWriter::setDBMaxLOD::lod"],[0,1,1,"_CPPv4N3dna16DescriptorWriter9setDBNameEPKc","dna::DescriptorWriter::setDBName"],[0,2,1,"_CPPv4N3dna16DescriptorWriter9setDBNameEPKc","dna::DescriptorWriter::setDBName::name"],[0,1,1,"_CPPv4N3dna16DescriptorWriter9setGenderE6Gender","dna::DescriptorWriter::setGender"],[0,2,1,"_CPPv4N3dna16DescriptorWriter9setGenderE6Gender","dna::DescriptorWriter::setGender::gender"],[0,1,1,"_CPPv4N3dna16DescriptorWriter11setLODCountENSt8uint16_tE","dna::DescriptorWriter::setLODCount"],[0,2,1,"_CPPv4N3dna16DescriptorWriter11setLODCountENSt8uint16_tE","dna::DescriptorWriter::setLODCount::lodCount"],[0,1,1,"_CPPv4N3dna16DescriptorWriter11setMetaDataEPKcPKc","dna::DescriptorWriter::setMetaData"],[0,2,1,"_CPPv4N3dna16DescriptorWriter11setMetaDataEPKcPKc","dna::DescriptorWriter::setMetaData::key"],[0,2,1,"_CPPv4N3dna16DescriptorWriter11setMetaDataEPKcPKc","dna::DescriptorWriter::setMetaData::value"],[0,1,1,"_CPPv4N3dna16DescriptorWriter7setNameEPKc","dna::DescriptorWriter::setName"],[0,2,1,"_CPPv4N3dna16DescriptorWriter7setNameEPKc","dna::DescriptorWriter::setName::name"],[0,1,1,"_CPPv4N3dna16DescriptorWriter15setRotationUnitE12RotationUnit","dna::DescriptorWriter::setRotationUnit"],[0,2,1,"_CPPv4N3dna16DescriptorWriter15setRotationUnitE12RotationUnit","dna::DescriptorWriter::setRotationUnit::unit"],[0,1,1,"_CPPv4N3dna16DescriptorWriter18setTranslationUnitE15TranslationUnit","dna::DescriptorWriter::setTranslationUnit"],[0,2,1,"_CPPv4N3dna16DescriptorWriter18setTranslationUnitE15TranslationUnit","dna::DescriptorWriter::setTranslationUnit::unit"],[0,1,1,"_CPPv4N3dna16DescriptorWriterD0Ev","dna::DescriptorWriter::~DescriptorWriter"],[0,0,1,"_CPPv4N3dna20FilteredInputArchiveE","dna::FilteredInputArchive"],[0,4,1,"_CPPv4N3dna20FilteredInputArchive11BaseArchiveE","dna::FilteredInputArchive::BaseArchive"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayer14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayer14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::layer_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::layer_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayer14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::lods_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::maxLOD_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayer14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::memRes_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::memRes_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::minLOD_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayer14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::stream_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::stream_"],[0,3,1,"_CPPv4N3dna20FilteredInputArchive12layerBitmaskE","dna::FilteredInputArchive::layerBitmask"],[0,3,1,"_CPPv4N3dna20FilteredInputArchive13lodConstraintE","dna::FilteredInputArchive::lodConstraint"],[0,3,1,"_CPPv4N3dna20FilteredInputArchive6memResE","dna::FilteredInputArchive::memRes"],[0,1,1,"_CPPv4IDpEN3dna20FilteredInputArchive7processEvDpRR4Args","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER11RawBehavior","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER11RawGeometry","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER13RawDefinition","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER13RawDescriptor","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER15RawAnimatedMaps","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER20RawVertexSkinWeights","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER21RawBlendShapeChannels","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER7RawMesh","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER9RawJoints","dna::FilteredInputArchive::process"],[0,5,1,"_CPPv4IDpEN3dna20FilteredInputArchive7processEvDpRR4Args","dna::FilteredInputArchive::process::Args"],[0,2,1,"_CPPv4IDpEN3dna20FilteredInputArchive7processEvDpRR4Args","dna::FilteredInputArchive::process::args"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER11RawBehavior","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER11RawGeometry","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER13RawDefinition","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER13RawDescriptor","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER15RawAnimatedMaps","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER20RawVertexSkinWeights","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER21RawBlendShapeChannels","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER7RawMesh","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER9RawJoints","dna::FilteredInputArchive::process::dest"],[0,1,1,"_CPPv4I0EN3dna20FilteredInputArchive13processSubsetEvR10TContainerNSt6size_tENSt6size_tE","dna::FilteredInputArchive::processSubset"],[0,5,1,"_CPPv4I0EN3dna20FilteredInputArchive13processSubsetEvR10TContainerNSt6size_tENSt6size_tE","dna::FilteredInputArchive::processSubset::TContainer"],[0,2,1,"_CPPv4I0EN3dna20FilteredInputArchive13processSubsetEvR10TContainerNSt6size_tENSt6size_tE","dna::FilteredInputArchive::processSubset::dest"],[0,2,1,"_CPPv4I0EN3dna20FilteredInputArchive13processSubsetEvR10TContainerNSt6size_tENSt6size_tE","dna::FilteredInputArchive::processSubset::offset"],[0,2,1,"_CPPv4I0EN3dna20FilteredInputArchive13processSubsetEvR10TContainerNSt6size_tENSt6size_tE","dna::FilteredInputArchive::processSubset::size"],[0,3,1,"_CPPv4N3dna20FilteredInputArchive6streamE","dna::FilteredInputArchive::stream"],[0,3,1,"_CPPv4N3dna20FilteredInputArchive21unconstrainedLODCountE","dna::FilteredInputArchive::unconstrainedLODCount"],[0,0,1,"_CPPv4N3dna14GeometryReaderE","dna::GeometryReader"],[0,1,1,"_CPPv4NK3dna14GeometryReader25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeChannelIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeChannelIndex::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeChannelIndex::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetCountENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetCountENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getBlendShapeTargetDelta"],[0,2,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getBlendShapeTargetDelta::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getBlendShapeTargetDelta::deltaIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getBlendShapeTargetDelta::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaCount::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaXs"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaXs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaXs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaYs"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaYs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaYs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaZs"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaZs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaZs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetVertexIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetVertexIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader12getFaceCountENSt8uint16_tE","dna::GeometryReader::getFaceCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader12getFaceCountENSt8uint16_tE","dna::GeometryReader::getFaceCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getFaceVertexLayoutIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getFaceVertexLayoutIndices::faceIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader28getMaximumInfluencePerVertexENSt8uint16_tE","dna::GeometryReader::getMaximumInfluencePerVertex"],[0,2,1,"_CPPv4NK3dna14GeometryReader28getMaximumInfluencePerVertexENSt8uint16_tE","dna::GeometryReader::getMaximumInfluencePerVertex::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader19getSkinWeightsCountENSt8uint16_tE","dna::GeometryReader::getSkinWeightsCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader19getSkinWeightsCountENSt8uint16_tE","dna::GeometryReader::getSkinWeightsCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsJointIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsJointIndices::meshIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsJointIndices::vertexIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsValues"],[0,2,1,"_CPPv4NK3dna14GeometryReader20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsValues::meshIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsValues::vertexIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexLayout"],[0,2,1,"_CPPv4NK3dna14GeometryReader15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexLayout::layoutIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexLayout::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader20getVertexLayoutCountENSt8uint16_tE","dna::GeometryReader::getVertexLayoutCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader20getVertexLayoutCountENSt8uint16_tE","dna::GeometryReader::getVertexLayoutCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader28getVertexLayoutNormalIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutNormalIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader28getVertexLayoutNormalIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutNormalIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader30getVertexLayoutPositionIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutPositionIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader30getVertexLayoutPositionIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutPositionIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutTextureCoordinateIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutTextureCoordinateIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexNormal"],[0,2,1,"_CPPv4NK3dna14GeometryReader15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexNormal::meshIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexNormal::normalIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader20getVertexNormalCountENSt8uint16_tE","dna::GeometryReader::getVertexNormalCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader20getVertexNormalCountENSt8uint16_tE","dna::GeometryReader::getVertexNormalCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalXsENSt8uint16_tE","dna::GeometryReader::getVertexNormalXs"],[0,2,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalXsENSt8uint16_tE","dna::GeometryReader::getVertexNormalXs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalYsENSt8uint16_tE","dna::GeometryReader::getVertexNormalYs"],[0,2,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalYsENSt8uint16_tE","dna::GeometryReader::getVertexNormalYs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalZsENSt8uint16_tE","dna::GeometryReader::getVertexNormalZs"],[0,2,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalZsENSt8uint16_tE","dna::GeometryReader::getVertexNormalZs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexPosition"],[0,2,1,"_CPPv4NK3dna14GeometryReader17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexPosition::meshIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexPosition::vertexIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader22getVertexPositionCountENSt8uint16_tE","dna::GeometryReader::getVertexPositionCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader22getVertexPositionCountENSt8uint16_tE","dna::GeometryReader::getVertexPositionCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionXsENSt8uint16_tE","dna::GeometryReader::getVertexPositionXs"],[0,2,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionXsENSt8uint16_tE","dna::GeometryReader::getVertexPositionXs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionYsENSt8uint16_tE","dna::GeometryReader::getVertexPositionYs"],[0,2,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionYsENSt8uint16_tE","dna::GeometryReader::getVertexPositionYs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionZsENSt8uint16_tE","dna::GeometryReader::getVertexPositionZs"],[0,2,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionZsENSt8uint16_tE","dna::GeometryReader::getVertexPositionZs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexTextureCoordinate"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexTextureCoordinate::meshIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexTextureCoordinate::textureCoordinateIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader31getVertexTextureCoordinateCountENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader31getVertexTextureCoordinateCountENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader28getVertexTextureCoordinateUsENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateUs"],[0,2,1,"_CPPv4NK3dna14GeometryReader28getVertexTextureCoordinateUsENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateUs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader28getVertexTextureCoordinateVsENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateVs"],[0,2,1,"_CPPv4NK3dna14GeometryReader28getVertexTextureCoordinateVsENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateVs::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryReaderD0Ev","dna::GeometryReader::~GeometryReader"],[0,0,1,"_CPPv4N3dna14GeometryWriterE","dna::GeometryWriter"],[0,1,1,"_CPPv4N3dna14GeometryWriter22clearBlendShapeTargetsENSt8uint16_tE","dna::GeometryWriter::clearBlendShapeTargets"],[0,2,1,"_CPPv4N3dna14GeometryWriter22clearBlendShapeTargetsENSt8uint16_tE","dna::GeometryWriter::clearBlendShapeTargets::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter28clearFaceVertexLayoutIndicesENSt8uint16_tE","dna::GeometryWriter::clearFaceVertexLayoutIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter28clearFaceVertexLayoutIndicesENSt8uint16_tE","dna::GeometryWriter::clearFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter11clearMeshesEv","dna::GeometryWriter::clearMeshes"],[0,1,1,"_CPPv4N3dna14GeometryWriter16clearSkinWeightsENSt8uint16_tE","dna::GeometryWriter::clearSkinWeights"],[0,2,1,"_CPPv4N3dna14GeometryWriter16clearSkinWeightsENSt8uint16_tE","dna::GeometryWriter::clearSkinWeights::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter10deleteMeshENSt8uint16_tE","dna::GeometryWriter::deleteMesh"],[0,2,1,"_CPPv4N3dna14GeometryWriter10deleteMeshENSt8uint16_tE","dna::GeometryWriter::deleteMesh::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setBlendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setBlendShapeChannelIndex::blendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setBlendShapeChannelIndex::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setBlendShapeChannelIndex::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetDeltas"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetDeltas::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetDeltas::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetDeltas::deltas"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetDeltas::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetVertexIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetVertexIndices::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetVertexIndices::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetVertexIndices::vertexIndices"],[0,1,1,"_CPPv4N3dna14GeometryWriter26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setFaceVertexLayoutIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setFaceVertexLayoutIndices::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setFaceVertexLayoutIndices::faceIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setFaceVertexLayoutIndices::layoutIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setMaximumInfluencePerVertex"],[0,2,1,"_CPPv4N3dna14GeometryWriter28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setMaximumInfluencePerVertex::maxInfluenceCount"],[0,2,1,"_CPPv4N3dna14GeometryWriter28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setMaximumInfluencePerVertex::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setSkinWeightsJointIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setSkinWeightsJointIndices::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setSkinWeightsJointIndices::jointIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setSkinWeightsJointIndices::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setSkinWeightsJointIndices::vertexIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::GeometryWriter::setSkinWeightsValues"],[0,2,1,"_CPPv4N3dna14GeometryWriter20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::GeometryWriter::setSkinWeightsValues::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::GeometryWriter::setSkinWeightsValues::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::GeometryWriter::setSkinWeightsValues::vertexIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::GeometryWriter::setSkinWeightsValues::weights"],[0,1,1,"_CPPv4N3dna14GeometryWriter16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::GeometryWriter::setVertexLayouts"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::GeometryWriter::setVertexLayouts::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::GeometryWriter::setVertexLayouts::layouts"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::GeometryWriter::setVertexLayouts::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::GeometryWriter::setVertexNormals"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::GeometryWriter::setVertexNormals::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::GeometryWriter::setVertexNormals::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::GeometryWriter::setVertexNormals::normals"],[0,1,1,"_CPPv4N3dna14GeometryWriter18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::GeometryWriter::setVertexPositions"],[0,2,1,"_CPPv4N3dna14GeometryWriter18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::GeometryWriter::setVertexPositions::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::GeometryWriter::setVertexPositions::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::GeometryWriter::setVertexPositions::positions"],[0,1,1,"_CPPv4N3dna14GeometryWriter27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::GeometryWriter::setVertexTextureCoordinates"],[0,2,1,"_CPPv4N3dna14GeometryWriter27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::GeometryWriter::setVertexTextureCoordinates::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::GeometryWriter::setVertexTextureCoordinates::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::GeometryWriter::setVertexTextureCoordinates::textureCoordinates"],[0,1,1,"_CPPv4N3dna14GeometryWriterD0Ev","dna::GeometryWriter::~GeometryWriter"],[0,0,1,"_CPPv4N3dna11JointFilterE","dna::JointFilter"],[0,1,1,"_CPPv4N3dna11JointFilter11JointFilterEP14MemoryResource","dna::JointFilter::JointFilter"],[0,2,1,"_CPPv4N3dna11JointFilter11JointFilterEP14MemoryResource","dna::JointFilter::JointFilter::memRes_"],[0,6,1,"_CPPv4N3dna11JointFilter6OptionE","dna::JointFilter::Option"],[0,7,1,"_CPPv4N3dna11JointFilter6Option3AllE","dna::JointFilter::Option::All"],[0,7,1,"_CPPv4N3dna11JointFilter6Option13AnimationOnlyE","dna::JointFilter::Option::AnimationOnly"],[0,1,1,"_CPPv4N3dna11JointFilter5applyER11RawBehavior","dna::JointFilter::apply"],[0,1,1,"_CPPv4N3dna11JointFilter5applyER13RawDefinition","dna::JointFilter::apply"],[0,1,1,"_CPPv4N3dna11JointFilter5applyER20RawVertexSkinWeights","dna::JointFilter::apply"],[0,2,1,"_CPPv4N3dna11JointFilter5applyER11RawBehavior","dna::JointFilter::apply::dest"],[0,2,1,"_CPPv4N3dna11JointFilter5applyER13RawDefinition","dna::JointFilter::apply::dest"],[0,2,1,"_CPPv4N3dna11JointFilter5applyER20RawVertexSkinWeights","dna::JointFilter::apply::dest"],[0,1,1,"_CPPv4N3dna11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dna::JointFilter::configure"],[0,2,1,"_CPPv4N3dna11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dna::JointFilter::configure::allowedJointIndices"],[0,2,1,"_CPPv4N3dna11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dna::JointFilter::configure::jointCount"],[0,2,1,"_CPPv4N3dna11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dna::JointFilter::configure::option_"],[0,1,1,"_CPPv4NK3dna11JointFilter16maxRemappedIndexEv","dna::JointFilter::maxRemappedIndex"],[0,3,1,"_CPPv4N3dna11JointFilter6memResE","dna::JointFilter::memRes"],[0,3,1,"_CPPv4N3dna11JointFilter6optionE","dna::JointFilter::option"],[0,1,1,"_CPPv4NK3dna11JointFilter6passesENSt8uint16_tE","dna::JointFilter::passes"],[0,2,1,"_CPPv4NK3dna11JointFilter6passesENSt8uint16_tE","dna::JointFilter::passes::index"],[0,3,1,"_CPPv4N3dna11JointFilter14passingIndicesE","dna::JointFilter::passingIndices"],[0,1,1,"_CPPv4NK3dna11JointFilter8remappedENSt8uint16_tE","dna::JointFilter::remapped"],[0,2,1,"_CPPv4NK3dna11JointFilter8remappedENSt8uint16_tE","dna::JointFilter::remapped::oldIndex"],[0,3,1,"_CPPv4N3dna11JointFilter15remappedIndicesE","dna::JointFilter::remappedIndices"],[0,3,1,"_CPPv4N3dna11JointFilter14rootJointIndexE","dna::JointFilter::rootJointIndex"],[0,0,1,"_CPPv4N3dna13LODConstraintE","dna::LODConstraint"],[0,1,1,"_CPPv4N3dna13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::LODConstraint::LODConstraint"],[0,1,1,"_CPPv4N3dna13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::LODConstraint::LODConstraint"],[0,2,1,"_CPPv4N3dna13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::LODConstraint::LODConstraint::lods"],[0,2,1,"_CPPv4N3dna13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::LODConstraint::LODConstraint::maxLOD"],[0,2,1,"_CPPv4N3dna13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::LODConstraint::LODConstraint::memRes"],[0,2,1,"_CPPv4N3dna13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::LODConstraint::LODConstraint::memRes"],[0,2,1,"_CPPv4N3dna13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::LODConstraint::LODConstraint::minLOD"],[0,1,1,"_CPPv4NK3dna13LODConstraint7applyToER6VectorINSt8uint16_tEE","dna::LODConstraint::applyTo"],[0,1,1,"_CPPv4NK3dna13LODConstraint7applyToER8DynArrayINSt8uint16_tEE","dna::LODConstraint::applyTo"],[0,2,1,"_CPPv4NK3dna13LODConstraint7applyToER6VectorINSt8uint16_tEE","dna::LODConstraint::applyTo::unconstrainedLODs"],[0,2,1,"_CPPv4NK3dna13LODConstraint7applyToER8DynArrayINSt8uint16_tEE","dna::LODConstraint::applyTo::unconstrainedLODs"],[0,1,1,"_CPPv4N3dna13LODConstraint7clampToENSt8uint16_tE","dna::LODConstraint::clampTo"],[0,2,1,"_CPPv4N3dna13LODConstraint7clampToENSt8uint16_tE","dna::LODConstraint::clampTo::lodCount"],[0,1,1,"_CPPv4NK3dna13LODConstraint11getLODCountEv","dna::LODConstraint::getLODCount"],[0,1,1,"_CPPv4NK3dna13LODConstraint9getMaxLODEv","dna::LODConstraint::getMaxLOD"],[0,1,1,"_CPPv4NK3dna13LODConstraint9getMinLODEv","dna::LODConstraint::getMinLOD"],[0,1,1,"_CPPv4NK3dna13LODConstraint11hasImpactOnENSt8uint16_tE","dna::LODConstraint::hasImpactOn"],[0,2,1,"_CPPv4NK3dna13LODConstraint11hasImpactOnENSt8uint16_tE","dna::LODConstraint::hasImpactOn::lodCount"],[0,3,1,"_CPPv4N3dna13LODConstraint4lodsE","dna::LODConstraint::lods"],[0,0,1,"_CPPv4N3dna10LODMappingE","dna::LODMapping"],[0,1,1,"_CPPv4N3dna10LODMapping10LODMappingEP14MemoryResource","dna::LODMapping::LODMapping"],[0,2,1,"_CPPv4N3dna10LODMapping10LODMappingEP14MemoryResource","dna::LODMapping::LODMapping::memRes_"],[0,1,1,"_CPPv4N3dna10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::LODMapping::addIndices"],[0,2,1,"_CPPv4N3dna10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::LODMapping::addIndices::count"],[0,2,1,"_CPPv4N3dna10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::LODMapping::addIndices::index"],[0,2,1,"_CPPv4N3dna10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::LODMapping::addIndices::source"],[0,1,1,"_CPPv4N3dna10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dna::LODMapping::associateLODWithIndices"],[0,2,1,"_CPPv4N3dna10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dna::LODMapping::associateLODWithIndices::index"],[0,2,1,"_CPPv4N3dna10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dna::LODMapping::associateLODWithIndices::lod"],[0,1,1,"_CPPv4N3dna10LODMapping14cleanupIndicesEv","dna::LODMapping::cleanupIndices"],[0,1,1,"_CPPv4N3dna10LODMapping12clearIndicesENSt8uint16_tE","dna::LODMapping::clearIndices"],[0,2,1,"_CPPv4N3dna10LODMapping12clearIndicesENSt8uint16_tE","dna::LODMapping::clearIndices::index"],[0,1,1,"_CPPv4N3dna10LODMapping11discardLODsERK13LODConstraint","dna::LODMapping::discardLODs"],[0,2,1,"_CPPv4N3dna10LODMapping11discardLODsERK13LODConstraint","dna::LODMapping::discardLODs::lodConstraint"],[0,1,1,"_CPPv4N3dna10LODMapping13filterIndicesENSt8functionIFbNSt8uint16_tEEEE","dna::LODMapping::filterIndices"],[0,2,1,"_CPPv4N3dna10LODMapping13filterIndicesENSt8functionIFbNSt8uint16_tEEEE","dna::LODMapping::filterIndices::filterer"],[0,1,1,"_CPPv4NK3dna10LODMapping26getCombinedDistinctIndicesEP14MemoryResource","dna::LODMapping::getCombinedDistinctIndices"],[0,2,1,"_CPPv4NK3dna10LODMapping26getCombinedDistinctIndicesEP14MemoryResource","dna::LODMapping::getCombinedDistinctIndices::memRes"],[0,1,1,"_CPPv4NK3dna10LODMapping17getIndexListCountEv","dna::LODMapping::getIndexListCount"],[0,1,1,"_CPPv4NK3dna10LODMapping10getIndicesENSt8uint16_tE","dna::LODMapping::getIndices"],[0,2,1,"_CPPv4NK3dna10LODMapping10getIndicesENSt8uint16_tE","dna::LODMapping::getIndices::lod"],[0,1,1,"_CPPv4NK3dna10LODMapping11getLODCountEv","dna::LODMapping::getLODCount"],[0,3,1,"_CPPv4N3dna10LODMapping7indicesE","dna::LODMapping::indices"],[0,3,1,"_CPPv4N3dna10LODMapping4lodsE","dna::LODMapping::lods"],[0,1,1,"_CPPv4N3dna10LODMapping10mapIndicesENSt8functionIFNSt8uint16_tENSt8uint16_tEEEE","dna::LODMapping::mapIndices"],[0,2,1,"_CPPv4N3dna10LODMapping10mapIndicesENSt8functionIFNSt8uint16_tENSt8uint16_tEEEE","dna::LODMapping::mapIndices::mapper"],[0,1,1,"_CPPv4N3dna10LODMapping5resetEv","dna::LODMapping::reset"],[0,1,1,"_CPPv4N3dna10LODMapping12resetIndicesEv","dna::LODMapping::resetIndices"],[0,1,1,"_CPPv4N3dna10LODMapping9resetLODsEv","dna::LODMapping::resetLODs"],[0,1,1,"_CPPv4N3dna10LODMapping11setLODCountENSt8uint16_tE","dna::LODMapping::setLODCount"],[0,2,1,"_CPPv4N3dna10LODMapping11setLODCountENSt8uint16_tE","dna::LODMapping::setLODCount::lodCount"],[0,0,1,"_CPPv4N3dna10MeshFilterE","dna::MeshFilter"],[0,1,1,"_CPPv4N3dna10MeshFilter10MeshFilterEP14MemoryResource","dna::MeshFilter::MeshFilter"],[0,2,1,"_CPPv4N3dna10MeshFilter10MeshFilterEP14MemoryResource","dna::MeshFilter::MeshFilter::memRes_"],[0,1,1,"_CPPv4N3dna10MeshFilter5applyER13RawDefinition","dna::MeshFilter::apply"],[0,2,1,"_CPPv4N3dna10MeshFilter5applyER13RawDefinition","dna::MeshFilter::apply::dest"],[0,1,1,"_CPPv4N3dna10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::MeshFilter::configure"],[0,2,1,"_CPPv4N3dna10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::MeshFilter::configure::allowedMeshIndices"],[0,2,1,"_CPPv4N3dna10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::MeshFilter::configure::meshCount"],[0,3,1,"_CPPv4N3dna10MeshFilter6memResE","dna::MeshFilter::memRes"],[0,1,1,"_CPPv4NK3dna10MeshFilter6passesENSt8uint16_tE","dna::MeshFilter::passes"],[0,2,1,"_CPPv4NK3dna10MeshFilter6passesENSt8uint16_tE","dna::MeshFilter::passes::index"],[0,3,1,"_CPPv4N3dna10MeshFilter14passingIndicesE","dna::MeshFilter::passingIndices"],[0,3,1,"_CPPv4N3dna10MeshFilter15remappedIndicesE","dna::MeshFilter::remappedIndices"],[0,0,1,"_CPPv4N3dna6ReaderE","dna::Reader"],[0,1,1,"_CPPv4N3dna6Reader6unloadE9DataLayer","dna::Reader::unload"],[0,2,1,"_CPPv4N3dna6Reader6unloadE9DataLayer","dna::Reader::unload::layer"],[0,1,1,"_CPPv4N3dna6ReaderD0Ev","dna::Reader::~Reader"],[0,0,1,"_CPPv4I0EN3dna10ReaderImplE","dna::ReaderImpl"],[0,1,1,"_CPPv4N3dna10ReaderImpl10ReaderImplEP14MemoryResource","dna::ReaderImpl::ReaderImpl"],[0,2,1,"_CPPv4N3dna10ReaderImpl10ReaderImplEP14MemoryResource","dna::ReaderImpl::ReaderImpl::memRes_"],[0,5,1,"_CPPv4I0EN3dna10ReaderImplE","dna::ReaderImpl::TReaderBase"],[0,3,1,"_CPPv4N3dna10ReaderImpl5cacheE","dna::ReaderImpl::cache"],[0,1,1,"_CPPv4NK3dna10ReaderImpl6getAgeEv","dna::ReaderImpl::getAge"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getAnimatedMapCountEv","dna::ReaderImpl::getAnimatedMapCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl23getAnimatedMapCutValuesEv","dna::ReaderImpl::getAnimatedMapCutValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getAnimatedMapFromValuesEv","dna::ReaderImpl::getAnimatedMapFromValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getAnimatedMapIndexListCountEv","dna::ReaderImpl::getAnimatedMapIndexListCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl27getAnimatedMapIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getAnimatedMapIndicesForLOD"],[0,2,1,"_CPPv4NK3dna10ReaderImpl27getAnimatedMapIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getAnimatedMapIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getAnimatedMapInputIndicesEv","dna::ReaderImpl::getAnimatedMapInputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getAnimatedMapLODsEv","dna::ReaderImpl::getAnimatedMapLODs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getAnimatedMapNameENSt8uint16_tE","dna::ReaderImpl::getAnimatedMapName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl18getAnimatedMapNameENSt8uint16_tE","dna::ReaderImpl::getAnimatedMapName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl27getAnimatedMapOutputIndicesEv","dna::ReaderImpl::getAnimatedMapOutputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getAnimatedMapSlopeValuesEv","dna::ReaderImpl::getAnimatedMapSlopeValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl22getAnimatedMapToValuesEv","dna::ReaderImpl::getAnimatedMapToValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl12getArchetypeEv","dna::ReaderImpl::getArchetype"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getBlendShapeChannelCountEv","dna::ReaderImpl::getBlendShapeChannelCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelIndex::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelIndex::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl34getBlendShapeChannelIndexListCountEv","dna::ReaderImpl::getBlendShapeChannelIndexListCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelIndicesForLOD"],[0,2,1,"_CPPv4NK3dna10ReaderImpl33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl32getBlendShapeChannelInputIndicesEv","dna::ReaderImpl::getBlendShapeChannelInputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeChannelLODsEv","dna::ReaderImpl::getBlendShapeChannelLODs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeChannelNameENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeChannelNameENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl33getBlendShapeChannelOutputIndicesEv","dna::ReaderImpl::getBlendShapeChannelOutputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetCountENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetCountENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getBlendShapeTargetDelta"],[0,2,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getBlendShapeTargetDelta::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getBlendShapeTargetDelta::deltaIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getBlendShapeTargetDelta::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaCount::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaXs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaXs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaXs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaYs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaYs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaYs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaZs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaZs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaZs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetVertexIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetVertexIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getCoordinateSystemEv","dna::ReaderImpl::getCoordinateSystem"],[0,1,1,"_CPPv4NK3dna10ReaderImpl15getDBComplexityEv","dna::ReaderImpl::getDBComplexity"],[0,1,1,"_CPPv4NK3dna10ReaderImpl11getDBMaxLODEv","dna::ReaderImpl::getDBMaxLOD"],[0,1,1,"_CPPv4NK3dna10ReaderImpl9getDBNameEv","dna::ReaderImpl::getDBName"],[0,1,1,"_CPPv4NK3dna10ReaderImpl12getFaceCountENSt8uint16_tE","dna::ReaderImpl::getFaceCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl12getFaceCountENSt8uint16_tE","dna::ReaderImpl::getFaceCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getFaceVertexLayoutIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getFaceVertexLayoutIndices::faceIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getGUIControlCountEv","dna::ReaderImpl::getGUIControlCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getGUIControlNameENSt8uint16_tE","dna::ReaderImpl::getGUIControlName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getGUIControlNameENSt8uint16_tE","dna::ReaderImpl::getGUIControlName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl20getGUIToRawCutValuesEv","dna::ReaderImpl::getGUIToRawCutValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl21getGUIToRawFromValuesEv","dna::ReaderImpl::getGUIToRawFromValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl23getGUIToRawInputIndicesEv","dna::ReaderImpl::getGUIToRawInputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getGUIToRawOutputIndicesEv","dna::ReaderImpl::getGUIToRawOutputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl22getGUIToRawSlopeValuesEv","dna::ReaderImpl::getGUIToRawSlopeValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getGUIToRawToValuesEv","dna::ReaderImpl::getGUIToRawToValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl9getGenderEv","dna::ReaderImpl::getGender"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getJointColumnCountEv","dna::ReaderImpl::getJointColumnCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl13getJointCountEv","dna::ReaderImpl::getJointCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getJointGroupCountEv","dna::ReaderImpl::getJointGroupCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getJointGroupInputIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupInputIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl25getJointGroupInputIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupInputIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getJointGroupJointIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupJointIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl25getJointGroupJointIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupJointIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getJointGroupLODsENSt8uint16_tE","dna::ReaderImpl::getJointGroupLODs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getJointGroupLODsENSt8uint16_tE","dna::ReaderImpl::getJointGroupLODs::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getJointGroupOutputIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupOutputIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getJointGroupOutputIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupOutputIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getJointGroupValuesENSt8uint16_tE","dna::ReaderImpl::getJointGroupValues"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getJointGroupValuesENSt8uint16_tE","dna::ReaderImpl::getJointGroupValues::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl22getJointIndexListCountEv","dna::ReaderImpl::getJointIndexListCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl21getJointIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getJointIndicesForLOD"],[0,2,1,"_CPPv4NK3dna10ReaderImpl21getJointIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getJointIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl12getJointNameENSt8uint16_tE","dna::ReaderImpl::getJointName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl12getJointNameENSt8uint16_tE","dna::ReaderImpl::getJointName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getJointParentIndexENSt8uint16_tE","dna::ReaderImpl::getJointParentIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getJointParentIndexENSt8uint16_tE","dna::ReaderImpl::getJointParentIndex::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl16getJointRowCountEv","dna::ReaderImpl::getJointRowCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl32getJointVariableAttributeIndicesENSt8uint16_tE","dna::ReaderImpl::getJointVariableAttributeIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl32getJointVariableAttributeIndicesENSt8uint16_tE","dna::ReaderImpl::getJointVariableAttributeIndices::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl11getLODCountEv","dna::ReaderImpl::getLODCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getMaximumInfluencePerVertexENSt8uint16_tE","dna::ReaderImpl::getMaximumInfluencePerVertex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl28getMaximumInfluencePerVertexENSt8uint16_tE","dna::ReaderImpl::getMaximumInfluencePerVertex::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl31getMeshBlendShapeChannelMappingENSt8uint16_tE","dna::ReaderImpl::getMeshBlendShapeChannelMapping"],[0,2,1,"_CPPv4NK3dna10ReaderImpl31getMeshBlendShapeChannelMappingENSt8uint16_tE","dna::ReaderImpl::getMeshBlendShapeChannelMapping::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl36getMeshBlendShapeChannelMappingCountEv","dna::ReaderImpl::getMeshBlendShapeChannelMappingCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getMeshBlendShapeChannelMappingIndicesForLOD"],[0,2,1,"_CPPv4NK3dna10ReaderImpl44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getMeshBlendShapeChannelMappingIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl12getMeshCountEv","dna::ReaderImpl::getMeshCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl21getMeshIndexListCountEv","dna::ReaderImpl::getMeshIndexListCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl20getMeshIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getMeshIndicesForLOD"],[0,2,1,"_CPPv4NK3dna10ReaderImpl20getMeshIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getMeshIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl11getMeshNameENSt8uint16_tE","dna::ReaderImpl::getMeshName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl11getMeshNameENSt8uint16_tE","dna::ReaderImpl::getMeshName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl16getMetaDataCountEv","dna::ReaderImpl::getMetaDataCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl14getMetaDataKeyENSt8uint32_tE","dna::ReaderImpl::getMetaDataKey"],[0,2,1,"_CPPv4NK3dna10ReaderImpl14getMetaDataKeyENSt8uint32_tE","dna::ReaderImpl::getMetaDataKey::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl16getMetaDataValueEPKc","dna::ReaderImpl::getMetaDataValue"],[0,2,1,"_CPPv4NK3dna10ReaderImpl16getMetaDataValueEPKc","dna::ReaderImpl::getMetaDataValue::key"],[0,1,1,"_CPPv4NK3dna10ReaderImpl7getNameEv","dna::ReaderImpl::getName"],[0,1,1,"_CPPv4NK3dna10ReaderImpl23getNeutralJointRotationENSt8uint16_tE","dna::ReaderImpl::getNeutralJointRotation"],[0,2,1,"_CPPv4NK3dna10ReaderImpl23getNeutralJointRotationENSt8uint16_tE","dna::ReaderImpl::getNeutralJointRotation::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getNeutralJointRotationXsEv","dna::ReaderImpl::getNeutralJointRotationXs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getNeutralJointRotationYsEv","dna::ReaderImpl::getNeutralJointRotationYs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getNeutralJointRotationZsEv","dna::ReaderImpl::getNeutralJointRotationZs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getNeutralJointTranslationENSt8uint16_tE","dna::ReaderImpl::getNeutralJointTranslation"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getNeutralJointTranslationENSt8uint16_tE","dna::ReaderImpl::getNeutralJointTranslation::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getNeutralJointTranslationXsEv","dna::ReaderImpl::getNeutralJointTranslationXs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getNeutralJointTranslationYsEv","dna::ReaderImpl::getNeutralJointTranslationYs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getNeutralJointTranslationZsEv","dna::ReaderImpl::getNeutralJointTranslationZs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getPSDColumnIndicesEv","dna::ReaderImpl::getPSDColumnIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl11getPSDCountEv","dna::ReaderImpl::getPSDCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl16getPSDRowIndicesEv","dna::ReaderImpl::getPSDRowIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl12getPSDValuesEv","dna::ReaderImpl::getPSDValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getRawControlCountEv","dna::ReaderImpl::getRawControlCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getRawControlNameENSt8uint16_tE","dna::ReaderImpl::getRawControlName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getRawControlNameENSt8uint16_tE","dna::ReaderImpl::getRawControlName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl15getRotationUnitEv","dna::ReaderImpl::getRotationUnit"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getSkinWeightsCountENSt8uint16_tE","dna::ReaderImpl::getSkinWeightsCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getSkinWeightsCountENSt8uint16_tE","dna::ReaderImpl::getSkinWeightsCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsJointIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsJointIndices::meshIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsJointIndices::vertexIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsValues"],[0,2,1,"_CPPv4NK3dna10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsValues::meshIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsValues::vertexIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getTranslationUnitEv","dna::ReaderImpl::getTranslationUnit"],[0,1,1,"_CPPv4NK3dna10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexLayout"],[0,2,1,"_CPPv4NK3dna10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexLayout::layoutIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexLayout::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl20getVertexLayoutCountENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl20getVertexLayoutCountENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getVertexLayoutNormalIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutNormalIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl28getVertexLayoutNormalIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutNormalIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl30getVertexLayoutPositionIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutPositionIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl30getVertexLayoutPositionIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutPositionIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutTextureCoordinateIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutTextureCoordinateIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexNormal"],[0,2,1,"_CPPv4NK3dna10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexNormal::meshIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexNormal::normalIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl20getVertexNormalCountENSt8uint16_tE","dna::ReaderImpl::getVertexNormalCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl20getVertexNormalCountENSt8uint16_tE","dna::ReaderImpl::getVertexNormalCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalXsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalXs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalXsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalXs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalYsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalYs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalYsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalYs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalZsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalZs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalZsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalZs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexPosition"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexPosition::meshIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexPosition::vertexIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl22getVertexPositionCountENSt8uint16_tE","dna::ReaderImpl::getVertexPositionCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl22getVertexPositionCountENSt8uint16_tE","dna::ReaderImpl::getVertexPositionCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionXsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionXs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionXsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionXs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionYsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionYs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionYsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionYs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionZsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionZs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionZsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionZs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexTextureCoordinate"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexTextureCoordinate::meshIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexTextureCoordinate::textureCoordinateIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl31getVertexTextureCoordinateCountENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl31getVertexTextureCoordinateCountENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getVertexTextureCoordinateUsENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateUs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl28getVertexTextureCoordinateUsENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateUs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getVertexTextureCoordinateVsENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateVs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl28getVertexTextureCoordinateVsENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateVs::meshIndex"],[0,0,1,"_CPPv4N3dna12StreamReaderE","dna::StreamReader"],[0,3,1,"_CPPv4N3dna12StreamReader16InvalidDataErrorE","dna::StreamReader::InvalidDataError"],[0,3,1,"_CPPv4N3dna12StreamReader22SignatureMismatchErrorE","dna::StreamReader::SignatureMismatchError"],[0,3,1,"_CPPv4N3dna12StreamReader20VersionMismatchErrorE","dna::StreamReader::VersionMismatchError"],[0,1,1,"_CPPv4N3dna12StreamReader4readEv","dna::StreamReader::read"],[0,1,1,"_CPPv4N3dna12StreamReaderD0Ev","dna::StreamReader::~StreamReader"],[0,0,1,"_CPPv4N3dna12StreamWriterE","dna::StreamWriter"],[0,1,1,"_CPPv4N3dna12StreamWriter5writeEv","dna::StreamWriter::write"],[0,1,1,"_CPPv4N3dna12StreamWriterD0Ev","dna::StreamWriter::~StreamWriter"],[0,0,1,"_CPPv4N3dna10StringViewE","dna::StringView"],[0,1,1,"_CPPv4I0EN3dna10StringView9ArrayViewER9ArrayViewI1UE","dna::StringView::ArrayView"],[0,1,1,"_CPPv4I0EN3dna10StringView9ArrayViewERK9ArrayViewI1UE","dna::StringView::ArrayView"],[0,1,1,"_CPPv4I0EN3dna10StringView9ArrayViewERR9ArrayViewI1UE","dna::StringView::ArrayView"],[0,1,1,"_CPPv4I0_NSt9enable_ifIXntNSt19is_rvalue_referenceIRR1UE5valueEEiE4typeEEN3dna10StringView9ArrayViewERR1U","dna::StringView::ArrayView"],[0,1,1,"_CPPv4N3dna10StringView9ArrayViewE7pointer9size_type","dna::StringView::ArrayView"],[0,1,1,"_CPPv4N3dna10StringView9ArrayViewENSt9nullptr_tE9size_type","dna::StringView::ArrayView"],[0,1,1,"_CPPv4N3dna10StringView9ArrayViewERK9ArrayView","dna::StringView::ArrayView"],[0,1,1,"_CPPv4N3dna10StringView9ArrayViewERR9ArrayView","dna::StringView::ArrayView"],[0,1,1,"_CPPv4N3dna10StringView9ArrayViewEv","dna::StringView::ArrayView"],[0,5,1,"_CPPv4I0EN3dna10StringView9ArrayViewER9ArrayViewI1UE","dna::StringView::ArrayView::U"],[0,5,1,"_CPPv4I0EN3dna10StringView9ArrayViewERK9ArrayViewI1UE","dna::StringView::ArrayView::U"],[0,5,1,"_CPPv4I0EN3dna10StringView9ArrayViewERR9ArrayViewI1UE","dna::StringView::ArrayView::U"],[0,5,1,"_CPPv4I0_NSt9enable_ifIXntNSt19is_rvalue_referenceIRR1UE5valueEEiE4typeEEN3dna10StringView9ArrayViewERR1U","dna::StringView::ArrayView::U"],[0,2,1,"_CPPv4N3dna10StringView9ArrayViewE7pointer9size_type","dna::StringView::ArrayView::size"],[0,2,1,"_CPPv4I0EN3dna10StringView9ArrayViewER9ArrayViewI1UE","dna::StringView::ArrayView::src"],[0,2,1,"_CPPv4I0EN3dna10StringView9ArrayViewERK9ArrayViewI1UE","dna::StringView::ArrayView::src"],[0,2,1,"_CPPv4I0EN3dna10StringView9ArrayViewERR9ArrayViewI1UE","dna::StringView::ArrayView::src"],[0,2,1,"_CPPv4I0_NSt9enable_ifIXntNSt19is_rvalue_referenceIRR1UE5valueEEiE4typeEEN3dna10StringView9ArrayViewERR1U","dna::StringView::ArrayView::src"],[0,2,1,"_CPPv4N3dna10StringView9ArrayViewE7pointer9size_type","dna::StringView::ArrayView::src"],[0,4,1,"_CPPv4N3dna10StringView4BaseE","dna::StringView::Base"],[0,1,1,"_CPPv4NK3dna10StringView5c_strEv","dna::StringView::c_str"],[0,1,1,"_CPPv4NK3dna10StringView11dataOrEmptyEv","dna::StringView::dataOrEmpty"],[0,1,1,"_CPPv4NK3dna10StringViewcvPKcEv","dna::StringView::operator const char*"],[0,1,1,"_CPPv4NK3dna10StringViewmlEv","dna::StringView::operator*"],[0,0,1,"_CPPv4N3dna6WriterE","dna::Writer"],[0,1,1,"_CPPv4N3dna6Writer7setFromEPK6Reader9DataLayerP14MemoryResource","dna::Writer::setFrom"],[0,2,1,"_CPPv4N3dna6Writer7setFromEPK6Reader9DataLayerP14MemoryResource","dna::Writer::setFrom::layer"],[0,2,1,"_CPPv4N3dna6Writer7setFromEPK6Reader9DataLayerP14MemoryResource","dna::Writer::setFrom::memRes"],[0,2,1,"_CPPv4N3dna6Writer7setFromEPK6Reader9DataLayerP14MemoryResource","dna::Writer::setFrom::source"],[0,1,1,"_CPPv4N3dna6WriterD0Ev","dna::Writer::~Writer"],[0,0,1,"_CPPv4I0EN3dna10WriterImplE","dna::WriterImpl"],[0,5,1,"_CPPv4I0EN3dna10WriterImplE","dna::WriterImpl::TWriterBase"],[0,1,1,"_CPPv4N3dna10WriterImpl10WriterImplEP14MemoryResource","dna::WriterImpl::WriterImpl"],[0,2,1,"_CPPv4N3dna10WriterImpl10WriterImplEP14MemoryResource","dna::WriterImpl::WriterImpl::memRes_"],[0,1,1,"_CPPv4N3dna10WriterImpl23clearAnimatedMapIndicesEv","dna::WriterImpl::clearAnimatedMapIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl21clearAnimatedMapNamesEv","dna::WriterImpl::clearAnimatedMapNames"],[0,1,1,"_CPPv4N3dna10WriterImpl29clearBlendShapeChannelIndicesEv","dna::WriterImpl::clearBlendShapeChannelIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl27clearBlendShapeChannelNamesEv","dna::WriterImpl::clearBlendShapeChannelNames"],[0,1,1,"_CPPv4N3dna10WriterImpl22clearBlendShapeTargetsENSt8uint16_tE","dna::WriterImpl::clearBlendShapeTargets"],[0,2,1,"_CPPv4N3dna10WriterImpl22clearBlendShapeTargetsENSt8uint16_tE","dna::WriterImpl::clearBlendShapeTargets::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl28clearFaceVertexLayoutIndicesENSt8uint16_tE","dna::WriterImpl::clearFaceVertexLayoutIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl28clearFaceVertexLayoutIndicesENSt8uint16_tE","dna::WriterImpl::clearFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl20clearGUIControlNamesEv","dna::WriterImpl::clearGUIControlNames"],[0,1,1,"_CPPv4N3dna10WriterImpl16clearJointGroupsEv","dna::WriterImpl::clearJointGroups"],[0,1,1,"_CPPv4N3dna10WriterImpl17clearJointIndicesEv","dna::WriterImpl::clearJointIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl15clearJointNamesEv","dna::WriterImpl::clearJointNames"],[0,1,1,"_CPPv4N3dna10WriterImpl27clearLODAnimatedMapMappingsEv","dna::WriterImpl::clearLODAnimatedMapMappings"],[0,1,1,"_CPPv4N3dna10WriterImpl33clearLODBlendShapeChannelMappingsEv","dna::WriterImpl::clearLODBlendShapeChannelMappings"],[0,1,1,"_CPPv4N3dna10WriterImpl21clearLODJointMappingsEv","dna::WriterImpl::clearLODJointMappings"],[0,1,1,"_CPPv4N3dna10WriterImpl20clearLODMeshMappingsEv","dna::WriterImpl::clearLODMeshMappings"],[0,1,1,"_CPPv4N3dna10WriterImpl34clearMeshBlendShapeChannelMappingsEv","dna::WriterImpl::clearMeshBlendShapeChannelMappings"],[0,1,1,"_CPPv4N3dna10WriterImpl16clearMeshIndicesEv","dna::WriterImpl::clearMeshIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl14clearMeshNamesEv","dna::WriterImpl::clearMeshNames"],[0,1,1,"_CPPv4N3dna10WriterImpl11clearMeshesEv","dna::WriterImpl::clearMeshes"],[0,1,1,"_CPPv4N3dna10WriterImpl13clearMetaDataEv","dna::WriterImpl::clearMetaData"],[0,1,1,"_CPPv4N3dna10WriterImpl20clearRawControlNamesEv","dna::WriterImpl::clearRawControlNames"],[0,1,1,"_CPPv4N3dna10WriterImpl16clearSkinWeightsENSt8uint16_tE","dna::WriterImpl::clearSkinWeights"],[0,2,1,"_CPPv4N3dna10WriterImpl16clearSkinWeightsENSt8uint16_tE","dna::WriterImpl::clearSkinWeights::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl16deleteJointGroupENSt8uint16_tE","dna::WriterImpl::deleteJointGroup"],[0,2,1,"_CPPv4N3dna10WriterImpl16deleteJointGroupENSt8uint16_tE","dna::WriterImpl::deleteJointGroup::jointGroupIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl10deleteMeshENSt8uint16_tE","dna::WriterImpl::deleteMesh"],[0,2,1,"_CPPv4N3dna10WriterImpl10deleteMeshENSt8uint16_tE","dna::WriterImpl::deleteMesh::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl6setAgeENSt8uint16_tE","dna::WriterImpl::setAge"],[0,2,1,"_CPPv4N3dna10WriterImpl6setAgeENSt8uint16_tE","dna::WriterImpl::setAge::age"],[0,1,1,"_CPPv4N3dna10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapCutValues"],[0,2,1,"_CPPv4N3dna10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapCutValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapCutValues::cutValues"],[0,1,1,"_CPPv4N3dna10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapFromValues"],[0,2,1,"_CPPv4N3dna10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapFromValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapFromValues::fromValues"],[0,1,1,"_CPPv4N3dna10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapIndices::animatedMapIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapIndices::index"],[0,1,1,"_CPPv4N3dna10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapInputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapInputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapLODs"],[0,2,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapLODs::count"],[0,2,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapLODs::lods"],[0,1,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dna::WriterImpl::setAnimatedMapName"],[0,2,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dna::WriterImpl::setAnimatedMapName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dna::WriterImpl::setAnimatedMapName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapOutputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapOutputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapSlopeValues"],[0,2,1,"_CPPv4N3dna10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapSlopeValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapSlopeValues::slopeValues"],[0,1,1,"_CPPv4N3dna10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapToValues"],[0,2,1,"_CPPv4N3dna10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapToValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapToValues::toValues"],[0,1,1,"_CPPv4N3dna10WriterImpl12setArchetypeE9Archetype","dna::WriterImpl::setArchetype"],[0,2,1,"_CPPv4N3dna10WriterImpl12setArchetypeE9Archetype","dna::WriterImpl::setArchetype::archetype"],[0,1,1,"_CPPv4N3dna10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndex::blendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndex::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndex::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndices::blendShapeChannelIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndices::index"],[0,1,1,"_CPPv4N3dna10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelInputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelInputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelLODs"],[0,2,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelLODs::count"],[0,2,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelLODs::lods"],[0,1,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::WriterImpl::setBlendShapeChannelName"],[0,2,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::WriterImpl::setBlendShapeChannelName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::WriterImpl::setBlendShapeChannelName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelOutputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelOutputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetDeltas"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetDeltas::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetDeltas::count"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetDeltas::deltas"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetDeltas::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetVertexIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetVertexIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetVertexIndices::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetVertexIndices::vertexIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl19setCoordinateSystemE16CoordinateSystem","dna::WriterImpl::setCoordinateSystem"],[0,2,1,"_CPPv4N3dna10WriterImpl19setCoordinateSystemE16CoordinateSystem","dna::WriterImpl::setCoordinateSystem::system"],[0,1,1,"_CPPv4N3dna10WriterImpl15setDBComplexityEPKc","dna::WriterImpl::setDBComplexity"],[0,2,1,"_CPPv4N3dna10WriterImpl15setDBComplexityEPKc","dna::WriterImpl::setDBComplexity::name"],[0,1,1,"_CPPv4N3dna10WriterImpl11setDBMaxLODENSt8uint16_tE","dna::WriterImpl::setDBMaxLOD"],[0,2,1,"_CPPv4N3dna10WriterImpl11setDBMaxLODENSt8uint16_tE","dna::WriterImpl::setDBMaxLOD::lod"],[0,1,1,"_CPPv4N3dna10WriterImpl9setDBNameEPKc","dna::WriterImpl::setDBName"],[0,2,1,"_CPPv4N3dna10WriterImpl9setDBNameEPKc","dna::WriterImpl::setDBName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setFaceVertexLayoutIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setFaceVertexLayoutIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setFaceVertexLayoutIndices::faceIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setFaceVertexLayoutIndices::layoutIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dna::WriterImpl::setGUIControlName"],[0,2,1,"_CPPv4N3dna10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dna::WriterImpl::setGUIControlName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dna::WriterImpl::setGUIControlName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawCutValues"],[0,2,1,"_CPPv4N3dna10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawCutValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawCutValues::cutValues"],[0,1,1,"_CPPv4N3dna10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawFromValues"],[0,2,1,"_CPPv4N3dna10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawFromValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawFromValues::fromValues"],[0,1,1,"_CPPv4N3dna10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawInputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawInputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawOutputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawOutputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawSlopeValues"],[0,2,1,"_CPPv4N3dna10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawSlopeValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawSlopeValues::slopeValues"],[0,1,1,"_CPPv4N3dna10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawToValues"],[0,2,1,"_CPPv4N3dna10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawToValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawToValues::toValues"],[0,1,1,"_CPPv4N3dna10WriterImpl9setGenderE6Gender","dna::WriterImpl::setGender"],[0,2,1,"_CPPv4N3dna10WriterImpl9setGenderE6Gender","dna::WriterImpl::setGender::gender"],[0,1,1,"_CPPv4N3dna10WriterImpl19setJointColumnCountENSt8uint16_tE","dna::WriterImpl::setJointColumnCount"],[0,2,1,"_CPPv4N3dna10WriterImpl19setJointColumnCountENSt8uint16_tE","dna::WriterImpl::setJointColumnCount::columnCount"],[0,1,1,"_CPPv4N3dna10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupInputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupInputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupInputIndices::inputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupInputIndices::jointGroupIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupJointIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupJointIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupJointIndices::jointGroupIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupJointIndices::jointIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupLODs"],[0,2,1,"_CPPv4N3dna10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupLODs::count"],[0,2,1,"_CPPv4N3dna10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupLODs::jointGroupIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupLODs::lods"],[0,1,1,"_CPPv4N3dna10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupOutputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupOutputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupOutputIndices::jointGroupIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::WriterImpl::setJointGroupValues"],[0,2,1,"_CPPv4N3dna10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::WriterImpl::setJointGroupValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::WriterImpl::setJointGroupValues::jointGroupIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::WriterImpl::setJointGroupValues::values"],[0,1,1,"_CPPv4N3dna10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointHierarchy"],[0,2,1,"_CPPv4N3dna10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointHierarchy::count"],[0,2,1,"_CPPv4N3dna10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointHierarchy::jointIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointIndices::index"],[0,2,1,"_CPPv4N3dna10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointIndices::jointIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl12setJointNameENSt8uint16_tEPKc","dna::WriterImpl::setJointName"],[0,2,1,"_CPPv4N3dna10WriterImpl12setJointNameENSt8uint16_tEPKc","dna::WriterImpl::setJointName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl12setJointNameENSt8uint16_tEPKc","dna::WriterImpl::setJointName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl16setJointRowCountENSt8uint16_tE","dna::WriterImpl::setJointRowCount"],[0,2,1,"_CPPv4N3dna10WriterImpl16setJointRowCountENSt8uint16_tE","dna::WriterImpl::setJointRowCount::rowCount"],[0,1,1,"_CPPv4N3dna10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODAnimatedMapMapping"],[0,2,1,"_CPPv4N3dna10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODAnimatedMapMapping::index"],[0,2,1,"_CPPv4N3dna10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODAnimatedMapMapping::lod"],[0,1,1,"_CPPv4N3dna10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODBlendShapeChannelMapping"],[0,2,1,"_CPPv4N3dna10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODBlendShapeChannelMapping::index"],[0,2,1,"_CPPv4N3dna10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODBlendShapeChannelMapping::lod"],[0,1,1,"_CPPv4N3dna10WriterImpl11setLODCountENSt8uint16_tE","dna::WriterImpl::setLODCount"],[0,2,1,"_CPPv4N3dna10WriterImpl11setLODCountENSt8uint16_tE","dna::WriterImpl::setLODCount::lodCount"],[0,1,1,"_CPPv4N3dna10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODJointMapping"],[0,2,1,"_CPPv4N3dna10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODJointMapping::index"],[0,2,1,"_CPPv4N3dna10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODJointMapping::lod"],[0,1,1,"_CPPv4N3dna10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODMeshMapping"],[0,2,1,"_CPPv4N3dna10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODMeshMapping::index"],[0,2,1,"_CPPv4N3dna10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODMeshMapping::lod"],[0,1,1,"_CPPv4N3dna10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMaximumInfluencePerVertex"],[0,2,1,"_CPPv4N3dna10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMaximumInfluencePerVertex::maxInfluenceCount"],[0,2,1,"_CPPv4N3dna10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMaximumInfluencePerVertex::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshBlendShapeChannelMapping"],[0,2,1,"_CPPv4N3dna10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshBlendShapeChannelMapping::blendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshBlendShapeChannelMapping::index"],[0,2,1,"_CPPv4N3dna10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshBlendShapeChannelMapping::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshIndices::index"],[0,2,1,"_CPPv4N3dna10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshIndices::meshIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl11setMeshNameENSt8uint16_tEPKc","dna::WriterImpl::setMeshName"],[0,2,1,"_CPPv4N3dna10WriterImpl11setMeshNameENSt8uint16_tEPKc","dna::WriterImpl::setMeshName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl11setMeshNameENSt8uint16_tEPKc","dna::WriterImpl::setMeshName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl11setMetaDataEPKcPKc","dna::WriterImpl::setMetaData"],[0,2,1,"_CPPv4N3dna10WriterImpl11setMetaDataEPKcPKc","dna::WriterImpl::setMetaData::key"],[0,2,1,"_CPPv4N3dna10WriterImpl11setMetaDataEPKcPKc","dna::WriterImpl::setMetaData::value"],[0,1,1,"_CPPv4N3dna10WriterImpl7setNameEPKc","dna::WriterImpl::setName"],[0,2,1,"_CPPv4N3dna10WriterImpl7setNameEPKc","dna::WriterImpl::setName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointRotations"],[0,2,1,"_CPPv4N3dna10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointRotations::count"],[0,2,1,"_CPPv4N3dna10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointRotations::rotations"],[0,1,1,"_CPPv4N3dna10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointTranslations"],[0,2,1,"_CPPv4N3dna10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointTranslations::count"],[0,2,1,"_CPPv4N3dna10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointTranslations::translations"],[0,1,1,"_CPPv4N3dna10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDColumnIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDColumnIndices::columnIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDColumnIndices::count"],[0,1,1,"_CPPv4N3dna10WriterImpl11setPSDCountENSt8uint16_tE","dna::WriterImpl::setPSDCount"],[0,2,1,"_CPPv4N3dna10WriterImpl11setPSDCountENSt8uint16_tE","dna::WriterImpl::setPSDCount::count"],[0,1,1,"_CPPv4N3dna10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDRowIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDRowIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDRowIndices::rowIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dna::WriterImpl::setPSDValues"],[0,2,1,"_CPPv4N3dna10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dna::WriterImpl::setPSDValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dna::WriterImpl::setPSDValues::weights"],[0,1,1,"_CPPv4N3dna10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dna::WriterImpl::setRawControlName"],[0,2,1,"_CPPv4N3dna10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dna::WriterImpl::setRawControlName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dna::WriterImpl::setRawControlName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl15setRotationUnitE12RotationUnit","dna::WriterImpl::setRotationUnit"],[0,2,1,"_CPPv4N3dna10WriterImpl15setRotationUnitE12RotationUnit","dna::WriterImpl::setRotationUnit::unit"],[0,1,1,"_CPPv4N3dna10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setSkinWeightsJointIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setSkinWeightsJointIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setSkinWeightsJointIndices::jointIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setSkinWeightsJointIndices::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setSkinWeightsJointIndices::vertexIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::WriterImpl::setSkinWeightsValues"],[0,2,1,"_CPPv4N3dna10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::WriterImpl::setSkinWeightsValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::WriterImpl::setSkinWeightsValues::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::WriterImpl::setSkinWeightsValues::vertexIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::WriterImpl::setSkinWeightsValues::weights"],[0,1,1,"_CPPv4N3dna10WriterImpl18setTranslationUnitE15TranslationUnit","dna::WriterImpl::setTranslationUnit"],[0,2,1,"_CPPv4N3dna10WriterImpl18setTranslationUnitE15TranslationUnit","dna::WriterImpl::setTranslationUnit::unit"],[0,1,1,"_CPPv4N3dna10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::WriterImpl::setVertexLayouts"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::WriterImpl::setVertexLayouts::count"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::WriterImpl::setVertexLayouts::layouts"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::WriterImpl::setVertexLayouts::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::WriterImpl::setVertexNormals"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::WriterImpl::setVertexNormals::count"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::WriterImpl::setVertexNormals::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::WriterImpl::setVertexNormals::normals"],[0,1,1,"_CPPv4N3dna10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::WriterImpl::setVertexPositions"],[0,2,1,"_CPPv4N3dna10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::WriterImpl::setVertexPositions::count"],[0,2,1,"_CPPv4N3dna10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::WriterImpl::setVertexPositions::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::WriterImpl::setVertexPositions::positions"],[0,1,1,"_CPPv4N3dna10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::WriterImpl::setVertexTextureCoordinates"],[0,2,1,"_CPPv4N3dna10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::WriterImpl::setVertexTextureCoordinates::count"],[0,2,1,"_CPPv4N3dna10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::WriterImpl::setVertexTextureCoordinates::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::WriterImpl::setVertexTextureCoordinates::textureCoordinates"],[12,0,1,"_CPPv4N4dnac17AnimatedMapFilterE","dnac::AnimatedMapFilter"],[12,1,1,"_CPPv4N4dnac17AnimatedMapFilter17AnimatedMapFilterEP14MemoryResource","dnac::AnimatedMapFilter::AnimatedMapFilter"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter17AnimatedMapFilterEP14MemoryResource","dnac::AnimatedMapFilter::AnimatedMapFilter::memRes_"],[12,3,1,"_CPPv4N4dnac17AnimatedMapFilter21animatedMapLODIndicesE","dnac::AnimatedMapFilter::animatedMapLODIndices"],[12,1,1,"_CPPv4N4dnac17AnimatedMapFilter5applyER11RawBehavior","dnac::AnimatedMapFilter::apply"],[12,1,1,"_CPPv4N4dnac17AnimatedMapFilter5applyER13RawDefinition","dnac::AnimatedMapFilter::apply"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter5applyER11RawBehavior","dnac::AnimatedMapFilter::apply::dest"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter5applyER13RawDefinition","dnac::AnimatedMapFilter::apply::dest"],[12,1,1,"_CPPv4N4dnac17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6MatrixINSt8uint16_tEE","dnac::AnimatedMapFilter::configure"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6MatrixINSt8uint16_tEE","dnac::AnimatedMapFilter::configure::allowedAnimatedMapIndices"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6MatrixINSt8uint16_tEE","dnac::AnimatedMapFilter::configure::animatedMapCount"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6MatrixINSt8uint16_tEE","dnac::AnimatedMapFilter::configure::lodIndices"],[12,3,1,"_CPPv4N4dnac17AnimatedMapFilter6memResE","dnac::AnimatedMapFilter::memRes"],[12,1,1,"_CPPv4NK4dnac17AnimatedMapFilter6passesENSt8uint16_tE","dnac::AnimatedMapFilter::passes"],[12,2,1,"_CPPv4NK4dnac17AnimatedMapFilter6passesENSt8uint16_tE","dnac::AnimatedMapFilter::passes::index"],[12,3,1,"_CPPv4N4dnac17AnimatedMapFilter14passingIndicesE","dnac::AnimatedMapFilter::passingIndices"],[12,3,1,"_CPPv4N4dnac17AnimatedMapFilter15remappedIndicesE","dnac::AnimatedMapFilter::remappedIndices"],[12,0,1,"_CPPv4N4dnac8BaseImplE","dnac::BaseImpl"],[12,1,1,"_CPPv4N4dnac8BaseImpl8BaseImplEP14MemoryResource","dnac::BaseImpl::BaseImpl"],[12,1,1,"_CPPv4N4dnac8BaseImpl8BaseImplERK8BaseImpl","dnac::BaseImpl::BaseImpl"],[12,1,1,"_CPPv4N4dnac8BaseImpl8BaseImplERR8BaseImpl","dnac::BaseImpl::BaseImpl"],[12,2,1,"_CPPv4N4dnac8BaseImpl8BaseImplEP14MemoryResource","dnac::BaseImpl::BaseImpl::memRes_"],[12,2,1,"_CPPv4N4dnac8BaseImpl8BaseImplERR8BaseImpl","dnac::BaseImpl::BaseImpl::rhs"],[12,3,1,"_CPPv4N4dnac8BaseImpl3dnaE","dnac::BaseImpl::dna"],[12,1,1,"_CPPv4N4dnac8BaseImpl17getMemoryResourceEv","dnac::BaseImpl::getMemoryResource"],[12,3,1,"_CPPv4N4dnac8BaseImpl6memResE","dnac::BaseImpl::memRes"],[12,1,1,"_CPPv4N4dnac8BaseImplaSERK8BaseImpl","dnac::BaseImpl::operator="],[12,1,1,"_CPPv4N4dnac8BaseImplaSERR8BaseImpl","dnac::BaseImpl::operator="],[12,1,1,"_CPPv4N4dnac8BaseImplD0Ev","dnac::BaseImpl::~BaseImpl"],[12,0,1,"_CPPv4N4dnac16BlendShapeFilterE","dnac::BlendShapeFilter"],[12,1,1,"_CPPv4N4dnac16BlendShapeFilter16BlendShapeFilterEP14MemoryResource","dnac::BlendShapeFilter::BlendShapeFilter"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter16BlendShapeFilterEP14MemoryResource","dnac::BlendShapeFilter::BlendShapeFilter::memRes_"],[12,1,1,"_CPPv4N4dnac16BlendShapeFilter5applyER11RawBehavior","dnac::BlendShapeFilter::apply"],[12,1,1,"_CPPv4N4dnac16BlendShapeFilter5applyER13RawDefinition","dnac::BlendShapeFilter::apply"],[12,1,1,"_CPPv4N4dnac16BlendShapeFilter5applyER7RawMesh","dnac::BlendShapeFilter::apply"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter5applyER11RawBehavior","dnac::BlendShapeFilter::apply::dest"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter5applyER13RawDefinition","dnac::BlendShapeFilter::apply::dest"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter5applyER7RawMesh","dnac::BlendShapeFilter::apply::dest"],[12,1,1,"_CPPv4N4dnac16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6VectorINSt8uint16_tEE","dnac::BlendShapeFilter::configure"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6VectorINSt8uint16_tEE","dnac::BlendShapeFilter::configure::allowedBlendShapeIndices"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6VectorINSt8uint16_tEE","dnac::BlendShapeFilter::configure::blendShapeCount"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6VectorINSt8uint16_tEE","dnac::BlendShapeFilter::configure::blendShapeLODs"],[12,3,1,"_CPPv4N4dnac16BlendShapeFilter6memResE","dnac::BlendShapeFilter::memRes"],[12,3,1,"_CPPv4N4dnac16BlendShapeFilter17newBlendShapeLODsE","dnac::BlendShapeFilter::newBlendShapeLODs"],[12,1,1,"_CPPv4NK4dnac16BlendShapeFilter6passesENSt8uint16_tE","dnac::BlendShapeFilter::passes"],[12,2,1,"_CPPv4NK4dnac16BlendShapeFilter6passesENSt8uint16_tE","dnac::BlendShapeFilter::passes::index"],[12,3,1,"_CPPv4N4dnac16BlendShapeFilter14passingIndicesE","dnac::BlendShapeFilter::passingIndices"],[12,3,1,"_CPPv4N4dnac16BlendShapeFilter15remappedIndicesE","dnac::BlendShapeFilter::remappedIndices"],[12,0,1,"_CPPv4N4dnac11BoundingBoxE","dnac::BoundingBox"],[12,1,1,"_CPPv4I0EN4dnac11BoundingBox11BoundingBoxE10TContainerf","dnac::BoundingBox::BoundingBox"],[12,1,1,"_CPPv4I0_PNSt9enable_ifINSt7is_sameI27unqualified_iter_value_typeI5TIterE5fvec2E5valueEvE4typeEEN4dnac11BoundingBox11BoundingBoxE5TIter5TIterf","dnac::BoundingBox::BoundingBox"],[12,5,1,"_CPPv4I0EN4dnac11BoundingBox11BoundingBoxE10TContainerf","dnac::BoundingBox::BoundingBox::TContainer"],[12,5,1,"_CPPv4I0_PNSt9enable_ifINSt7is_sameI27unqualified_iter_value_typeI5TIterE5fvec2E5valueEvE4typeEEN4dnac11BoundingBox11BoundingBoxE5TIter5TIterf","dnac::BoundingBox::BoundingBox::TIter"],[12,2,1,"_CPPv4I0EN4dnac11BoundingBox11BoundingBoxE10TContainerf","dnac::BoundingBox::BoundingBox::alpha"],[12,2,1,"_CPPv4I0_PNSt9enable_ifINSt7is_sameI27unqualified_iter_value_typeI5TIterE5fvec2E5valueEvE4typeEEN4dnac11BoundingBox11BoundingBoxE5TIter5TIterf","dnac::BoundingBox::BoundingBox::alpha"],[12,2,1,"_CPPv4I0_PNSt9enable_ifINSt7is_sameI27unqualified_iter_value_typeI5TIterE5fvec2E5valueEvE4typeEEN4dnac11BoundingBox11BoundingBoxE5TIter5TIterf","dnac::BoundingBox::BoundingBox::begin"],[12,2,1,"_CPPv4I0EN4dnac11BoundingBox11BoundingBoxE10TContainerf","dnac::BoundingBox::BoundingBox::container"],[12,2,1,"_CPPv4I0_PNSt9enable_ifINSt7is_sameI27unqualified_iter_value_typeI5TIterE5fvec2E5valueEvE4typeEEN4dnac11BoundingBox11BoundingBoxE5TIter5TIterf","dnac::BoundingBox::BoundingBox::end"],[12,1,1,"_CPPv4NK4dnac11BoundingBox8containsERK5fvec2","dnac::BoundingBox::contains"],[12,2,1,"_CPPv4NK4dnac11BoundingBox8containsERK5fvec2","dnac::BoundingBox::contains::point"],[12,3,1,"_CPPv4N4dnac11BoundingBox12defaultAlphaE","dnac::BoundingBox::defaultAlpha"],[12,1,1,"_CPPv4NK4dnac11BoundingBox6getMaxEv","dnac::BoundingBox::getMax"],[12,1,1,"_CPPv4NK4dnac11BoundingBox6getMinEv","dnac::BoundingBox::getMin"],[12,3,1,"_CPPv4N4dnac11BoundingBox3maxE","dnac::BoundingBox::max"],[12,3,1,"_CPPv4N4dnac11BoundingBox3minE","dnac::BoundingBox::min"],[12,4,1,"_CPPv4I0EN4dnac11BoundingBox27unqualified_iter_value_typeE","dnac::BoundingBox::unqualified_iter_value_type"],[12,5,1,"_CPPv4I0EN4dnac11BoundingBox27unqualified_iter_value_typeE","dnac::BoundingBox::unqualified_iter_value_type::TIter"],[12,0,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommandE","dnac::CalculateMeshLowerLODsCommand"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandENSt8uint16_tEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandERK29CalculateMeshLowerLODsCommand","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandERR29CalculateMeshLowerLODsCommand","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandENSt8uint16_tEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand::memRes"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand::memRes"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandENSt8uint16_tEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand::meshIndex"],[12,0,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4ImplE","dnac::CalculateMeshLowerLODsCommand::Impl"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl4ImplEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl4ImplEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl5SuperE","dnac::CalculateMeshLowerLODsCommand::Impl::Super"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl26findIndicesOfMeshLowerLODsEP21DNACalibDNAReaderImpl","dnac::CalculateMeshLowerLODsCommand::Impl::findIndicesOfMeshLowerLODs"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl26findIndicesOfMeshLowerLODsEP21DNACalibDNAReaderImpl","dnac::CalculateMeshLowerLODsCommand::Impl::findIndicesOfMeshLowerLODs::output"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl11getMeshNameEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::Impl::getMeshName"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl11getMeshNameEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::Impl::getMeshName::mi"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl11getMeshNameEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::Impl::getMeshName::output"],[12,3,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl9meshIndexE","dnac::CalculateMeshLowerLODsCommand::Impl::meshIndex"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::CalculateMeshLowerLODsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::CalculateMeshLowerLODsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::Impl::setMeshIndex"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::Impl::setMeshIndex::meshIndex_"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommandaSERK29CalculateMeshLowerLODsCommand","dnac::CalculateMeshLowerLODsCommand::operator="],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommandaSERR29CalculateMeshLowerLODsCommand","dnac::CalculateMeshLowerLODsCommand::operator="],[12,3,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand5pImplE","dnac::CalculateMeshLowerLODsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand3runEP17DNACalibDNAReader","dnac::CalculateMeshLowerLODsCommand::run"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand3runEP17DNACalibDNAReader","dnac::CalculateMeshLowerLODsCommand::run::output"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand12setMeshIndexENSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::setMeshIndex"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand12setMeshIndexENSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::setMeshIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommandD0Ev","dnac::CalculateMeshLowerLODsCommand::~CalculateMeshLowerLODsCommand"],[12,0,1,"_CPPv4N4dnac23ClearBlendShapesCommandE","dnac::ClearBlendShapesCommand"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand23ClearBlendShapesCommandEP14MemoryResource","dnac::ClearBlendShapesCommand::ClearBlendShapesCommand"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand23ClearBlendShapesCommandERK23ClearBlendShapesCommand","dnac::ClearBlendShapesCommand::ClearBlendShapesCommand"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand23ClearBlendShapesCommandERR23ClearBlendShapesCommand","dnac::ClearBlendShapesCommand::ClearBlendShapesCommand"],[12,2,1,"_CPPv4N4dnac23ClearBlendShapesCommand23ClearBlendShapesCommandEP14MemoryResource","dnac::ClearBlendShapesCommand::ClearBlendShapesCommand::memRes"],[12,0,1,"_CPPv4N4dnac23ClearBlendShapesCommand4ImplE","dnac::ClearBlendShapesCommand::Impl"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand4Impl4ImplEP14MemoryResource","dnac::ClearBlendShapesCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac23ClearBlendShapesCommand4Impl4ImplEP14MemoryResource","dnac::ClearBlendShapesCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac23ClearBlendShapesCommand4Impl5SuperE","dnac::ClearBlendShapesCommand::Impl::Super"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::ClearBlendShapesCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac23ClearBlendShapesCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::ClearBlendShapesCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommandaSERK23ClearBlendShapesCommand","dnac::ClearBlendShapesCommand::operator="],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommandaSERR23ClearBlendShapesCommand","dnac::ClearBlendShapesCommand::operator="],[12,3,1,"_CPPv4N4dnac23ClearBlendShapesCommand5pImplE","dnac::ClearBlendShapesCommand::pImpl"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand3runEP17DNACalibDNAReader","dnac::ClearBlendShapesCommand::run"],[12,2,1,"_CPPv4N4dnac23ClearBlendShapesCommand3runEP17DNACalibDNAReader","dnac::ClearBlendShapesCommand::run::output"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommandD0Ev","dnac::ClearBlendShapesCommand::~ClearBlendShapesCommand"],[12,0,1,"_CPPv4N4dnac7CommandE","dnac::Command"],[12,1,1,"_CPPv4N4dnac7Command3runEP17DNACalibDNAReader","dnac::Command::run"],[12,2,1,"_CPPv4N4dnac7Command3runEP17DNACalibDNAReader","dnac::Command::run::output"],[12,1,1,"_CPPv4N4dnac7CommandD0Ev","dnac::Command::~Command"],[12,0,1,"_CPPv4I0EN4dnac15CommandImplBaseE","dnac::CommandImplBase"],[12,1,1,"_CPPv4N4dnac15CommandImplBase15CommandImplBaseEP14MemoryResource","dnac::CommandImplBase::CommandImplBase"],[12,2,1,"_CPPv4N4dnac15CommandImplBase15CommandImplBaseEP14MemoryResource","dnac::CommandImplBase::CommandImplBase::memRes_"],[12,5,1,"_CPPv4I0EN4dnac15CommandImplBaseE","dnac::CommandImplBase::TCommand"],[12,1,1,"_CPPv4N4dnac15CommandImplBase6createEP14MemoryResource","dnac::CommandImplBase::create"],[12,2,1,"_CPPv4N4dnac15CommandImplBase6createEP14MemoryResource","dnac::CommandImplBase::create::memRes"],[12,1,1,"_CPPv4N4dnac15CommandImplBase7destroyEP8TCommand","dnac::CommandImplBase::destroy"],[12,2,1,"_CPPv4N4dnac15CommandImplBase7destroyEP8TCommand","dnac::CommandImplBase::destroy::instance"],[12,1,1,"_CPPv4N4dnac15CommandImplBase17getMemoryResourceEv","dnac::CommandImplBase::getMemoryResource"],[12,3,1,"_CPPv4N4dnac15CommandImplBase6memResE","dnac::CommandImplBase::memRes"],[12,0,1,"_CPPv4N4dnac15CommandSequenceE","dnac::CommandSequence"],[12,1,1,"_CPPv4N4dnac15CommandSequence15CommandSequenceEP14MemoryResource","dnac::CommandSequence::CommandSequence"],[12,1,1,"_CPPv4N4dnac15CommandSequence15CommandSequenceERK15CommandSequence","dnac::CommandSequence::CommandSequence"],[12,1,1,"_CPPv4N4dnac15CommandSequence15CommandSequenceERR15CommandSequence","dnac::CommandSequence::CommandSequence"],[12,2,1,"_CPPv4N4dnac15CommandSequence15CommandSequenceEP14MemoryResource","dnac::CommandSequence::CommandSequence::memRes"],[12,0,1,"_CPPv4N4dnac15CommandSequence4ImplE","dnac::CommandSequence::Impl"],[12,1,1,"_CPPv4N4dnac15CommandSequence4Impl4ImplEP14MemoryResource","dnac::CommandSequence::Impl::Impl"],[12,2,1,"_CPPv4N4dnac15CommandSequence4Impl4ImplEP14MemoryResource","dnac::CommandSequence::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac15CommandSequence4Impl5SuperE","dnac::CommandSequence::Impl::Super"],[12,1,1,"_CPPv4N4dnac15CommandSequence4Impl3addEP7Command","dnac::CommandSequence::Impl::add"],[12,2,1,"_CPPv4N4dnac15CommandSequence4Impl3addEP7Command","dnac::CommandSequence::Impl::add::command"],[12,3,1,"_CPPv4N4dnac15CommandSequence4Impl8commandsE","dnac::CommandSequence::Impl::commands"],[12,1,1,"_CPPv4NK4dnac15CommandSequence4Impl8containsEP7Command","dnac::CommandSequence::Impl::contains"],[12,2,1,"_CPPv4NK4dnac15CommandSequence4Impl8containsEP7Command","dnac::CommandSequence::Impl::contains::command"],[12,1,1,"_CPPv4N4dnac15CommandSequence4Impl6removeEP7Command","dnac::CommandSequence::Impl::remove"],[12,2,1,"_CPPv4N4dnac15CommandSequence4Impl6removeEP7Command","dnac::CommandSequence::Impl::remove::command"],[12,1,1,"_CPPv4N4dnac15CommandSequence4Impl3runEP17DNACalibDNAReader","dnac::CommandSequence::Impl::run"],[12,2,1,"_CPPv4N4dnac15CommandSequence4Impl3runEP17DNACalibDNAReader","dnac::CommandSequence::Impl::run::output"],[12,1,1,"_CPPv4NK4dnac15CommandSequence4Impl4sizeEv","dnac::CommandSequence::Impl::size"],[12,1,1,"_CPPv4IDpEN4dnac15CommandSequence3addEvDp8Commands","dnac::CommandSequence::add"],[12,1,1,"_CPPv4N4dnac15CommandSequence3addE9ArrayViewI7CommandE","dnac::CommandSequence::add"],[12,1,1,"_CPPv4N4dnac15CommandSequence3addEP7Command","dnac::CommandSequence::add"],[12,5,1,"_CPPv4IDpEN4dnac15CommandSequence3addEvDp8Commands","dnac::CommandSequence::add::Commands"],[12,2,1,"_CPPv4N4dnac15CommandSequence3addEP7Command","dnac::CommandSequence::add::command"],[12,2,1,"_CPPv4IDpEN4dnac15CommandSequence3addEvDp8Commands","dnac::CommandSequence::add::commands"],[12,2,1,"_CPPv4N4dnac15CommandSequence3addE9ArrayViewI7CommandE","dnac::CommandSequence::add::commands"],[12,1,1,"_CPPv4NK4dnac15CommandSequence8containsEP7Command","dnac::CommandSequence::contains"],[12,2,1,"_CPPv4NK4dnac15CommandSequence8containsEP7Command","dnac::CommandSequence::contains::command"],[12,1,1,"_CPPv4N4dnac15CommandSequenceaSERK15CommandSequence","dnac::CommandSequence::operator="],[12,1,1,"_CPPv4N4dnac15CommandSequenceaSERR15CommandSequence","dnac::CommandSequence::operator="],[12,3,1,"_CPPv4N4dnac15CommandSequence5pImplE","dnac::CommandSequence::pImpl"],[12,1,1,"_CPPv4IDpEN4dnac15CommandSequence6removeEvDp8Commands","dnac::CommandSequence::remove"],[12,1,1,"_CPPv4N4dnac15CommandSequence6removeE9ArrayViewI7CommandE","dnac::CommandSequence::remove"],[12,1,1,"_CPPv4N4dnac15CommandSequence6removeEP7Command","dnac::CommandSequence::remove"],[12,5,1,"_CPPv4IDpEN4dnac15CommandSequence6removeEvDp8Commands","dnac::CommandSequence::remove::Commands"],[12,2,1,"_CPPv4N4dnac15CommandSequence6removeEP7Command","dnac::CommandSequence::remove::command"],[12,2,1,"_CPPv4IDpEN4dnac15CommandSequence6removeEvDp8Commands","dnac::CommandSequence::remove::commands"],[12,2,1,"_CPPv4N4dnac15CommandSequence6removeE9ArrayViewI7CommandE","dnac::CommandSequence::remove::commands"],[12,1,1,"_CPPv4N4dnac15CommandSequence3runEP17DNACalibDNAReader","dnac::CommandSequence::run"],[12,2,1,"_CPPv4N4dnac15CommandSequence3runEP17DNACalibDNAReader","dnac::CommandSequence::run::output"],[12,1,1,"_CPPv4NK4dnac15CommandSequence4sizeEv","dnac::CommandSequence::size"],[12,1,1,"_CPPv4N4dnac15CommandSequenceD0Ev","dnac::CommandSequence::~CommandSequence"],[12,0,1,"_CPPv4I00EN4dnac18ConditionalCommandE","dnac::ConditionalCommand"],[12,4,1,"_CPPv4N4dnac18ConditionalCommand11CommandTypeE","dnac::ConditionalCommand::CommandType"],[12,4,1,"_CPPv4N4dnac18ConditionalCommand13ConditionTypeE","dnac::ConditionalCommand::ConditionType"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandEP11CommandType13ConditionType","dnac::ConditionalCommand::ConditionalCommand"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandERK18ConditionalCommand","dnac::ConditionalCommand::ConditionalCommand"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandERR18ConditionalCommand","dnac::ConditionalCommand::ConditionalCommand"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandEv","dnac::ConditionalCommand::ConditionalCommand"],[12,2,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandEP11CommandType13ConditionType","dnac::ConditionalCommand::ConditionalCommand::command_"],[12,2,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandEP11CommandType13ConditionType","dnac::ConditionalCommand::ConditionalCommand::condition_"],[12,5,1,"_CPPv4I00EN4dnac18ConditionalCommandE","dnac::ConditionalCommand::TCommand"],[12,5,1,"_CPPv4I00EN4dnac18ConditionalCommandE","dnac::ConditionalCommand::TCondition"],[12,3,1,"_CPPv4N4dnac18ConditionalCommand7commandE","dnac::ConditionalCommand::command"],[12,3,1,"_CPPv4N4dnac18ConditionalCommand9conditionE","dnac::ConditionalCommand::condition"],[12,1,1,"_CPPv4N4dnac18ConditionalCommandaSERK18ConditionalCommand","dnac::ConditionalCommand::operator="],[12,1,1,"_CPPv4N4dnac18ConditionalCommandaSERR18ConditionalCommand","dnac::ConditionalCommand::operator="],[12,1,1,"_CPPv4N4dnac18ConditionalCommand3runEP17DNACalibDNAReader","dnac::ConditionalCommand::run"],[12,2,1,"_CPPv4N4dnac18ConditionalCommand3runEP17DNACalibDNAReader","dnac::ConditionalCommand::run::output"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand10setCommandEP7Command","dnac::ConditionalCommand::setCommand"],[12,2,1,"_CPPv4N4dnac18ConditionalCommand10setCommandEP7Command","dnac::ConditionalCommand::setCommand::command_"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand12setConditionE13ConditionType","dnac::ConditionalCommand::setCondition"],[12,2,1,"_CPPv4N4dnac18ConditionalCommand12setConditionE13ConditionType","dnac::ConditionalCommand::setCondition::condition_"],[12,1,1,"_CPPv4N4dnac18ConditionalCommandD0Ev","dnac::ConditionalCommand::~ConditionalCommand"],[12,0,1,"_CPPv4N4dnac3DNAE","dnac::DNA"],[12,1,1,"_CPPv4N4dnac3DNA3DNAEP14MemoryResource","dnac::DNA::DNA"],[12,2,1,"_CPPv4N4dnac3DNA3DNAEP14MemoryResource","dnac::DNA::DNA::memRes_"],[12,3,1,"_CPPv4N4dnac3DNA8behaviorE","dnac::DNA::behavior"],[12,3,1,"_CPPv4N4dnac3DNA10definitionE","dnac::DNA::definition"],[12,3,1,"_CPPv4N4dnac3DNA10descriptorE","dnac::DNA::descriptor"],[12,3,1,"_CPPv4N4dnac3DNA3eofE","dnac::DNA::eof"],[12,3,1,"_CPPv4N4dnac3DNA8geometryE","dnac::DNA::geometry"],[12,1,1,"_CPPv4I0EN4dnac3DNA4loadEvR7Archive","dnac::DNA::load"],[12,5,1,"_CPPv4I0EN4dnac3DNA4loadEvR7Archive","dnac::DNA::load::Archive"],[12,2,1,"_CPPv4I0EN4dnac3DNA4loadEvR7Archive","dnac::DNA::load::archive"],[12,3,1,"_CPPv4N4dnac3DNA6memResE","dnac::DNA::memRes"],[12,1,1,"_CPPv4I0EN4dnac3DNA4saveEvR7Archive","dnac::DNA::save"],[12,5,1,"_CPPv4I0EN4dnac3DNA4saveEvR7Archive","dnac::DNA::save::Archive"],[12,2,1,"_CPPv4I0EN4dnac3DNA4saveEvR7Archive","dnac::DNA::save::archive"],[12,3,1,"_CPPv4N4dnac3DNA8sectionsE","dnac::DNA::sections"],[12,3,1,"_CPPv4N4dnac3DNA9signatureE","dnac::DNA::signature"],[12,1,1,"_CPPv4N4dnac3DNA14unloadBehaviorEv","dnac::DNA::unloadBehavior"],[12,1,1,"_CPPv4N4dnac3DNA16unloadDefinitionEv","dnac::DNA::unloadDefinition"],[12,1,1,"_CPPv4N4dnac3DNA14unloadGeometryEv","dnac::DNA::unloadGeometry"],[12,3,1,"_CPPv4N4dnac3DNA7versionE","dnac::DNA::version"],[12,0,1,"_CPPv4N4dnac17DNACalibDNAReaderE","dnac::DNACalibDNAReader"],[12,1,1,"_CPPv4N4dnac17DNACalibDNAReader6createEP14MemoryResource","dnac::DNACalibDNAReader::create"],[12,1,1,"_CPPv4N4dnac17DNACalibDNAReader6createEPKN3dna6ReaderEP14MemoryResource","dnac::DNACalibDNAReader::create"],[12,2,1,"_CPPv4N4dnac17DNACalibDNAReader6createEP14MemoryResource","dnac::DNACalibDNAReader::create::memRes"],[12,2,1,"_CPPv4N4dnac17DNACalibDNAReader6createEPKN3dna6ReaderEP14MemoryResource","dnac::DNACalibDNAReader::create::memRes"],[12,2,1,"_CPPv4N4dnac17DNACalibDNAReader6createEPKN3dna6ReaderEP14MemoryResource","dnac::DNACalibDNAReader::create::reader"],[12,1,1,"_CPPv4N4dnac17DNACalibDNAReader7destroyEP17DNACalibDNAReader","dnac::DNACalibDNAReader::destroy"],[12,2,1,"_CPPv4N4dnac17DNACalibDNAReader7destroyEP17DNACalibDNAReader","dnac::DNACalibDNAReader::destroy::instance"],[12,1,1,"_CPPv4N4dnac17DNACalibDNAReaderD0Ev","dnac::DNACalibDNAReader::~DNACalibDNAReader"],[12,0,1,"_CPPv4N4dnac21DNACalibDNAReaderImplE","dnac::DNACalibDNAReaderImpl"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21DNACalibDNAReaderImplEP14MemoryResource","dnac::DNACalibDNAReaderImpl::DNACalibDNAReaderImpl"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21DNACalibDNAReaderImplERK21DNACalibDNAReaderImpl","dnac::DNACalibDNAReaderImpl::DNACalibDNAReaderImpl"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21DNACalibDNAReaderImplERR21DNACalibDNAReaderImpl","dnac::DNACalibDNAReaderImpl::DNACalibDNAReaderImpl"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21DNACalibDNAReaderImplEP14MemoryResource","dnac::DNACalibDNAReaderImpl::DNACalibDNAReaderImpl::memRes_"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImplaSERK21DNACalibDNAReaderImpl","dnac::DNACalibDNAReaderImpl::operator="],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImplaSERR21DNACalibDNAReaderImpl","dnac::DNACalibDNAReaderImpl::operator="],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl22pruneBlendShapeTargetsEf","dnac::DNACalibDNAReaderImpl::pruneBlendShapeTargets"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl22pruneBlendShapeTargetsEf","dnac::DNACalibDNAReaderImpl::pruneBlendShapeTargets::threshold"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18removeAnimatedMapsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeAnimatedMaps"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18removeAnimatedMapsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeAnimatedMaps::animatedMapIndices"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl17removeBlendShapesE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeBlendShapes"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl17removeBlendShapesE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeBlendShapes::blendShapeIndices"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21removeJointAnimationsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeJointAnimations"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21removeJointAnimationsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeJointAnimations::jointIndex"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl12removeJointsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeJoints"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl12removeJointsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeJoints::jointIndices"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl12removeMeshesE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeMeshes"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl12removeMeshesE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeMeshes::meshIndices"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::deltas"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::meshIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::meshIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::xs"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::ys"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::zs"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE14ConstArrayViewINSt8uint32_tEE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetVertexIndices"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE14ConstArrayViewINSt8uint32_tEE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE14ConstArrayViewINSt8uint32_tEE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetVertexIndices::meshIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE14ConstArrayViewINSt8uint32_tEE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetVertexIndices::vertexIndices"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl19setJointGroupValuesENSt8uint16_tERR15AlignedDynArrayIfE","dnac::DNACalibDNAReaderImpl::setJointGroupValues"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl19setJointGroupValuesENSt8uint16_tERR15AlignedDynArrayIfE","dnac::DNACalibDNAReaderImpl::setJointGroupValues::jointGroupIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl19setJointGroupValuesENSt8uint16_tERR15AlignedDynArrayIfE","dnac::DNACalibDNAReaderImpl::setJointGroupValues::values"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl11setLODCountENSt8uint16_tE","dnac::DNACalibDNAReaderImpl::setLODCount"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl11setLODCountENSt8uint16_tE","dnac::DNACalibDNAReaderImpl::setLODCount::lodCount"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl23setNeutralJointRotationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointRotation"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl23setNeutralJointRotationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointRotation::index"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl23setNeutralJointRotationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointRotation::rotation"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations::rotations"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations::xs"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations::ys"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations::zs"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl26setNeutralJointTranslationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslation"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl26setNeutralJointTranslationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslation::index"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl26setNeutralJointTranslationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslation::translation"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations::translations"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations::xs"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations::ys"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations::zs"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setVertexPositions"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setVertexPositions"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setVertexPositions::meshIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setVertexPositions::meshIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setVertexPositions::positions"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setVertexPositions::xs"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setVertexPositions::ys"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setVertexPositions::zs"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImplD0Ev","dnac::DNACalibDNAReaderImpl::~DNACalibDNAReaderImpl"],[12,0,1,"_CPPv4I0EN4dnac16DenormalizedDataE","dnac::DenormalizedData"],[12,1,1,"_CPPv4N4dnac16DenormalizedData16DenormalizedDataEP14MemoryResource","dnac::DenormalizedData::DenormalizedData"],[12,2,1,"_CPPv4N4dnac16DenormalizedData16DenormalizedDataEP14MemoryResource","dnac::DenormalizedData::DenormalizedData::memRes"],[12,5,1,"_CPPv4I0EN4dnac16DenormalizedDataE","dnac::DenormalizedData::Reader"],[12,3,1,"_CPPv4N4dnac16DenormalizedData29jointVariableAttributeIndicesE","dnac::DenormalizedData::jointVariableAttributeIndices"],[12,3,1,"_CPPv4N4dnac16DenormalizedData28meshBlendShapeMappingIndicesE","dnac::DenormalizedData::meshBlendShapeMappingIndices"],[12,1,1,"_CPPv4N4dnac16DenormalizedData8populateEPK6Reader","dnac::DenormalizedData::populate"],[12,2,1,"_CPPv4N4dnac16DenormalizedData8populateEPK6Reader","dnac::DenormalizedData::populate::source"],[12,1,1,"_CPPv4N4dnac16DenormalizedData37populateJointVariableAttributeIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateJointVariableAttributeIndices"],[12,2,1,"_CPPv4N4dnac16DenormalizedData37populateJointVariableAttributeIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateJointVariableAttributeIndices::destination"],[12,2,1,"_CPPv4N4dnac16DenormalizedData37populateJointVariableAttributeIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateJointVariableAttributeIndices::source"],[12,1,1,"_CPPv4N4dnac16DenormalizedData36populateMeshBlendShapeMappingIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateMeshBlendShapeMappingIndices"],[12,2,1,"_CPPv4N4dnac16DenormalizedData36populateMeshBlendShapeMappingIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateMeshBlendShapeMappingIndices::destination"],[12,2,1,"_CPPv4N4dnac16DenormalizedData36populateMeshBlendShapeMappingIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateMeshBlendShapeMappingIndices::source"],[12,0,1,"_CPPv4I0EN4dnac13ExpectedValueE","dnac::ExpectedValue"],[12,1,1,"_CPPv4N4dnac13ExpectedValue13ExpectedValueERK1T","dnac::ExpectedValue::ExpectedValue"],[12,2,1,"_CPPv4N4dnac13ExpectedValue13ExpectedValueERK1T","dnac::ExpectedValue::ExpectedValue::value"],[12,5,1,"_CPPv4I0EN4dnac13ExpectedValueE","dnac::ExpectedValue::T"],[12,3,1,"_CPPv4N4dnac13ExpectedValue8expectedE","dnac::ExpectedValue::expected"],[12,3,1,"_CPPv4N4dnac13ExpectedValue3gotE","dnac::ExpectedValue::got"],[12,1,1,"_CPPv4I0EN4dnac13ExpectedValue4loadEvR7Archive","dnac::ExpectedValue::load"],[12,5,1,"_CPPv4I0EN4dnac13ExpectedValue4loadEvR7Archive","dnac::ExpectedValue::load::Archive"],[12,2,1,"_CPPv4I0EN4dnac13ExpectedValue4loadEvR7Archive","dnac::ExpectedValue::load::archive"],[12,1,1,"_CPPv4NK4dnac13ExpectedValue7matchesEv","dnac::ExpectedValue::matches"],[12,1,1,"_CPPv4I0EN4dnac13ExpectedValue4saveEvR7Archive","dnac::ExpectedValue::save"],[12,5,1,"_CPPv4I0EN4dnac13ExpectedValue4saveEvR7Archive","dnac::ExpectedValue::save::Archive"],[12,2,1,"_CPPv4I0EN4dnac13ExpectedValue4saveEvR7Archive","dnac::ExpectedValue::save::archive"],[12,0,1,"_CPPv4N4dnac11JointFilterE","dnac::JointFilter"],[12,1,1,"_CPPv4N4dnac11JointFilter11JointFilterEP14MemoryResource","dnac::JointFilter::JointFilter"],[12,2,1,"_CPPv4N4dnac11JointFilter11JointFilterEP14MemoryResource","dnac::JointFilter::JointFilter::memRes_"],[12,6,1,"_CPPv4N4dnac11JointFilter6OptionE","dnac::JointFilter::Option"],[12,7,1,"_CPPv4N4dnac11JointFilter6Option3AllE","dnac::JointFilter::Option::All"],[12,7,1,"_CPPv4N4dnac11JointFilter6Option13AnimationOnlyE","dnac::JointFilter::Option::AnimationOnly"],[12,1,1,"_CPPv4N4dnac11JointFilter5applyER11RawBehavior","dnac::JointFilter::apply"],[12,1,1,"_CPPv4N4dnac11JointFilter5applyER13RawDefinition","dnac::JointFilter::apply"],[12,1,1,"_CPPv4N4dnac11JointFilter5applyER20RawVertexSkinWeights","dnac::JointFilter::apply"],[12,2,1,"_CPPv4N4dnac11JointFilter5applyER11RawBehavior","dnac::JointFilter::apply::dest"],[12,2,1,"_CPPv4N4dnac11JointFilter5applyER13RawDefinition","dnac::JointFilter::apply::dest"],[12,2,1,"_CPPv4N4dnac11JointFilter5applyER20RawVertexSkinWeights","dnac::JointFilter::apply::dest"],[12,1,1,"_CPPv4N4dnac11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dnac::JointFilter::configure"],[12,2,1,"_CPPv4N4dnac11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dnac::JointFilter::configure::allowedJointIndices"],[12,2,1,"_CPPv4N4dnac11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dnac::JointFilter::configure::jointCount"],[12,2,1,"_CPPv4N4dnac11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dnac::JointFilter::configure::option_"],[12,1,1,"_CPPv4NK4dnac11JointFilter16maxRemappedIndexEv","dnac::JointFilter::maxRemappedIndex"],[12,3,1,"_CPPv4N4dnac11JointFilter6memResE","dnac::JointFilter::memRes"],[12,3,1,"_CPPv4N4dnac11JointFilter6optionE","dnac::JointFilter::option"],[12,1,1,"_CPPv4NK4dnac11JointFilter6passesENSt8uint16_tE","dnac::JointFilter::passes"],[12,2,1,"_CPPv4NK4dnac11JointFilter6passesENSt8uint16_tE","dnac::JointFilter::passes::index"],[12,3,1,"_CPPv4N4dnac11JointFilter14passingIndicesE","dnac::JointFilter::passingIndices"],[12,1,1,"_CPPv4NK4dnac11JointFilter8remappedENSt8uint16_tE","dnac::JointFilter::remapped"],[12,2,1,"_CPPv4NK4dnac11JointFilter8remappedENSt8uint16_tE","dnac::JointFilter::remapped::oldIndex"],[12,3,1,"_CPPv4N4dnac11JointFilter15remappedIndicesE","dnac::JointFilter::remappedIndices"],[12,3,1,"_CPPv4N4dnac11JointFilter14rootJointIndexE","dnac::JointFilter::rootJointIndex"],[12,0,1,"_CPPv4N4dnac13LODConstraintE","dnac::LODConstraint"],[12,1,1,"_CPPv4N4dnac13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::LODConstraint::LODConstraint"],[12,1,1,"_CPPv4N4dnac13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dnac::LODConstraint::LODConstraint"],[12,2,1,"_CPPv4N4dnac13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::LODConstraint::LODConstraint::lods"],[12,2,1,"_CPPv4N4dnac13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dnac::LODConstraint::LODConstraint::maxLOD"],[12,2,1,"_CPPv4N4dnac13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::LODConstraint::LODConstraint::memRes"],[12,2,1,"_CPPv4N4dnac13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dnac::LODConstraint::LODConstraint::memRes"],[12,2,1,"_CPPv4N4dnac13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dnac::LODConstraint::LODConstraint::minLOD"],[12,1,1,"_CPPv4NK4dnac13LODConstraint7applyToER6VectorINSt8uint16_tEE","dnac::LODConstraint::applyTo"],[12,1,1,"_CPPv4NK4dnac13LODConstraint7applyToER8DynArrayINSt8uint16_tEE","dnac::LODConstraint::applyTo"],[12,2,1,"_CPPv4NK4dnac13LODConstraint7applyToER6VectorINSt8uint16_tEE","dnac::LODConstraint::applyTo::unconstrainedLODs"],[12,2,1,"_CPPv4NK4dnac13LODConstraint7applyToER8DynArrayINSt8uint16_tEE","dnac::LODConstraint::applyTo::unconstrainedLODs"],[12,1,1,"_CPPv4N4dnac13LODConstraint7clampToENSt8uint16_tE","dnac::LODConstraint::clampTo"],[12,2,1,"_CPPv4N4dnac13LODConstraint7clampToENSt8uint16_tE","dnac::LODConstraint::clampTo::lodCount"],[12,1,1,"_CPPv4NK4dnac13LODConstraint11getLODCountEv","dnac::LODConstraint::getLODCount"],[12,1,1,"_CPPv4NK4dnac13LODConstraint9getMaxLODEv","dnac::LODConstraint::getMaxLOD"],[12,1,1,"_CPPv4NK4dnac13LODConstraint9getMinLODEv","dnac::LODConstraint::getMinLOD"],[12,1,1,"_CPPv4NK4dnac13LODConstraint11hasImpactOnENSt8uint16_tE","dnac::LODConstraint::hasImpactOn"],[12,2,1,"_CPPv4NK4dnac13LODConstraint11hasImpactOnENSt8uint16_tE","dnac::LODConstraint::hasImpactOn::lodCount"],[12,3,1,"_CPPv4N4dnac13LODConstraint4lodsE","dnac::LODConstraint::lods"],[12,0,1,"_CPPv4N4dnac10LODMappingE","dnac::LODMapping"],[12,1,1,"_CPPv4N4dnac10LODMapping10LODMappingEP14MemoryResource","dnac::LODMapping::LODMapping"],[12,2,1,"_CPPv4N4dnac10LODMapping10LODMappingEP14MemoryResource","dnac::LODMapping::LODMapping::memRes_"],[12,1,1,"_CPPv4N4dnac10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::LODMapping::addIndices"],[12,2,1,"_CPPv4N4dnac10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::LODMapping::addIndices::count"],[12,2,1,"_CPPv4N4dnac10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::LODMapping::addIndices::index"],[12,2,1,"_CPPv4N4dnac10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::LODMapping::addIndices::source"],[12,1,1,"_CPPv4N4dnac10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dnac::LODMapping::associateLODWithIndices"],[12,2,1,"_CPPv4N4dnac10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dnac::LODMapping::associateLODWithIndices::index"],[12,2,1,"_CPPv4N4dnac10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dnac::LODMapping::associateLODWithIndices::lod"],[12,1,1,"_CPPv4N4dnac10LODMapping14cleanupIndicesEv","dnac::LODMapping::cleanupIndices"],[12,1,1,"_CPPv4N4dnac10LODMapping12clearIndicesENSt8uint16_tE","dnac::LODMapping::clearIndices"],[12,2,1,"_CPPv4N4dnac10LODMapping12clearIndicesENSt8uint16_tE","dnac::LODMapping::clearIndices::index"],[12,1,1,"_CPPv4N4dnac10LODMapping11discardLODsERK13LODConstraint","dnac::LODMapping::discardLODs"],[12,2,1,"_CPPv4N4dnac10LODMapping11discardLODsERK13LODConstraint","dnac::LODMapping::discardLODs::lodConstraint"],[12,1,1,"_CPPv4N4dnac10LODMapping13filterIndicesENSt8functionIFbNSt8uint16_tEEEE","dnac::LODMapping::filterIndices"],[12,2,1,"_CPPv4N4dnac10LODMapping13filterIndicesENSt8functionIFbNSt8uint16_tEEEE","dnac::LODMapping::filterIndices::filterer"],[12,1,1,"_CPPv4NK4dnac10LODMapping26getCombinedDistinctIndicesEP14MemoryResource","dnac::LODMapping::getCombinedDistinctIndices"],[12,2,1,"_CPPv4NK4dnac10LODMapping26getCombinedDistinctIndicesEP14MemoryResource","dnac::LODMapping::getCombinedDistinctIndices::memRes"],[12,1,1,"_CPPv4NK4dnac10LODMapping17getIndexListCountEv","dnac::LODMapping::getIndexListCount"],[12,1,1,"_CPPv4NK4dnac10LODMapping10getIndicesENSt8uint16_tE","dnac::LODMapping::getIndices"],[12,2,1,"_CPPv4NK4dnac10LODMapping10getIndicesENSt8uint16_tE","dnac::LODMapping::getIndices::lod"],[12,1,1,"_CPPv4NK4dnac10LODMapping11getLODCountEv","dnac::LODMapping::getLODCount"],[12,3,1,"_CPPv4N4dnac10LODMapping7indicesE","dnac::LODMapping::indices"],[12,3,1,"_CPPv4N4dnac10LODMapping4lodsE","dnac::LODMapping::lods"],[12,1,1,"_CPPv4N4dnac10LODMapping10mapIndicesENSt8functionIFNSt8uint16_tENSt8uint16_tEEEE","dnac::LODMapping::mapIndices"],[12,2,1,"_CPPv4N4dnac10LODMapping10mapIndicesENSt8functionIFNSt8uint16_tENSt8uint16_tEEEE","dnac::LODMapping::mapIndices::mapper"],[12,1,1,"_CPPv4N4dnac10LODMapping5resetEv","dnac::LODMapping::reset"],[12,1,1,"_CPPv4N4dnac10LODMapping12resetIndicesEv","dnac::LODMapping::resetIndices"],[12,1,1,"_CPPv4N4dnac10LODMapping9resetLODsEv","dnac::LODMapping::resetLODs"],[12,1,1,"_CPPv4N4dnac10LODMapping11setLODCountENSt8uint16_tE","dnac::LODMapping::setLODCount"],[12,2,1,"_CPPv4N4dnac10LODMapping11setLODCountENSt8uint16_tE","dnac::LODMapping::setLODCount::lodCount"],[12,0,1,"_CPPv4N4dnac10MeshFilterE","dnac::MeshFilter"],[12,1,1,"_CPPv4N4dnac10MeshFilter10MeshFilterEP14MemoryResource","dnac::MeshFilter::MeshFilter"],[12,2,1,"_CPPv4N4dnac10MeshFilter10MeshFilterEP14MemoryResource","dnac::MeshFilter::MeshFilter::memRes_"],[12,1,1,"_CPPv4N4dnac10MeshFilter5applyER13RawDefinition","dnac::MeshFilter::apply"],[12,2,1,"_CPPv4N4dnac10MeshFilter5applyER13RawDefinition","dnac::MeshFilter::apply::dest"],[12,1,1,"_CPPv4N4dnac10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dnac::MeshFilter::configure"],[12,2,1,"_CPPv4N4dnac10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dnac::MeshFilter::configure::allowedMeshIndices"],[12,2,1,"_CPPv4N4dnac10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dnac::MeshFilter::configure::meshCount"],[12,3,1,"_CPPv4N4dnac10MeshFilter6memResE","dnac::MeshFilter::memRes"],[12,1,1,"_CPPv4NK4dnac10MeshFilter6passesENSt8uint16_tE","dnac::MeshFilter::passes"],[12,2,1,"_CPPv4NK4dnac10MeshFilter6passesENSt8uint16_tE","dnac::MeshFilter::passes::index"],[12,3,1,"_CPPv4N4dnac10MeshFilter14passingIndicesE","dnac::MeshFilter::passingIndices"],[12,3,1,"_CPPv4N4dnac10MeshFilter15remappedIndicesE","dnac::MeshFilter::remappedIndices"],[12,0,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommandE","dnac::PruneBlendShapeTargetsCommand"],[12,0,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4ImplE","dnac::PruneBlendShapeTargetsCommand::Impl"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl4ImplEP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl4ImplEP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl5SuperE","dnac::PruneBlendShapeTargetsCommand::Impl::Super"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::PruneBlendShapeTargetsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::PruneBlendShapeTargetsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl12setThresholdEf","dnac::PruneBlendShapeTargetsCommand::Impl::setThreshold"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl12setThresholdEf","dnac::PruneBlendShapeTargetsCommand::Impl::setThreshold::threshold_"],[12,3,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl9thresholdE","dnac::PruneBlendShapeTargetsCommand::Impl::threshold"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandEP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandERK29PruneBlendShapeTargetsCommand","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandERR29PruneBlendShapeTargetsCommand","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandEfP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandEP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand::memRes"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandEfP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand::memRes"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandEfP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand::threshold"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommandaSERK29PruneBlendShapeTargetsCommand","dnac::PruneBlendShapeTargetsCommand::operator="],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommandaSERR29PruneBlendShapeTargetsCommand","dnac::PruneBlendShapeTargetsCommand::operator="],[12,3,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand5pImplE","dnac::PruneBlendShapeTargetsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand3runEP17DNACalibDNAReader","dnac::PruneBlendShapeTargetsCommand::run"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand3runEP17DNACalibDNAReader","dnac::PruneBlendShapeTargetsCommand::run::output"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand12setThresholdEf","dnac::PruneBlendShapeTargetsCommand::setThreshold"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand12setThresholdEf","dnac::PruneBlendShapeTargetsCommand::setThreshold::threshold"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommandD0Ev","dnac::PruneBlendShapeTargetsCommand::~PruneBlendShapeTargetsCommand"],[12,0,1,"_CPPv4N4dnac15RawAnimatedMapsE","dnac::RawAnimatedMaps"],[12,1,1,"_CPPv4N4dnac15RawAnimatedMaps15RawAnimatedMapsEP14MemoryResource","dnac::RawAnimatedMaps::RawAnimatedMaps"],[12,2,1,"_CPPv4N4dnac15RawAnimatedMaps15RawAnimatedMapsEP14MemoryResource","dnac::RawAnimatedMaps::RawAnimatedMaps::memRes"],[12,3,1,"_CPPv4N4dnac15RawAnimatedMaps12conditionalsE","dnac::RawAnimatedMaps::conditionals"],[12,3,1,"_CPPv4N4dnac15RawAnimatedMaps4lodsE","dnac::RawAnimatedMaps::lods"],[12,1,1,"_CPPv4I0EN4dnac15RawAnimatedMaps9serializeEvR7Archive","dnac::RawAnimatedMaps::serialize"],[12,5,1,"_CPPv4I0EN4dnac15RawAnimatedMaps9serializeEvR7Archive","dnac::RawAnimatedMaps::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac15RawAnimatedMaps9serializeEvR7Archive","dnac::RawAnimatedMaps::serialize::archive"],[12,0,1,"_CPPv4N4dnac11RawBehaviorE","dnac::RawBehavior"],[12,1,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::animatedMapsMarkerTarget"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::blendShapeChannelsMarkerTarget"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::controlsMarkerTarget"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::jointsMarkerTarget"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::markerTarget"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::memRes"],[12,3,1,"_CPPv4N4dnac11RawBehavior12animatedMapsE","dnac::RawBehavior::animatedMaps"],[12,3,1,"_CPPv4N4dnac11RawBehavior18animatedMapsMarkerE","dnac::RawBehavior::animatedMapsMarker"],[12,3,1,"_CPPv4N4dnac11RawBehavior18blendShapeChannelsE","dnac::RawBehavior::blendShapeChannels"],[12,3,1,"_CPPv4N4dnac11RawBehavior24blendShapeChannelsMarkerE","dnac::RawBehavior::blendShapeChannelsMarker"],[12,3,1,"_CPPv4N4dnac11RawBehavior8controlsE","dnac::RawBehavior::controls"],[12,3,1,"_CPPv4N4dnac11RawBehavior14controlsMarkerE","dnac::RawBehavior::controlsMarker"],[12,3,1,"_CPPv4N4dnac11RawBehavior6jointsE","dnac::RawBehavior::joints"],[12,3,1,"_CPPv4N4dnac11RawBehavior12jointsMarkerE","dnac::RawBehavior::jointsMarker"],[12,3,1,"_CPPv4N4dnac11RawBehavior6markerE","dnac::RawBehavior::marker"],[12,1,1,"_CPPv4I0EN4dnac11RawBehavior9serializeEvR7Archive","dnac::RawBehavior::serialize"],[12,5,1,"_CPPv4I0EN4dnac11RawBehavior9serializeEvR7Archive","dnac::RawBehavior::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac11RawBehavior9serializeEvR7Archive","dnac::RawBehavior::serialize::archive"],[12,0,1,"_CPPv4N4dnac21RawBlendShapeChannelsE","dnac::RawBlendShapeChannels"],[12,1,1,"_CPPv4N4dnac21RawBlendShapeChannels21RawBlendShapeChannelsEP14MemoryResource","dnac::RawBlendShapeChannels::RawBlendShapeChannels"],[12,2,1,"_CPPv4N4dnac21RawBlendShapeChannels21RawBlendShapeChannelsEP14MemoryResource","dnac::RawBlendShapeChannels::RawBlendShapeChannels::memRes"],[12,3,1,"_CPPv4N4dnac21RawBlendShapeChannels12inputIndicesE","dnac::RawBlendShapeChannels::inputIndices"],[12,3,1,"_CPPv4N4dnac21RawBlendShapeChannels4lodsE","dnac::RawBlendShapeChannels::lods"],[12,3,1,"_CPPv4N4dnac21RawBlendShapeChannels13outputIndicesE","dnac::RawBlendShapeChannels::outputIndices"],[12,1,1,"_CPPv4I0EN4dnac21RawBlendShapeChannels9serializeEvR7Archive","dnac::RawBlendShapeChannels::serialize"],[12,5,1,"_CPPv4I0EN4dnac21RawBlendShapeChannels9serializeEvR7Archive","dnac::RawBlendShapeChannels::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac21RawBlendShapeChannels9serializeEvR7Archive","dnac::RawBlendShapeChannels::serialize::archive"],[12,0,1,"_CPPv4N4dnac19RawBlendShapeTargetE","dnac::RawBlendShapeTarget"],[12,1,1,"_CPPv4N4dnac19RawBlendShapeTarget19RawBlendShapeTargetEP14MemoryResource","dnac::RawBlendShapeTarget::RawBlendShapeTarget"],[12,2,1,"_CPPv4N4dnac19RawBlendShapeTarget19RawBlendShapeTargetEP14MemoryResource","dnac::RawBlendShapeTarget::RawBlendShapeTarget::memRes"],[12,3,1,"_CPPv4N4dnac19RawBlendShapeTarget22blendShapeChannelIndexE","dnac::RawBlendShapeTarget::blendShapeChannelIndex"],[12,3,1,"_CPPv4N4dnac19RawBlendShapeTarget6deltasE","dnac::RawBlendShapeTarget::deltas"],[12,1,1,"_CPPv4I0EN4dnac19RawBlendShapeTarget9serializeEvR7Archive","dnac::RawBlendShapeTarget::serialize"],[12,5,1,"_CPPv4I0EN4dnac19RawBlendShapeTarget9serializeEvR7Archive","dnac::RawBlendShapeTarget::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac19RawBlendShapeTarget9serializeEvR7Archive","dnac::RawBlendShapeTarget::serialize::archive"],[12,3,1,"_CPPv4N4dnac19RawBlendShapeTarget13vertexIndicesE","dnac::RawBlendShapeTarget::vertexIndices"],[12,0,1,"_CPPv4N4dnac19RawConditionalTableE","dnac::RawConditionalTable"],[12,1,1,"_CPPv4N4dnac19RawConditionalTable19RawConditionalTableEP14MemoryResource","dnac::RawConditionalTable::RawConditionalTable"],[12,2,1,"_CPPv4N4dnac19RawConditionalTable19RawConditionalTableEP14MemoryResource","dnac::RawConditionalTable::RawConditionalTable::memRes"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable9cutValuesE","dnac::RawConditionalTable::cutValues"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable10fromValuesE","dnac::RawConditionalTable::fromValues"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable12inputIndicesE","dnac::RawConditionalTable::inputIndices"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable13outputIndicesE","dnac::RawConditionalTable::outputIndices"],[12,1,1,"_CPPv4I0EN4dnac19RawConditionalTable9serializeEvR7Archive","dnac::RawConditionalTable::serialize"],[12,5,1,"_CPPv4I0EN4dnac19RawConditionalTable9serializeEvR7Archive","dnac::RawConditionalTable::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac19RawConditionalTable9serializeEvR7Archive","dnac::RawConditionalTable::serialize::archive"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable11slopeValuesE","dnac::RawConditionalTable::slopeValues"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable8toValuesE","dnac::RawConditionalTable::toValues"],[12,0,1,"_CPPv4N4dnac11RawControlsE","dnac::RawControls"],[12,1,1,"_CPPv4N4dnac11RawControls11RawControlsEP14MemoryResource","dnac::RawControls::RawControls"],[12,2,1,"_CPPv4N4dnac11RawControls11RawControlsEP14MemoryResource","dnac::RawControls::RawControls::memRes"],[12,3,1,"_CPPv4N4dnac11RawControls12conditionalsE","dnac::RawControls::conditionals"],[12,3,1,"_CPPv4N4dnac11RawControls8psdCountE","dnac::RawControls::psdCount"],[12,3,1,"_CPPv4N4dnac11RawControls4psdsE","dnac::RawControls::psds"],[12,1,1,"_CPPv4I0EN4dnac11RawControls9serializeEvR7Archive","dnac::RawControls::serialize"],[12,5,1,"_CPPv4I0EN4dnac11RawControls9serializeEvR7Archive","dnac::RawControls::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac11RawControls9serializeEvR7Archive","dnac::RawControls::serialize::archive"],[12,0,1,"_CPPv4N4dnac19RawCoordinateSystemE","dnac::RawCoordinateSystem"],[12,1,1,"_CPPv4I0EN4dnac19RawCoordinateSystem9serializeEvR7Archive","dnac::RawCoordinateSystem::serialize"],[12,5,1,"_CPPv4I0EN4dnac19RawCoordinateSystem9serializeEvR7Archive","dnac::RawCoordinateSystem::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac19RawCoordinateSystem9serializeEvR7Archive","dnac::RawCoordinateSystem::serialize::archive"],[12,3,1,"_CPPv4N4dnac19RawCoordinateSystem5xAxisE","dnac::RawCoordinateSystem::xAxis"],[12,3,1,"_CPPv4N4dnac19RawCoordinateSystem5yAxisE","dnac::RawCoordinateSystem::yAxis"],[12,3,1,"_CPPv4N4dnac19RawCoordinateSystem5zAxisE","dnac::RawCoordinateSystem::zAxis"],[12,0,1,"_CPPv4N4dnac13RawDefinitionE","dnac::RawDefinition"],[12,1,1,"_CPPv4N4dnac13RawDefinition13RawDefinitionERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDefinition::RawDefinition"],[12,2,1,"_CPPv4N4dnac13RawDefinition13RawDefinitionERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDefinition::RawDefinition::markerTarget"],[12,2,1,"_CPPv4N4dnac13RawDefinition13RawDefinitionERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDefinition::RawDefinition::memRes"],[12,3,1,"_CPPv4N4dnac13RawDefinition16animatedMapNamesE","dnac::RawDefinition::animatedMapNames"],[12,3,1,"_CPPv4N4dnac13RawDefinition22blendShapeChannelNamesE","dnac::RawDefinition::blendShapeChannelNames"],[12,3,1,"_CPPv4N4dnac13RawDefinition15guiControlNamesE","dnac::RawDefinition::guiControlNames"],[12,3,1,"_CPPv4N4dnac13RawDefinition14jointHierarchyE","dnac::RawDefinition::jointHierarchy"],[12,3,1,"_CPPv4N4dnac13RawDefinition10jointNamesE","dnac::RawDefinition::jointNames"],[12,3,1,"_CPPv4N4dnac13RawDefinition21lodAnimatedMapMappingE","dnac::RawDefinition::lodAnimatedMapMapping"],[12,3,1,"_CPPv4N4dnac13RawDefinition20lodBlendShapeMappingE","dnac::RawDefinition::lodBlendShapeMapping"],[12,3,1,"_CPPv4N4dnac13RawDefinition15lodJointMappingE","dnac::RawDefinition::lodJointMapping"],[12,3,1,"_CPPv4N4dnac13RawDefinition14lodMeshMappingE","dnac::RawDefinition::lodMeshMapping"],[12,3,1,"_CPPv4N4dnac13RawDefinition6markerE","dnac::RawDefinition::marker"],[12,3,1,"_CPPv4N4dnac13RawDefinition28meshBlendShapeChannelMappingE","dnac::RawDefinition::meshBlendShapeChannelMapping"],[12,3,1,"_CPPv4N4dnac13RawDefinition9meshNamesE","dnac::RawDefinition::meshNames"],[12,3,1,"_CPPv4N4dnac13RawDefinition21neutralJointRotationsE","dnac::RawDefinition::neutralJointRotations"],[12,3,1,"_CPPv4N4dnac13RawDefinition24neutralJointTranslationsE","dnac::RawDefinition::neutralJointTranslations"],[12,3,1,"_CPPv4N4dnac13RawDefinition15rawControlNamesE","dnac::RawDefinition::rawControlNames"],[12,1,1,"_CPPv4I0EN4dnac13RawDefinition9serializeEvR7Archive","dnac::RawDefinition::serialize"],[12,5,1,"_CPPv4I0EN4dnac13RawDefinition9serializeEvR7Archive","dnac::RawDefinition::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac13RawDefinition9serializeEvR7Archive","dnac::RawDefinition::serialize::archive"],[12,0,1,"_CPPv4N4dnac13RawDescriptorE","dnac::RawDescriptor"],[12,1,1,"_CPPv4N4dnac13RawDescriptor13RawDescriptorERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDescriptor::RawDescriptor"],[12,2,1,"_CPPv4N4dnac13RawDescriptor13RawDescriptorERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDescriptor::RawDescriptor::markerTarget"],[12,2,1,"_CPPv4N4dnac13RawDescriptor13RawDescriptorERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDescriptor::RawDescriptor::memRes"],[12,4,1,"_CPPv4N4dnac13RawDescriptor10StringPairE","dnac::RawDescriptor::StringPair"],[12,3,1,"_CPPv4N4dnac13RawDescriptor3ageE","dnac::RawDescriptor::age"],[12,3,1,"_CPPv4N4dnac13RawDescriptor9archetypeE","dnac::RawDescriptor::archetype"],[12,3,1,"_CPPv4N4dnac13RawDescriptor10complexityE","dnac::RawDescriptor::complexity"],[12,3,1,"_CPPv4N4dnac13RawDescriptor16coordinateSystemE","dnac::RawDescriptor::coordinateSystem"],[12,3,1,"_CPPv4N4dnac13RawDescriptor6dbNameE","dnac::RawDescriptor::dbName"],[12,3,1,"_CPPv4N4dnac13RawDescriptor6genderE","dnac::RawDescriptor::gender"],[12,3,1,"_CPPv4N4dnac13RawDescriptor8lodCountE","dnac::RawDescriptor::lodCount"],[12,3,1,"_CPPv4N4dnac13RawDescriptor6markerE","dnac::RawDescriptor::marker"],[12,3,1,"_CPPv4N4dnac13RawDescriptor6maxLODE","dnac::RawDescriptor::maxLOD"],[12,3,1,"_CPPv4N4dnac13RawDescriptor8metadataE","dnac::RawDescriptor::metadata"],[12,3,1,"_CPPv4N4dnac13RawDescriptor4nameE","dnac::RawDescriptor::name"],[12,3,1,"_CPPv4N4dnac13RawDescriptor12rotationUnitE","dnac::RawDescriptor::rotationUnit"],[12,1,1,"_CPPv4I0EN4dnac13RawDescriptor9serializeEvR7Archive","dnac::RawDescriptor::serialize"],[12,5,1,"_CPPv4I0EN4dnac13RawDescriptor9serializeEvR7Archive","dnac::RawDescriptor::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac13RawDescriptor9serializeEvR7Archive","dnac::RawDescriptor::serialize::archive"],[12,3,1,"_CPPv4N4dnac13RawDescriptor15translationUnitE","dnac::RawDescriptor::translationUnit"],[12,0,1,"_CPPv4N4dnac7RawFaceE","dnac::RawFace"],[12,1,1,"_CPPv4N4dnac7RawFace7RawFaceEP14MemoryResource","dnac::RawFace::RawFace"],[12,2,1,"_CPPv4N4dnac7RawFace7RawFaceEP14MemoryResource","dnac::RawFace::RawFace::memRes"],[12,3,1,"_CPPv4N4dnac7RawFace13layoutIndicesE","dnac::RawFace::layoutIndices"],[12,1,1,"_CPPv4I0EN4dnac7RawFace9serializeEvR7Archive","dnac::RawFace::serialize"],[12,5,1,"_CPPv4I0EN4dnac7RawFace9serializeEvR7Archive","dnac::RawFace::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac7RawFace9serializeEvR7Archive","dnac::RawFace::serialize::archive"],[12,0,1,"_CPPv4N4dnac11RawGeometryE","dnac::RawGeometry"],[12,1,1,"_CPPv4N4dnac11RawGeometry11RawGeometryERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawGeometry::RawGeometry"],[12,2,1,"_CPPv4N4dnac11RawGeometry11RawGeometryERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawGeometry::RawGeometry::markerTarget"],[12,2,1,"_CPPv4N4dnac11RawGeometry11RawGeometryERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawGeometry::RawGeometry::memRes"],[12,3,1,"_CPPv4N4dnac11RawGeometry6markerE","dnac::RawGeometry::marker"],[12,3,1,"_CPPv4N4dnac11RawGeometry6meshesE","dnac::RawGeometry::meshes"],[12,1,1,"_CPPv4I0EN4dnac11RawGeometry9serializeEvR7Archive","dnac::RawGeometry::serialize"],[12,5,1,"_CPPv4I0EN4dnac11RawGeometry9serializeEvR7Archive","dnac::RawGeometry::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac11RawGeometry9serializeEvR7Archive","dnac::RawGeometry::serialize::archive"],[12,0,1,"_CPPv4N4dnac13RawJointGroupE","dnac::RawJointGroup"],[12,1,1,"_CPPv4N4dnac13RawJointGroup13RawJointGroupEP14MemoryResource","dnac::RawJointGroup::RawJointGroup"],[12,2,1,"_CPPv4N4dnac13RawJointGroup13RawJointGroupEP14MemoryResource","dnac::RawJointGroup::RawJointGroup::memRes"],[12,3,1,"_CPPv4N4dnac13RawJointGroup12inputIndicesE","dnac::RawJointGroup::inputIndices"],[12,3,1,"_CPPv4N4dnac13RawJointGroup12jointIndicesE","dnac::RawJointGroup::jointIndices"],[12,3,1,"_CPPv4N4dnac13RawJointGroup4lodsE","dnac::RawJointGroup::lods"],[12,3,1,"_CPPv4N4dnac13RawJointGroup13outputIndicesE","dnac::RawJointGroup::outputIndices"],[12,1,1,"_CPPv4I0EN4dnac13RawJointGroup9serializeEvR7Archive","dnac::RawJointGroup::serialize"],[12,5,1,"_CPPv4I0EN4dnac13RawJointGroup9serializeEvR7Archive","dnac::RawJointGroup::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac13RawJointGroup9serializeEvR7Archive","dnac::RawJointGroup::serialize::archive"],[12,3,1,"_CPPv4N4dnac13RawJointGroup6valuesE","dnac::RawJointGroup::values"],[12,0,1,"_CPPv4N4dnac9RawJointsE","dnac::RawJoints"],[12,1,1,"_CPPv4N4dnac9RawJoints9RawJointsEP14MemoryResource","dnac::RawJoints::RawJoints"],[12,2,1,"_CPPv4N4dnac9RawJoints9RawJointsEP14MemoryResource","dnac::RawJoints::RawJoints::memRes"],[12,3,1,"_CPPv4N4dnac9RawJoints8colCountE","dnac::RawJoints::colCount"],[12,3,1,"_CPPv4N4dnac9RawJoints11jointGroupsE","dnac::RawJoints::jointGroups"],[12,3,1,"_CPPv4N4dnac9RawJoints8rowCountE","dnac::RawJoints::rowCount"],[12,1,1,"_CPPv4I0EN4dnac9RawJoints9serializeEvR7Archive","dnac::RawJoints::serialize"],[12,5,1,"_CPPv4I0EN4dnac9RawJoints9serializeEvR7Archive","dnac::RawJoints::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac9RawJoints9serializeEvR7Archive","dnac::RawJoints::serialize::archive"],[12,0,1,"_CPPv4N4dnac13RawLODMappingE","dnac::RawLODMapping"],[12,1,1,"_CPPv4N4dnac13RawLODMapping10LODMappingEP14MemoryResource","dnac::RawLODMapping::LODMapping"],[12,2,1,"_CPPv4N4dnac13RawLODMapping10LODMappingEP14MemoryResource","dnac::RawLODMapping::LODMapping::memRes_"],[12,1,1,"_CPPv4I0EN4dnac13RawLODMapping9serializeEvR7Archive","dnac::RawLODMapping::serialize"],[12,5,1,"_CPPv4I0EN4dnac13RawLODMapping9serializeEvR7Archive","dnac::RawLODMapping::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac13RawLODMapping9serializeEvR7Archive","dnac::RawLODMapping::serialize::archive"],[12,0,1,"_CPPv4N4dnac7RawMeshE","dnac::RawMesh"],[12,1,1,"_CPPv4N4dnac7RawMesh7RawMeshEP14MemoryResource","dnac::RawMesh::RawMesh"],[12,2,1,"_CPPv4N4dnac7RawMesh7RawMeshEP14MemoryResource","dnac::RawMesh::RawMesh::memRes"],[12,3,1,"_CPPv4N4dnac7RawMesh17blendShapeTargetsE","dnac::RawMesh::blendShapeTargets"],[12,3,1,"_CPPv4N4dnac7RawMesh5facesE","dnac::RawMesh::faces"],[12,3,1,"_CPPv4N4dnac7RawMesh7layoutsE","dnac::RawMesh::layouts"],[12,3,1,"_CPPv4N4dnac7RawMesh6markerE","dnac::RawMesh::marker"],[12,3,1,"_CPPv4N4dnac7RawMesh25maximumInfluencePerVertexE","dnac::RawMesh::maximumInfluencePerVertex"],[12,3,1,"_CPPv4N4dnac7RawMesh7normalsE","dnac::RawMesh::normals"],[12,3,1,"_CPPv4N4dnac7RawMesh6offsetE","dnac::RawMesh::offset"],[12,3,1,"_CPPv4N4dnac7RawMesh9positionsE","dnac::RawMesh::positions"],[12,1,1,"_CPPv4I0EN4dnac7RawMesh9serializeEvR7Archive","dnac::RawMesh::serialize"],[12,5,1,"_CPPv4I0EN4dnac7RawMesh9serializeEvR7Archive","dnac::RawMesh::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac7RawMesh9serializeEvR7Archive","dnac::RawMesh::serialize::archive"],[12,3,1,"_CPPv4N4dnac7RawMesh11skinWeightsE","dnac::RawMesh::skinWeights"],[12,3,1,"_CPPv4N4dnac7RawMesh18textureCoordinatesE","dnac::RawMesh::textureCoordinates"],[12,0,1,"_CPPv4N4dnac12RawPSDMatrixE","dnac::RawPSDMatrix"],[12,1,1,"_CPPv4N4dnac12RawPSDMatrix12RawPSDMatrixEP14MemoryResource","dnac::RawPSDMatrix::RawPSDMatrix"],[12,2,1,"_CPPv4N4dnac12RawPSDMatrix12RawPSDMatrixEP14MemoryResource","dnac::RawPSDMatrix::RawPSDMatrix::memRes"],[12,3,1,"_CPPv4N4dnac12RawPSDMatrix7columnsE","dnac::RawPSDMatrix::columns"],[12,3,1,"_CPPv4N4dnac12RawPSDMatrix4rowsE","dnac::RawPSDMatrix::rows"],[12,1,1,"_CPPv4I0EN4dnac12RawPSDMatrix9serializeEvR7Archive","dnac::RawPSDMatrix::serialize"],[12,5,1,"_CPPv4I0EN4dnac12RawPSDMatrix9serializeEvR7Archive","dnac::RawPSDMatrix::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac12RawPSDMatrix9serializeEvR7Archive","dnac::RawPSDMatrix::serialize::archive"],[12,3,1,"_CPPv4N4dnac12RawPSDMatrix6valuesE","dnac::RawPSDMatrix::values"],[12,0,1,"_CPPv4I00EN4dnac20RawSurjectiveMappingE","dnac::RawSurjectiveMapping"],[12,5,1,"_CPPv4I00EN4dnac20RawSurjectiveMappingE","dnac::RawSurjectiveMapping::TFrom"],[12,5,1,"_CPPv4I00EN4dnac20RawSurjectiveMappingE","dnac::RawSurjectiveMapping::TTo"],[12,1,1,"_CPPv4I0EN4dnac20RawSurjectiveMapping9serializeEvR7Archive","dnac::RawSurjectiveMapping::serialize"],[12,5,1,"_CPPv4I0EN4dnac20RawSurjectiveMapping9serializeEvR7Archive","dnac::RawSurjectiveMapping::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac20RawSurjectiveMapping9serializeEvR7Archive","dnac::RawSurjectiveMapping::serialize::archive"],[12,0,1,"_CPPv4N4dnac26RawTextureCoordinateVectorE","dnac::RawTextureCoordinateVector"],[12,1,1,"_CPPv4N4dnac26RawTextureCoordinateVector26RawTextureCoordinateVectorEP14MemoryResource","dnac::RawTextureCoordinateVector::RawTextureCoordinateVector"],[12,2,1,"_CPPv4N4dnac26RawTextureCoordinateVector26RawTextureCoordinateVectorEP14MemoryResource","dnac::RawTextureCoordinateVector::RawTextureCoordinateVector::memRes"],[12,1,1,"_CPPv4N4dnac26RawTextureCoordinateVector5clearEv","dnac::RawTextureCoordinateVector::clear"],[12,1,1,"_CPPv4I0EN4dnac26RawTextureCoordinateVector9serializeEvR7Archive","dnac::RawTextureCoordinateVector::serialize"],[12,5,1,"_CPPv4I0EN4dnac26RawTextureCoordinateVector9serializeEvR7Archive","dnac::RawTextureCoordinateVector::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac26RawTextureCoordinateVector9serializeEvR7Archive","dnac::RawTextureCoordinateVector::serialize::archive"],[12,1,1,"_CPPv4NK4dnac26RawTextureCoordinateVector4sizeEv","dnac::RawTextureCoordinateVector::size"],[12,3,1,"_CPPv4N4dnac26RawTextureCoordinateVector2usE","dnac::RawTextureCoordinateVector::us"],[12,3,1,"_CPPv4N4dnac26RawTextureCoordinateVector2vsE","dnac::RawTextureCoordinateVector::vs"],[12,0,1,"_CPPv4N4dnac16RawVector3VectorE","dnac::RawVector3Vector"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorENSt6size_tEfP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorENSt6size_tEfP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::initial"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::memRes"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorENSt6size_tEfP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::memRes"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::memRes"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorENSt6size_tEfP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::size_"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::xs_"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::ys_"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::zs_"],[12,1,1,"_CPPv4I0EN4dnac16RawVector3Vector6assignEv8Iterator8Iterator","dnac::RawVector3Vector::assign"],[12,5,1,"_CPPv4I0EN4dnac16RawVector3Vector6assignEv8Iterator8Iterator","dnac::RawVector3Vector::assign::Iterator"],[12,2,1,"_CPPv4I0EN4dnac16RawVector3Vector6assignEv8Iterator8Iterator","dnac::RawVector3Vector::assign::end"],[12,2,1,"_CPPv4I0EN4dnac16RawVector3Vector6assignEv8Iterator8Iterator","dnac::RawVector3Vector::assign::start"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector5clearEv","dnac::RawVector3Vector::clear"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector7reserveENSt6size_tE","dnac::RawVector3Vector::reserve"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector7reserveENSt6size_tE","dnac::RawVector3Vector::reserve::count"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector6resizeENSt6size_tE","dnac::RawVector3Vector::resize"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector6resizeENSt6size_tEf","dnac::RawVector3Vector::resize"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector6resizeENSt6size_tE","dnac::RawVector3Vector::resize::count"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector6resizeENSt6size_tEf","dnac::RawVector3Vector::resize::count"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector6resizeENSt6size_tEf","dnac::RawVector3Vector::resize::value"],[12,1,1,"_CPPv4I0EN4dnac16RawVector3Vector9serializeEvR7Archive","dnac::RawVector3Vector::serialize"],[12,5,1,"_CPPv4I0EN4dnac16RawVector3Vector9serializeEvR7Archive","dnac::RawVector3Vector::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac16RawVector3Vector9serializeEvR7Archive","dnac::RawVector3Vector::serialize::archive"],[12,1,1,"_CPPv4NK4dnac16RawVector3Vector4sizeEv","dnac::RawVector3Vector::size"],[12,3,1,"_CPPv4N4dnac16RawVector3Vector2xsE","dnac::RawVector3Vector::xs"],[12,3,1,"_CPPv4N4dnac16RawVector3Vector2ysE","dnac::RawVector3Vector::ys"],[12,3,1,"_CPPv4N4dnac16RawVector3Vector2zsE","dnac::RawVector3Vector::zs"],[12,0,1,"_CPPv4N4dnac21RawVertexLayoutVectorE","dnac::RawVertexLayoutVector"],[12,1,1,"_CPPv4N4dnac21RawVertexLayoutVector21RawVertexLayoutVectorEP14MemoryResource","dnac::RawVertexLayoutVector::RawVertexLayoutVector"],[12,2,1,"_CPPv4N4dnac21RawVertexLayoutVector21RawVertexLayoutVectorEP14MemoryResource","dnac::RawVertexLayoutVector::RawVertexLayoutVector::memRes"],[12,1,1,"_CPPv4N4dnac21RawVertexLayoutVector5clearEv","dnac::RawVertexLayoutVector::clear"],[12,3,1,"_CPPv4N4dnac21RawVertexLayoutVector7normalsE","dnac::RawVertexLayoutVector::normals"],[12,3,1,"_CPPv4N4dnac21RawVertexLayoutVector9positionsE","dnac::RawVertexLayoutVector::positions"],[12,1,1,"_CPPv4I0EN4dnac21RawVertexLayoutVector9serializeEvR7Archive","dnac::RawVertexLayoutVector::serialize"],[12,5,1,"_CPPv4I0EN4dnac21RawVertexLayoutVector9serializeEvR7Archive","dnac::RawVertexLayoutVector::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac21RawVertexLayoutVector9serializeEvR7Archive","dnac::RawVertexLayoutVector::serialize::archive"],[12,1,1,"_CPPv4NK4dnac21RawVertexLayoutVector4sizeEv","dnac::RawVertexLayoutVector::size"],[12,3,1,"_CPPv4N4dnac21RawVertexLayoutVector18textureCoordinatesE","dnac::RawVertexLayoutVector::textureCoordinates"],[12,0,1,"_CPPv4N4dnac20RawVertexSkinWeightsE","dnac::RawVertexSkinWeights"],[12,1,1,"_CPPv4N4dnac20RawVertexSkinWeights20RawVertexSkinWeightsEP14MemoryResource","dnac::RawVertexSkinWeights::RawVertexSkinWeights"],[12,2,1,"_CPPv4N4dnac20RawVertexSkinWeights20RawVertexSkinWeightsEP14MemoryResource","dnac::RawVertexSkinWeights::RawVertexSkinWeights::memRes"],[12,3,1,"_CPPv4N4dnac20RawVertexSkinWeights12jointIndicesE","dnac::RawVertexSkinWeights::jointIndices"],[12,1,1,"_CPPv4I0EN4dnac20RawVertexSkinWeights9serializeEvR7Archive","dnac::RawVertexSkinWeights::serialize"],[12,5,1,"_CPPv4I0EN4dnac20RawVertexSkinWeights9serializeEvR7Archive","dnac::RawVertexSkinWeights::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac20RawVertexSkinWeights9serializeEvR7Archive","dnac::RawVertexSkinWeights::serialize::archive"],[12,3,1,"_CPPv4N4dnac20RawVertexSkinWeights7weightsE","dnac::RawVertexSkinWeights::weights"],[12,0,1,"_CPPv4I0EN4dnac10ReaderImplE","dnac::ReaderImpl"],[12,1,1,"_CPPv4N4dnac10ReaderImpl10ReaderImplEP14MemoryResource","dnac::ReaderImpl::ReaderImpl"],[12,2,1,"_CPPv4N4dnac10ReaderImpl10ReaderImplEP14MemoryResource","dnac::ReaderImpl::ReaderImpl::memRes_"],[12,5,1,"_CPPv4I0EN4dnac10ReaderImplE","dnac::ReaderImpl::TReaderBase"],[12,3,1,"_CPPv4N4dnac10ReaderImpl5cacheE","dnac::ReaderImpl::cache"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl6getAgeEv","dnac::ReaderImpl::getAge"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getAnimatedMapCountEv","dnac::ReaderImpl::getAnimatedMapCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl23getAnimatedMapCutValuesEv","dnac::ReaderImpl::getAnimatedMapCutValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getAnimatedMapFromValuesEv","dnac::ReaderImpl::getAnimatedMapFromValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getAnimatedMapIndexListCountEv","dnac::ReaderImpl::getAnimatedMapIndexListCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl27getAnimatedMapIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getAnimatedMapIndicesForLOD"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl27getAnimatedMapIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getAnimatedMapIndicesForLOD::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getAnimatedMapInputIndicesEv","dnac::ReaderImpl::getAnimatedMapInputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getAnimatedMapLODsEv","dnac::ReaderImpl::getAnimatedMapLODs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getAnimatedMapNameENSt8uint16_tE","dnac::ReaderImpl::getAnimatedMapName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl18getAnimatedMapNameENSt8uint16_tE","dnac::ReaderImpl::getAnimatedMapName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl27getAnimatedMapOutputIndicesEv","dnac::ReaderImpl::getAnimatedMapOutputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getAnimatedMapSlopeValuesEv","dnac::ReaderImpl::getAnimatedMapSlopeValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl22getAnimatedMapToValuesEv","dnac::ReaderImpl::getAnimatedMapToValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl12getArchetypeEv","dnac::ReaderImpl::getArchetype"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getBlendShapeChannelCountEv","dnac::ReaderImpl::getBlendShapeChannelCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelIndex::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelIndex::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl34getBlendShapeChannelIndexListCountEv","dnac::ReaderImpl::getBlendShapeChannelIndexListCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelIndicesForLOD"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelIndicesForLOD::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl32getBlendShapeChannelInputIndicesEv","dnac::ReaderImpl::getBlendShapeChannelInputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeChannelLODsEv","dnac::ReaderImpl::getBlendShapeChannelLODs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeChannelNameENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeChannelNameENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl33getBlendShapeChannelOutputIndicesEv","dnac::ReaderImpl::getBlendShapeChannelOutputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetCountENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetCountENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getBlendShapeTargetDelta"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getBlendShapeTargetDelta::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getBlendShapeTargetDelta::deltaIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getBlendShapeTargetDelta::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaCount::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaXs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaXs::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaXs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaYs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaYs::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaYs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaZs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaZs::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaZs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetVertexIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetVertexIndices::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getCoordinateSystemEv","dnac::ReaderImpl::getCoordinateSystem"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl15getDBComplexityEv","dnac::ReaderImpl::getDBComplexity"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl11getDBMaxLODEv","dnac::ReaderImpl::getDBMaxLOD"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl9getDBNameEv","dnac::ReaderImpl::getDBName"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl12getFaceCountENSt8uint16_tE","dnac::ReaderImpl::getFaceCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl12getFaceCountENSt8uint16_tE","dnac::ReaderImpl::getFaceCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getFaceVertexLayoutIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getFaceVertexLayoutIndices::faceIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getFaceVertexLayoutIndices::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getGUIControlCountEv","dnac::ReaderImpl::getGUIControlCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getGUIControlNameENSt8uint16_tE","dnac::ReaderImpl::getGUIControlName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getGUIControlNameENSt8uint16_tE","dnac::ReaderImpl::getGUIControlName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl20getGUIToRawCutValuesEv","dnac::ReaderImpl::getGUIToRawCutValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl21getGUIToRawFromValuesEv","dnac::ReaderImpl::getGUIToRawFromValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl23getGUIToRawInputIndicesEv","dnac::ReaderImpl::getGUIToRawInputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getGUIToRawOutputIndicesEv","dnac::ReaderImpl::getGUIToRawOutputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl22getGUIToRawSlopeValuesEv","dnac::ReaderImpl::getGUIToRawSlopeValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getGUIToRawToValuesEv","dnac::ReaderImpl::getGUIToRawToValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl9getGenderEv","dnac::ReaderImpl::getGender"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getJointColumnCountEv","dnac::ReaderImpl::getJointColumnCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl13getJointCountEv","dnac::ReaderImpl::getJointCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getJointGroupCountEv","dnac::ReaderImpl::getJointGroupCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getJointGroupInputIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupInputIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl25getJointGroupInputIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupInputIndices::jointGroupIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getJointGroupJointIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupJointIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl25getJointGroupJointIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupJointIndices::jointGroupIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getJointGroupLODsENSt8uint16_tE","dnac::ReaderImpl::getJointGroupLODs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getJointGroupLODsENSt8uint16_tE","dnac::ReaderImpl::getJointGroupLODs::jointGroupIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getJointGroupOutputIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupOutputIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getJointGroupOutputIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupOutputIndices::jointGroupIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getJointGroupValuesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupValues"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getJointGroupValuesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupValues::jointGroupIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl22getJointIndexListCountEv","dnac::ReaderImpl::getJointIndexListCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl21getJointIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getJointIndicesForLOD"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl21getJointIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getJointIndicesForLOD::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl12getJointNameENSt8uint16_tE","dnac::ReaderImpl::getJointName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl12getJointNameENSt8uint16_tE","dnac::ReaderImpl::getJointName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getJointParentIndexENSt8uint16_tE","dnac::ReaderImpl::getJointParentIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getJointParentIndexENSt8uint16_tE","dnac::ReaderImpl::getJointParentIndex::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl16getJointRowCountEv","dnac::ReaderImpl::getJointRowCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl32getJointVariableAttributeIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointVariableAttributeIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl32getJointVariableAttributeIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointVariableAttributeIndices::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl11getLODCountEv","dnac::ReaderImpl::getLODCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getMaximumInfluencePerVertexENSt8uint16_tE","dnac::ReaderImpl::getMaximumInfluencePerVertex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl28getMaximumInfluencePerVertexENSt8uint16_tE","dnac::ReaderImpl::getMaximumInfluencePerVertex::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl31getMeshBlendShapeChannelMappingENSt8uint16_tE","dnac::ReaderImpl::getMeshBlendShapeChannelMapping"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl31getMeshBlendShapeChannelMappingENSt8uint16_tE","dnac::ReaderImpl::getMeshBlendShapeChannelMapping::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl36getMeshBlendShapeChannelMappingCountEv","dnac::ReaderImpl::getMeshBlendShapeChannelMappingCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getMeshBlendShapeChannelMappingIndicesForLOD"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getMeshBlendShapeChannelMappingIndicesForLOD::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl12getMeshCountEv","dnac::ReaderImpl::getMeshCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl21getMeshIndexListCountEv","dnac::ReaderImpl::getMeshIndexListCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl20getMeshIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getMeshIndicesForLOD"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl20getMeshIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getMeshIndicesForLOD::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl11getMeshNameENSt8uint16_tE","dnac::ReaderImpl::getMeshName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl11getMeshNameENSt8uint16_tE","dnac::ReaderImpl::getMeshName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl16getMetaDataCountEv","dnac::ReaderImpl::getMetaDataCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl14getMetaDataKeyENSt8uint32_tE","dnac::ReaderImpl::getMetaDataKey"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl14getMetaDataKeyENSt8uint32_tE","dnac::ReaderImpl::getMetaDataKey::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl16getMetaDataValueEPKc","dnac::ReaderImpl::getMetaDataValue"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl16getMetaDataValueEPKc","dnac::ReaderImpl::getMetaDataValue::key"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl7getNameEv","dnac::ReaderImpl::getName"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl23getNeutralJointRotationENSt8uint16_tE","dnac::ReaderImpl::getNeutralJointRotation"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl23getNeutralJointRotationENSt8uint16_tE","dnac::ReaderImpl::getNeutralJointRotation::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getNeutralJointRotationXsEv","dnac::ReaderImpl::getNeutralJointRotationXs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getNeutralJointRotationYsEv","dnac::ReaderImpl::getNeutralJointRotationYs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getNeutralJointRotationZsEv","dnac::ReaderImpl::getNeutralJointRotationZs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getNeutralJointTranslationENSt8uint16_tE","dnac::ReaderImpl::getNeutralJointTranslation"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getNeutralJointTranslationENSt8uint16_tE","dnac::ReaderImpl::getNeutralJointTranslation::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getNeutralJointTranslationXsEv","dnac::ReaderImpl::getNeutralJointTranslationXs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getNeutralJointTranslationYsEv","dnac::ReaderImpl::getNeutralJointTranslationYs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getNeutralJointTranslationZsEv","dnac::ReaderImpl::getNeutralJointTranslationZs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getPSDColumnIndicesEv","dnac::ReaderImpl::getPSDColumnIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl11getPSDCountEv","dnac::ReaderImpl::getPSDCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl16getPSDRowIndicesEv","dnac::ReaderImpl::getPSDRowIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl12getPSDValuesEv","dnac::ReaderImpl::getPSDValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getRawControlCountEv","dnac::ReaderImpl::getRawControlCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getRawControlNameENSt8uint16_tE","dnac::ReaderImpl::getRawControlName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getRawControlNameENSt8uint16_tE","dnac::ReaderImpl::getRawControlName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl15getRotationUnitEv","dnac::ReaderImpl::getRotationUnit"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getSkinWeightsCountENSt8uint16_tE","dnac::ReaderImpl::getSkinWeightsCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getSkinWeightsCountENSt8uint16_tE","dnac::ReaderImpl::getSkinWeightsCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsJointIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsJointIndices::meshIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsJointIndices::vertexIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsValues"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsValues::meshIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsValues::vertexIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getTranslationUnitEv","dnac::ReaderImpl::getTranslationUnit"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexLayout"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexLayout::layoutIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexLayout::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl20getVertexLayoutCountENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl20getVertexLayoutCountENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getVertexLayoutNormalIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutNormalIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl28getVertexLayoutNormalIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutNormalIndices::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl30getVertexLayoutPositionIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutPositionIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl30getVertexLayoutPositionIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutPositionIndices::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutTextureCoordinateIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutTextureCoordinateIndices::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexNormal"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexNormal::meshIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexNormal::normalIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl20getVertexNormalCountENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl20getVertexNormalCountENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalXsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalXs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalXsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalXs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalYsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalYs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalYsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalYs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalZsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalZs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalZsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalZs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexPosition"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexPosition::meshIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexPosition::vertexIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl22getVertexPositionCountENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl22getVertexPositionCountENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionXsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionXs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionXsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionXs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionYsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionYs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionYsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionYs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionZsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionZs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionZsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionZs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexTextureCoordinate"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexTextureCoordinate::meshIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexTextureCoordinate::textureCoordinateIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl31getVertexTextureCoordinateCountENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl31getVertexTextureCoordinateCountENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getVertexTextureCoordinateUsENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateUs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl28getVertexTextureCoordinateUsENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateUs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getVertexTextureCoordinateVsENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateVs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl28getVertexTextureCoordinateVsENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateVs::meshIndex"],[12,1,1,"_CPPv4N4dnac10ReaderImpl6unloadE9DataLayer","dnac::ReaderImpl::unload"],[12,2,1,"_CPPv4N4dnac10ReaderImpl6unloadE9DataLayer","dnac::ReaderImpl::unload::layer"],[12,0,1,"_CPPv4N4dnac24RemoveAnimatedMapCommandE","dnac::RemoveAnimatedMapCommand"],[12,0,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4ImplE","dnac::RemoveAnimatedMapCommand::Impl"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl4ImplEP14MemoryResource","dnac::RemoveAnimatedMapCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl4ImplEP14MemoryResource","dnac::RemoveAnimatedMapCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl5SuperE","dnac::RemoveAnimatedMapCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl18animatedMapIndicesE","dnac::RemoveAnimatedMapCommand::Impl::animatedMapIndices"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveAnimatedMapCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveAnimatedMapCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl19setAnimatedMapIndexENSt8uint16_tE","dnac::RemoveAnimatedMapCommand::Impl::setAnimatedMapIndex"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl19setAnimatedMapIndexENSt8uint16_tE","dnac::RemoveAnimatedMapCommand::Impl::setAnimatedMapIndex::animatedMapIndex_"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl21setAnimatedMapIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveAnimatedMapCommand::Impl::setAnimatedMapIndices"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl21setAnimatedMapIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveAnimatedMapCommand::Impl::setAnimatedMapIndices::animatedMapIndices_"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandERK24RemoveAnimatedMapCommand","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandERR24RemoveAnimatedMapCommand","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand::animatedMapIndex"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand::animatedMapIndices"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand::memRes"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand::memRes"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand::memRes"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommandaSERK24RemoveAnimatedMapCommand","dnac::RemoveAnimatedMapCommand::operator="],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommandaSERR24RemoveAnimatedMapCommand","dnac::RemoveAnimatedMapCommand::operator="],[12,3,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand5pImplE","dnac::RemoveAnimatedMapCommand::pImpl"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand3runEP17DNACalibDNAReader","dnac::RemoveAnimatedMapCommand::run"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand3runEP17DNACalibDNAReader","dnac::RemoveAnimatedMapCommand::run::output"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand19setAnimatedMapIndexENSt8uint16_tE","dnac::RemoveAnimatedMapCommand::setAnimatedMapIndex"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand19setAnimatedMapIndexENSt8uint16_tE","dnac::RemoveAnimatedMapCommand::setAnimatedMapIndex::animatedMapIndex"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand21setAnimatedMapIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveAnimatedMapCommand::setAnimatedMapIndices"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand21setAnimatedMapIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveAnimatedMapCommand::setAnimatedMapIndices::animatedMapIndices"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommandD0Ev","dnac::RemoveAnimatedMapCommand::~RemoveAnimatedMapCommand"],[12,0,1,"_CPPv4N4dnac23RemoveBlendShapeCommandE","dnac::RemoveBlendShapeCommand"],[12,0,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4ImplE","dnac::RemoveBlendShapeCommand::Impl"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl4ImplEP14MemoryResource","dnac::RemoveBlendShapeCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl4ImplEP14MemoryResource","dnac::RemoveBlendShapeCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl5SuperE","dnac::RemoveBlendShapeCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl17blendShapeIndicesE","dnac::RemoveBlendShapeCommand::Impl::blendShapeIndices"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveBlendShapeCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveBlendShapeCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl18setBlendShapeIndexENSt8uint16_tE","dnac::RemoveBlendShapeCommand::Impl::setBlendShapeIndex"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl18setBlendShapeIndexENSt8uint16_tE","dnac::RemoveBlendShapeCommand::Impl::setBlendShapeIndex::blendShapeIndex_"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl20setBlendShapeIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveBlendShapeCommand::Impl::setBlendShapeIndices"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl20setBlendShapeIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveBlendShapeCommand::Impl::setBlendShapeIndices::blendShapeIndices_"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandERK23RemoveBlendShapeCommand","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandERR23RemoveBlendShapeCommand","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand::blendShapeIndex"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand::blendShapeIndices"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand::memRes"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand::memRes"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand::memRes"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommandaSERK23RemoveBlendShapeCommand","dnac::RemoveBlendShapeCommand::operator="],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommandaSERR23RemoveBlendShapeCommand","dnac::RemoveBlendShapeCommand::operator="],[12,3,1,"_CPPv4N4dnac23RemoveBlendShapeCommand5pImplE","dnac::RemoveBlendShapeCommand::pImpl"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand3runEP17DNACalibDNAReader","dnac::RemoveBlendShapeCommand::run"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand3runEP17DNACalibDNAReader","dnac::RemoveBlendShapeCommand::run::output"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand18setBlendShapeIndexENSt8uint16_tE","dnac::RemoveBlendShapeCommand::setBlendShapeIndex"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand18setBlendShapeIndexENSt8uint16_tE","dnac::RemoveBlendShapeCommand::setBlendShapeIndex::blendShapeIndex"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand20setBlendShapeIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveBlendShapeCommand::setBlendShapeIndices"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand20setBlendShapeIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveBlendShapeCommand::setBlendShapeIndices::blendShapeIndices"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommandD0Ev","dnac::RemoveBlendShapeCommand::~RemoveBlendShapeCommand"],[12,0,1,"_CPPv4N4dnac27RemoveJointAnimationCommandE","dnac::RemoveJointAnimationCommand"],[12,0,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4ImplE","dnac::RemoveJointAnimationCommand::Impl"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl4ImplEP14MemoryResource","dnac::RemoveJointAnimationCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl4ImplEP14MemoryResource","dnac::RemoveJointAnimationCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl5SuperE","dnac::RemoveJointAnimationCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl12jointIndicesE","dnac::RemoveJointAnimationCommand::Impl::jointIndices"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveJointAnimationCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveJointAnimationCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl13setJointIndexENSt8uint16_tE","dnac::RemoveJointAnimationCommand::Impl::setJointIndex"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl13setJointIndexENSt8uint16_tE","dnac::RemoveJointAnimationCommand::Impl::setJointIndex::jointIndex_"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointAnimationCommand::Impl::setJointIndices"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointAnimationCommand::Impl::setJointIndices::jointIndices_"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandERK27RemoveJointAnimationCommand","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandERR27RemoveJointAnimationCommand","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand::jointIndex"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand::jointIndices"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand::memRes"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand::memRes"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand::memRes"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommandaSERK27RemoveJointAnimationCommand","dnac::RemoveJointAnimationCommand::operator="],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommandaSERR27RemoveJointAnimationCommand","dnac::RemoveJointAnimationCommand::operator="],[12,3,1,"_CPPv4N4dnac27RemoveJointAnimationCommand5pImplE","dnac::RemoveJointAnimationCommand::pImpl"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand3runEP17DNACalibDNAReader","dnac::RemoveJointAnimationCommand::run"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand3runEP17DNACalibDNAReader","dnac::RemoveJointAnimationCommand::run::output"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand13setJointIndexENSt8uint16_tE","dnac::RemoveJointAnimationCommand::setJointIndex"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand13setJointIndexENSt8uint16_tE","dnac::RemoveJointAnimationCommand::setJointIndex::jointIndex"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointAnimationCommand::setJointIndices"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointAnimationCommand::setJointIndices::jointIndices"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommandD0Ev","dnac::RemoveJointAnimationCommand::~RemoveJointAnimationCommand"],[12,0,1,"_CPPv4N4dnac18RemoveJointCommandE","dnac::RemoveJointCommand"],[12,0,1,"_CPPv4N4dnac18RemoveJointCommand4ImplE","dnac::RemoveJointCommand::Impl"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand4Impl4ImplEP14MemoryResource","dnac::RemoveJointCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand4Impl4ImplEP14MemoryResource","dnac::RemoveJointCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac18RemoveJointCommand4Impl5SuperE","dnac::RemoveJointCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac18RemoveJointCommand4Impl12jointIndicesE","dnac::RemoveJointCommand::Impl::jointIndices"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveJointCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveJointCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand4Impl13setJointIndexENSt8uint16_tE","dnac::RemoveJointCommand::Impl::setJointIndex"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand4Impl13setJointIndexENSt8uint16_tE","dnac::RemoveJointCommand::Impl::setJointIndex::jointIndex_"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointCommand::Impl::setJointIndices"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointCommand::Impl::setJointIndices::jointIndices_"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandERK18RemoveJointCommand","dnac::RemoveJointCommand::RemoveJointCommand"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandERR18RemoveJointCommand","dnac::RemoveJointCommand::RemoveJointCommand"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand::jointIndex"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand::jointIndices"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand::memRes"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand::memRes"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand::memRes"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommandaSERK18RemoveJointCommand","dnac::RemoveJointCommand::operator="],[12,1,1,"_CPPv4N4dnac18RemoveJointCommandaSERR18RemoveJointCommand","dnac::RemoveJointCommand::operator="],[12,3,1,"_CPPv4N4dnac18RemoveJointCommand5pImplE","dnac::RemoveJointCommand::pImpl"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand3runEP17DNACalibDNAReader","dnac::RemoveJointCommand::run"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand3runEP17DNACalibDNAReader","dnac::RemoveJointCommand::run::output"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand13setJointIndexENSt8uint16_tE","dnac::RemoveJointCommand::setJointIndex"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand13setJointIndexENSt8uint16_tE","dnac::RemoveJointCommand::setJointIndex::jointIndex"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointCommand::setJointIndices"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointCommand::setJointIndices::jointIndices"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommandD0Ev","dnac::RemoveJointCommand::~RemoveJointCommand"],[12,0,1,"_CPPv4N4dnac17RemoveMeshCommandE","dnac::RemoveMeshCommand"],[12,0,1,"_CPPv4N4dnac17RemoveMeshCommand4ImplE","dnac::RemoveMeshCommand::Impl"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl4ImplEP14MemoryResource","dnac::RemoveMeshCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl4ImplEP14MemoryResource","dnac::RemoveMeshCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl5SuperE","dnac::RemoveMeshCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl11meshIndicesE","dnac::RemoveMeshCommand::Impl::meshIndices"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveMeshCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveMeshCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::RemoveMeshCommand::Impl::setMeshIndex"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::RemoveMeshCommand::Impl::setMeshIndex::meshIndex_"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl14setMeshIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveMeshCommand::Impl::setMeshIndices"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl14setMeshIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveMeshCommand::Impl::setMeshIndices::meshIndices_"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandERK17RemoveMeshCommand","dnac::RemoveMeshCommand::RemoveMeshCommand"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandERR17RemoveMeshCommand","dnac::RemoveMeshCommand::RemoveMeshCommand"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand::meshIndices"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommandaSERK17RemoveMeshCommand","dnac::RemoveMeshCommand::operator="],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommandaSERR17RemoveMeshCommand","dnac::RemoveMeshCommand::operator="],[12,3,1,"_CPPv4N4dnac17RemoveMeshCommand5pImplE","dnac::RemoveMeshCommand::pImpl"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand3runEP17DNACalibDNAReader","dnac::RemoveMeshCommand::run"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand3runEP17DNACalibDNAReader","dnac::RemoveMeshCommand::run::output"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand12setMeshIndexENSt8uint16_tE","dnac::RemoveMeshCommand::setMeshIndex"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand12setMeshIndexENSt8uint16_tE","dnac::RemoveMeshCommand::setMeshIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand14setMeshIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveMeshCommand::setMeshIndices"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand14setMeshIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveMeshCommand::setMeshIndices::meshIndices"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommandD0Ev","dnac::RemoveMeshCommand::~RemoveMeshCommand"],[12,0,1,"_CPPv4N4dnac24RenameAnimatedMapCommandE","dnac::RenameAnimatedMapCommand"],[12,0,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4ImplE","dnac::RenameAnimatedMapCommand::Impl"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl4ImplEP14MemoryResource","dnac::RenameAnimatedMapCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl4ImplEP14MemoryResource","dnac::RenameAnimatedMapCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl5SuperE","dnac::RenameAnimatedMapCommand::Impl::Super"],[12,1,1,"_CPPv4NK4dnac24RenameAnimatedMapCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameAnimatedMapCommand::Impl::getNameByIndex"],[12,2,1,"_CPPv4NK4dnac24RenameAnimatedMapCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameAnimatedMapCommand::Impl::getNameByIndex::index_"],[12,2,1,"_CPPv4NK4dnac24RenameAnimatedMapCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameAnimatedMapCommand::Impl::getNameByIndex::input"],[12,1,1,"_CPPv4NK4dnac24RenameAnimatedMapCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameAnimatedMapCommand::Impl::getNameCount"],[12,2,1,"_CPPv4NK4dnac24RenameAnimatedMapCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameAnimatedMapCommand::Impl::getNameCount::input"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::Impl::setNameByIndex"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::Impl::setNameByIndex::index_"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::Impl::setNameByIndex::name"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::Impl::setNameByIndex::output"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEPKcPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandERK24RenameAnimatedMapCommand","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandERR24RenameAnimatedMapCommand","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::animatedMapIndex"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::memRes"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::memRes"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEPKcPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::memRes"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::newName"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEPKcPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::newName"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEPKcPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::oldName"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommandaSERK24RenameAnimatedMapCommand","dnac::RenameAnimatedMapCommand::operator="],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommandaSERR24RenameAnimatedMapCommand","dnac::RenameAnimatedMapCommand::operator="],[12,3,1,"_CPPv4N4dnac24RenameAnimatedMapCommand5pImplE","dnac::RenameAnimatedMapCommand::pImpl"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand3runEP17DNACalibDNAReader","dnac::RenameAnimatedMapCommand::run"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand3runEP17DNACalibDNAReader","dnac::RenameAnimatedMapCommand::run::output"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::setName"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameEPKcPKc","dnac::RenameAnimatedMapCommand::setName"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::setName::animatedMapIndex"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameEPKcPKc","dnac::RenameAnimatedMapCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameEPKcPKc","dnac::RenameAnimatedMapCommand::setName::oldName"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommandD0Ev","dnac::RenameAnimatedMapCommand::~RenameAnimatedMapCommand"],[12,0,1,"_CPPv4N4dnac23RenameBlendShapeCommandE","dnac::RenameBlendShapeCommand"],[12,0,1,"_CPPv4N4dnac23RenameBlendShapeCommand4ImplE","dnac::RenameBlendShapeCommand::Impl"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl4ImplEP14MemoryResource","dnac::RenameBlendShapeCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl4ImplEP14MemoryResource","dnac::RenameBlendShapeCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl5SuperE","dnac::RenameBlendShapeCommand::Impl::Super"],[12,1,1,"_CPPv4NK4dnac23RenameBlendShapeCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameBlendShapeCommand::Impl::getNameByIndex"],[12,2,1,"_CPPv4NK4dnac23RenameBlendShapeCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameBlendShapeCommand::Impl::getNameByIndex::index_"],[12,2,1,"_CPPv4NK4dnac23RenameBlendShapeCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameBlendShapeCommand::Impl::getNameByIndex::input"],[12,1,1,"_CPPv4NK4dnac23RenameBlendShapeCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameBlendShapeCommand::Impl::getNameCount"],[12,2,1,"_CPPv4NK4dnac23RenameBlendShapeCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameBlendShapeCommand::Impl::getNameCount::input"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::Impl::setNameByIndex"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::Impl::setNameByIndex::index_"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::Impl::setNameByIndex::name"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::Impl::setNameByIndex::output"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEPKcPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandERK23RenameBlendShapeCommand","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandERR23RenameBlendShapeCommand","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::blendShapeIndex"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::memRes"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::memRes"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEPKcPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::memRes"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::newName"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEPKcPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::newName"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEPKcPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::oldName"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommandaSERK23RenameBlendShapeCommand","dnac::RenameBlendShapeCommand::operator="],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommandaSERR23RenameBlendShapeCommand","dnac::RenameBlendShapeCommand::operator="],[12,3,1,"_CPPv4N4dnac23RenameBlendShapeCommand5pImplE","dnac::RenameBlendShapeCommand::pImpl"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand3runEP17DNACalibDNAReader","dnac::RenameBlendShapeCommand::run"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand3runEP17DNACalibDNAReader","dnac::RenameBlendShapeCommand::run::output"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::setName"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameEPKcPKc","dnac::RenameBlendShapeCommand::setName"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::setName::blendShapeIndex"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameEPKcPKc","dnac::RenameBlendShapeCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameEPKcPKc","dnac::RenameBlendShapeCommand::setName::oldName"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommandD0Ev","dnac::RenameBlendShapeCommand::~RenameBlendShapeCommand"],[12,0,1,"_CPPv4N4dnac18RenameJointCommandE","dnac::RenameJointCommand"],[12,0,1,"_CPPv4N4dnac18RenameJointCommand4ImplE","dnac::RenameJointCommand::Impl"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand4Impl4ImplEP14MemoryResource","dnac::RenameJointCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand4Impl4ImplEP14MemoryResource","dnac::RenameJointCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac18RenameJointCommand4Impl5SuperE","dnac::RenameJointCommand::Impl::Super"],[12,1,1,"_CPPv4NK4dnac18RenameJointCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameJointCommand::Impl::getNameByIndex"],[12,2,1,"_CPPv4NK4dnac18RenameJointCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameJointCommand::Impl::getNameByIndex::index_"],[12,2,1,"_CPPv4NK4dnac18RenameJointCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameJointCommand::Impl::getNameByIndex::input"],[12,1,1,"_CPPv4NK4dnac18RenameJointCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameJointCommand::Impl::getNameCount"],[12,2,1,"_CPPv4NK4dnac18RenameJointCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameJointCommand::Impl::getNameCount::input"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameJointCommand::Impl::setNameByIndex"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameJointCommand::Impl::setNameByIndex::index_"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameJointCommand::Impl::setNameByIndex::name"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameJointCommand::Impl::setNameByIndex::output"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEPKcPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandERK18RenameJointCommand","dnac::RenameJointCommand::RenameJointCommand"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandERR18RenameJointCommand","dnac::RenameJointCommand::RenameJointCommand"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::jointIndex"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::memRes"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::memRes"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEPKcPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::memRes"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::newName"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEPKcPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::newName"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEPKcPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::oldName"],[12,1,1,"_CPPv4N4dnac18RenameJointCommandaSERK18RenameJointCommand","dnac::RenameJointCommand::operator="],[12,1,1,"_CPPv4N4dnac18RenameJointCommandaSERR18RenameJointCommand","dnac::RenameJointCommand::operator="],[12,3,1,"_CPPv4N4dnac18RenameJointCommand5pImplE","dnac::RenameJointCommand::pImpl"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand3runEP17DNACalibDNAReader","dnac::RenameJointCommand::run"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand3runEP17DNACalibDNAReader","dnac::RenameJointCommand::run::output"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand7setNameENSt8uint16_tEPKc","dnac::RenameJointCommand::setName"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand7setNameEPKcPKc","dnac::RenameJointCommand::setName"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand7setNameENSt8uint16_tEPKc","dnac::RenameJointCommand::setName::jointIndex"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand7setNameENSt8uint16_tEPKc","dnac::RenameJointCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand7setNameEPKcPKc","dnac::RenameJointCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand7setNameEPKcPKc","dnac::RenameJointCommand::setName::oldName"],[12,1,1,"_CPPv4N4dnac18RenameJointCommandD0Ev","dnac::RenameJointCommand::~RenameJointCommand"],[12,0,1,"_CPPv4N4dnac17RenameMeshCommandE","dnac::RenameMeshCommand"],[12,0,1,"_CPPv4N4dnac17RenameMeshCommand4ImplE","dnac::RenameMeshCommand::Impl"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand4Impl4ImplEP14MemoryResource","dnac::RenameMeshCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand4Impl4ImplEP14MemoryResource","dnac::RenameMeshCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac17RenameMeshCommand4Impl5SuperE","dnac::RenameMeshCommand::Impl::Super"],[12,1,1,"_CPPv4NK4dnac17RenameMeshCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameMeshCommand::Impl::getNameByIndex"],[12,2,1,"_CPPv4NK4dnac17RenameMeshCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameMeshCommand::Impl::getNameByIndex::index_"],[12,2,1,"_CPPv4NK4dnac17RenameMeshCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameMeshCommand::Impl::getNameByIndex::input"],[12,1,1,"_CPPv4NK4dnac17RenameMeshCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameMeshCommand::Impl::getNameCount"],[12,2,1,"_CPPv4NK4dnac17RenameMeshCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameMeshCommand::Impl::getNameCount::input"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameMeshCommand::Impl::setNameByIndex"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameMeshCommand::Impl::setNameByIndex::index_"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameMeshCommand::Impl::setNameByIndex::name"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameMeshCommand::Impl::setNameByIndex::output"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEPKcPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandERK17RenameMeshCommand","dnac::RenameMeshCommand::RenameMeshCommand"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandERR17RenameMeshCommand","dnac::RenameMeshCommand::RenameMeshCommand"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEPKcPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::newName"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEPKcPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::newName"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEPKcPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::oldName"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommandaSERK17RenameMeshCommand","dnac::RenameMeshCommand::operator="],[12,1,1,"_CPPv4N4dnac17RenameMeshCommandaSERR17RenameMeshCommand","dnac::RenameMeshCommand::operator="],[12,3,1,"_CPPv4N4dnac17RenameMeshCommand5pImplE","dnac::RenameMeshCommand::pImpl"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand3runEP17DNACalibDNAReader","dnac::RenameMeshCommand::run"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand3runEP17DNACalibDNAReader","dnac::RenameMeshCommand::run::output"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand7setNameENSt8uint16_tEPKc","dnac::RenameMeshCommand::setName"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand7setNameEPKcPKc","dnac::RenameMeshCommand::setName"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand7setNameENSt8uint16_tEPKc","dnac::RenameMeshCommand::setName::meshIndex"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand7setNameENSt8uint16_tEPKc","dnac::RenameMeshCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand7setNameEPKcPKc","dnac::RenameMeshCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand7setNameEPKcPKc","dnac::RenameMeshCommand::setName::oldName"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommandD0Ev","dnac::RenameMeshCommand::~RenameMeshCommand"],[12,0,1,"_CPPv4I0EN4dnac21RenameResourceCommandE","dnac::RenameResourceCommand"],[12,6,1,"_CPPv4N4dnac21RenameResourceCommand13ConfigurationE","dnac::RenameResourceCommand::Configuration"],[12,7,1,"_CPPv4N4dnac21RenameResourceCommand13Configuration13RenameByIndexE","dnac::RenameResourceCommand::Configuration::RenameByIndex"],[12,7,1,"_CPPv4N4dnac21RenameResourceCommand13Configuration15SearchAndRenameE","dnac::RenameResourceCommand::Configuration::SearchAndRename"],[12,7,1,"_CPPv4N4dnac21RenameResourceCommand13Configuration12UnconfiguredE","dnac::RenameResourceCommand::Configuration::Unconfigured"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand21RenameResourceCommandEP14MemoryResource","dnac::RenameResourceCommand::RenameResourceCommand"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand21RenameResourceCommandERK21RenameResourceCommand","dnac::RenameResourceCommand::RenameResourceCommand"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand21RenameResourceCommandERR21RenameResourceCommand","dnac::RenameResourceCommand::RenameResourceCommand"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand21RenameResourceCommandEP14MemoryResource","dnac::RenameResourceCommand::RenameResourceCommand::memRes_"],[12,4,1,"_CPPv4N4dnac21RenameResourceCommand5SuperE","dnac::RenameResourceCommand::Super"],[12,5,1,"_CPPv4I0EN4dnac21RenameResourceCommandE","dnac::RenameResourceCommand::TDerived"],[12,3,1,"_CPPv4N4dnac21RenameResourceCommand6configE","dnac::RenameResourceCommand::config"],[12,1,1,"_CPPv4NK4dnac21RenameResourceCommand14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameResourceCommand::getNameByIndex"],[12,2,1,"_CPPv4NK4dnac21RenameResourceCommand14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameResourceCommand::getNameByIndex::index_"],[12,2,1,"_CPPv4NK4dnac21RenameResourceCommand14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameResourceCommand::getNameByIndex::input"],[12,1,1,"_CPPv4NK4dnac21RenameResourceCommand12getNameCountEPKN3dna6ReaderE","dnac::RenameResourceCommand::getNameCount"],[12,2,1,"_CPPv4NK4dnac21RenameResourceCommand12getNameCountEPKN3dna6ReaderE","dnac::RenameResourceCommand::getNameCount::input"],[12,3,1,"_CPPv4N4dnac21RenameResourceCommand5indexE","dnac::RenameResourceCommand::index"],[12,3,1,"_CPPv4N4dnac21RenameResourceCommand7newNameE","dnac::RenameResourceCommand::newName"],[12,3,1,"_CPPv4N4dnac21RenameResourceCommand7oldNameE","dnac::RenameResourceCommand::oldName"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommandaSERK21RenameResourceCommand","dnac::RenameResourceCommand::operator="],[12,1,1,"_CPPv4N4dnac21RenameResourceCommandaSERR21RenameResourceCommand","dnac::RenameResourceCommand::operator="],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand6renameEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::rename"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand6renameEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::rename::output"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand3runEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::run"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand3runEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::run::output"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand15searchAndRenameEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::searchAndRename"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand15searchAndRenameEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::searchAndRename::output"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand7setNameENSt8uint16_tEPKc","dnac::RenameResourceCommand::setName"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand7setNameEPKcPKc","dnac::RenameResourceCommand::setName"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand7setNameENSt8uint16_tEPKc","dnac::RenameResourceCommand::setName::index_"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand7setNameENSt8uint16_tEPKc","dnac::RenameResourceCommand::setName::newName_"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand7setNameEPKcPKc","dnac::RenameResourceCommand::setName::newName_"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand7setNameEPKcPKc","dnac::RenameResourceCommand::setName::oldName_"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameResourceCommand::setNameByIndex"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameResourceCommand::setNameByIndex::index_"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameResourceCommand::setNameByIndex::name"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameResourceCommand::setNameByIndex::output"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommandD0Ev","dnac::RenameResourceCommand::~RenameResourceCommand"],[12,0,1,"_CPPv4N4dnac13RotateCommandE","dnac::RotateCommand"],[12,0,1,"_CPPv4N4dnac13RotateCommand4ImplE","dnac::RotateCommand::Impl"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl4ImplEP14MemoryResource","dnac::RotateCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl4ImplEP14MemoryResource","dnac::RotateCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac13RotateCommand4Impl5SuperE","dnac::RotateCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac13RotateCommand4Impl7degreesE","dnac::RotateCommand::Impl::degrees"],[12,1,1,"_CPPv4NK4dnac13RotateCommand4Impl31getRotationTransformationMatrixEv","dnac::RotateCommand::Impl::getRotationTransformationMatrix"],[12,3,1,"_CPPv4N4dnac13RotateCommand4Impl6originE","dnac::RotateCommand::Impl::origin"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl28rotateBlendShapeTargetDeltasEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateBlendShapeTargetDeltas"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl28rotateBlendShapeTargetDeltasEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateBlendShapeTargetDeltas::output"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl19rotateNeutralJointsEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateNeutralJoints"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl19rotateNeutralJointsEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateNeutralJoints::output"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl21rotateVertexPositionsEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateVertexPositions"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl21rotateVertexPositionsEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateVertexPositions::output"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl9setOriginE7Vector3","dnac::RotateCommand::Impl::setOrigin"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl9setOriginE7Vector3","dnac::RotateCommand::Impl::setOrigin::origin_"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl11setRotationE7Vector3","dnac::RotateCommand::Impl::setRotation"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl11setRotationE7Vector3","dnac::RotateCommand::Impl::setRotation::degrees_"],[12,1,1,"_CPPv4N4dnac13RotateCommand13RotateCommandE7Vector37Vector3P14MemoryResource","dnac::RotateCommand::RotateCommand"],[12,1,1,"_CPPv4N4dnac13RotateCommand13RotateCommandEP14MemoryResource","dnac::RotateCommand::RotateCommand"],[12,1,1,"_CPPv4N4dnac13RotateCommand13RotateCommandERK13RotateCommand","dnac::RotateCommand::RotateCommand"],[12,1,1,"_CPPv4N4dnac13RotateCommand13RotateCommandERR13RotateCommand","dnac::RotateCommand::RotateCommand"],[12,2,1,"_CPPv4N4dnac13RotateCommand13RotateCommandE7Vector37Vector3P14MemoryResource","dnac::RotateCommand::RotateCommand::degrees"],[12,2,1,"_CPPv4N4dnac13RotateCommand13RotateCommandE7Vector37Vector3P14MemoryResource","dnac::RotateCommand::RotateCommand::memRes"],[12,2,1,"_CPPv4N4dnac13RotateCommand13RotateCommandEP14MemoryResource","dnac::RotateCommand::RotateCommand::memRes"],[12,2,1,"_CPPv4N4dnac13RotateCommand13RotateCommandE7Vector37Vector3P14MemoryResource","dnac::RotateCommand::RotateCommand::origin"],[12,1,1,"_CPPv4N4dnac13RotateCommandaSERK13RotateCommand","dnac::RotateCommand::operator="],[12,1,1,"_CPPv4N4dnac13RotateCommandaSERR13RotateCommand","dnac::RotateCommand::operator="],[12,3,1,"_CPPv4N4dnac13RotateCommand5pImplE","dnac::RotateCommand::pImpl"],[12,1,1,"_CPPv4N4dnac13RotateCommand3runEP17DNACalibDNAReader","dnac::RotateCommand::run"],[12,2,1,"_CPPv4N4dnac13RotateCommand3runEP17DNACalibDNAReader","dnac::RotateCommand::run::output"],[12,1,1,"_CPPv4N4dnac13RotateCommand9setOriginE7Vector3","dnac::RotateCommand::setOrigin"],[12,2,1,"_CPPv4N4dnac13RotateCommand9setOriginE7Vector3","dnac::RotateCommand::setOrigin::origin"],[12,1,1,"_CPPv4N4dnac13RotateCommand11setRotationE7Vector3","dnac::RotateCommand::setRotation"],[12,2,1,"_CPPv4N4dnac13RotateCommand11setRotationE7Vector3","dnac::RotateCommand::setRotation::degrees"],[12,1,1,"_CPPv4N4dnac13RotateCommandD0Ev","dnac::RotateCommand::~RotateCommand"],[12,0,1,"_CPPv4N4dnac12ScaleCommandE","dnac::ScaleCommand"],[12,0,1,"_CPPv4N4dnac12ScaleCommand4ImplE","dnac::ScaleCommand::Impl"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl4ImplEP14MemoryResource","dnac::ScaleCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl4ImplEP14MemoryResource","dnac::ScaleCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac12ScaleCommand4Impl5SuperE","dnac::ScaleCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac12ScaleCommand4Impl6originE","dnac::ScaleCommand::Impl::origin"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::run::output"],[12,3,1,"_CPPv4N4dnac12ScaleCommand4Impl5scaleE","dnac::ScaleCommand::Impl::scale"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl27scaleBlendShapeTargetDeltasEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleBlendShapeTargetDeltas"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl27scaleBlendShapeTargetDeltasEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleBlendShapeTargetDeltas::meshIndex"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl27scaleBlendShapeTargetDeltasEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleBlendShapeTargetDeltas::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl13scaleGeometryEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleGeometry"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl13scaleGeometryEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleGeometry::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl18scaleJointBehaviorEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleJointBehavior"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl18scaleJointBehaviorEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleJointBehavior::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl18scaleNeutralJointsEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleNeutralJoints"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl18scaleNeutralJointsEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleNeutralJoints::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl20scaleVertexPositionsEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleVertexPositions"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl20scaleVertexPositionsEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleVertexPositions::meshIndex"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl20scaleVertexPositionsEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleVertexPositions::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl9setOriginE7Vector3","dnac::ScaleCommand::Impl::setOrigin"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl9setOriginE7Vector3","dnac::ScaleCommand::Impl::setOrigin::origin_"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl8setScaleEf","dnac::ScaleCommand::Impl::setScale"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl8setScaleEf","dnac::ScaleCommand::Impl::setScale::scale_"],[12,1,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEP14MemoryResource","dnac::ScaleCommand::ScaleCommand"],[12,1,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandERK12ScaleCommand","dnac::ScaleCommand::ScaleCommand"],[12,1,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandERR12ScaleCommand","dnac::ScaleCommand::ScaleCommand"],[12,1,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEf7Vector3P14MemoryResource","dnac::ScaleCommand::ScaleCommand"],[12,2,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEP14MemoryResource","dnac::ScaleCommand::ScaleCommand::memRes"],[12,2,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEf7Vector3P14MemoryResource","dnac::ScaleCommand::ScaleCommand::memRes"],[12,2,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEf7Vector3P14MemoryResource","dnac::ScaleCommand::ScaleCommand::origin"],[12,2,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEf7Vector3P14MemoryResource","dnac::ScaleCommand::ScaleCommand::scale"],[12,1,1,"_CPPv4N4dnac12ScaleCommandaSERK12ScaleCommand","dnac::ScaleCommand::operator="],[12,1,1,"_CPPv4N4dnac12ScaleCommandaSERR12ScaleCommand","dnac::ScaleCommand::operator="],[12,3,1,"_CPPv4N4dnac12ScaleCommand5pImplE","dnac::ScaleCommand::pImpl"],[12,1,1,"_CPPv4N4dnac12ScaleCommand3runEP17DNACalibDNAReader","dnac::ScaleCommand::run"],[12,2,1,"_CPPv4N4dnac12ScaleCommand3runEP17DNACalibDNAReader","dnac::ScaleCommand::run::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand9setOriginE7Vector3","dnac::ScaleCommand::setOrigin"],[12,2,1,"_CPPv4N4dnac12ScaleCommand9setOriginE7Vector3","dnac::ScaleCommand::setOrigin::origin"],[12,1,1,"_CPPv4N4dnac12ScaleCommand8setScaleEf","dnac::ScaleCommand::setScale"],[12,2,1,"_CPPv4N4dnac12ScaleCommand8setScaleEf","dnac::ScaleCommand::setScale::scale"],[12,1,1,"_CPPv4N4dnac12ScaleCommandD0Ev","dnac::ScaleCommand::~ScaleCommand"],[12,0,1,"_CPPv4N4dnac18SectionLookupTableE","dnac::SectionLookupTable"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable12animatedMapsE","dnac::SectionLookupTable::animatedMaps"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable8behaviorE","dnac::SectionLookupTable::behavior"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable18blendShapeChannelsE","dnac::SectionLookupTable::blendShapeChannels"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable8controlsE","dnac::SectionLookupTable::controls"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable10definitionE","dnac::SectionLookupTable::definition"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable10descriptorE","dnac::SectionLookupTable::descriptor"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable8geometryE","dnac::SectionLookupTable::geometry"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable6jointsE","dnac::SectionLookupTable::joints"],[12,1,1,"_CPPv4I0EN4dnac18SectionLookupTable9serializeEvR7Archive","dnac::SectionLookupTable::serialize"],[12,5,1,"_CPPv4I0EN4dnac18SectionLookupTable9serializeEvR7Archive","dnac::SectionLookupTable::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac18SectionLookupTable9serializeEvR7Archive","dnac::SectionLookupTable::serialize::archive"],[12,0,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommandE","dnac::SetBlendShapeTargetDeltasCommand"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand24DeltasMasksCountMismatchE","dnac::SetBlendShapeTargetDeltasCommand::DeltasMasksCountMismatch"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32DeltasVertexIndicesCountMismatchE","dnac::SetBlendShapeTargetDeltasCommand::DeltasVertexIndicesCountMismatch"],[12,0,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4ImplE","dnac::SetBlendShapeTargetDeltasCommand::Impl"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl4ImplEP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl4ImplEP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl5SuperE","dnac::SetBlendShapeTargetDeltasCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl21blendShapeTargetIndexE","dnac::SetBlendShapeTargetDeltasCommand::Impl::blendShapeTargetIndex"],[12,1,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas"],[12,5,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas::FOperation"],[12,5,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas::FWeightGetter"],[12,2,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas::getWeight"],[12,2,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas::op"],[12,2,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas::output"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl6deltasE","dnac::SetBlendShapeTargetDeltasCommand::Impl::deltas"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl7densifyER16RawVector3VectorR6VectorINSt8uint32_tEENSt8uint32_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::densify"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl7densifyER16RawVector3VectorR6VectorINSt8uint32_tEENSt8uint32_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::densify::bsDeltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl7densifyER16RawVector3VectorR6VectorINSt8uint32_tEENSt8uint32_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::densify::bsVertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl7densifyER16RawVector3VectorR6VectorINSt8uint32_tEENSt8uint32_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::densify::vertexCount"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl5masksE","dnac::SetBlendShapeTargetDeltasCommand::Impl::masks"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9meshIndexE","dnac::SetBlendShapeTargetDeltasCommand::Impl::meshIndex"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9operationE","dnac::SetBlendShapeTargetDeltasCommand::Impl::operation"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl24setBlendShapeTargetIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setBlendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl24setBlendShapeTargetIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setBlendShapeTargetIndex::blendShapeTargetIndex_"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewI7Vector3E","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewI7Vector3E","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas::deltas_"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas::xs"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas::ys"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas::zs"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8setMasksE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setMasks"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8setMasksE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setMasks::masks_"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setMeshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setMeshIndex::meshIndex_"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl12setOperationE15VectorOperation","dnac::SetBlendShapeTargetDeltasCommand::Impl::setOperation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl12setOperationE15VectorOperation","dnac::SetBlendShapeTargetDeltasCommand::Impl::setOperation::operation_"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl16setVertexIndicesE14ConstArrayViewINSt8uint32_tEE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setVertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl16setVertexIndicesE14ConstArrayViewINSt8uint32_tEE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setVertexIndices::vertexIndices_"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8sparsifyER16RawVector3VectorR6VectorINSt8uint32_tEEf","dnac::SetBlendShapeTargetDeltasCommand::Impl::sparsify"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8sparsifyER16RawVector3VectorR6VectorINSt8uint32_tEEf","dnac::SetBlendShapeTargetDeltasCommand::Impl::sparsify::bsDeltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8sparsifyER16RawVector3VectorR6VectorINSt8uint32_tEEf","dnac::SetBlendShapeTargetDeltasCommand::Impl::sparsify::bsVertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8sparsifyER16RawVector3VectorR6VectorINSt8uint32_tEEf","dnac::SetBlendShapeTargetDeltasCommand::Impl::sparsify::threshold"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl6statusE","dnac::SetBlendShapeTargetDeltasCommand::Impl::status"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl13vertexIndicesE","dnac::SetBlendShapeTargetDeltasCommand::Impl::vertexIndices"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand23NoVertexIndicesSetErrorE","dnac::SetBlendShapeTargetDeltasCommand::NoVertexIndicesSetError"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandEP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandERK32SetBlendShapeTargetDeltasCommand","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandERR32SetBlendShapeTargetDeltasCommand","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::deltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::deltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::masks"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::masks"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::memRes"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::memRes"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::memRes"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::memRes"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandEP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::memRes"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::operation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::operation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::operation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::operation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::vertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::vertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::vertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::vertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::xs"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::xs"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::ys"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::ys"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::zs"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::zs"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand29VertexIndicesOutOfBoundsErrorE","dnac::SetBlendShapeTargetDeltasCommand::VertexIndicesOutOfBoundsError"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommandaSERK32SetBlendShapeTargetDeltasCommand","dnac::SetBlendShapeTargetDeltasCommand::operator="],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommandaSERR32SetBlendShapeTargetDeltasCommand","dnac::SetBlendShapeTargetDeltasCommand::operator="],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand5pImplE","dnac::SetBlendShapeTargetDeltasCommand::pImpl"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand3runEP17DNACalibDNAReader","dnac::SetBlendShapeTargetDeltasCommand::run"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand3runEP17DNACalibDNAReader","dnac::SetBlendShapeTargetDeltasCommand::run::output"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand24setBlendShapeTargetIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::setBlendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand24setBlendShapeTargetIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::setBlendShapeTargetIndex::blendShapeTargetIndex"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewI7Vector3E","dnac::SetBlendShapeTargetDeltasCommand::setDeltas"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setDeltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewI7Vector3E","dnac::SetBlendShapeTargetDeltasCommand::setDeltas::deltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setDeltas::xs"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setDeltas::ys"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setDeltas::zs"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand8setMasksE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setMasks"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand8setMasksE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setMasks::masks"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand12setMeshIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::setMeshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand12setMeshIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::setMeshIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand12setOperationE15VectorOperation","dnac::SetBlendShapeTargetDeltasCommand::setOperation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand12setOperationE15VectorOperation","dnac::SetBlendShapeTargetDeltasCommand::setOperation::operation"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand16setVertexIndicesE14ConstArrayViewINSt8uint32_tEE","dnac::SetBlendShapeTargetDeltasCommand::setVertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand16setVertexIndicesE14ConstArrayViewINSt8uint32_tEE","dnac::SetBlendShapeTargetDeltasCommand::setVertexIndices::vertexIndices"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommandD0Ev","dnac::SetBlendShapeTargetDeltasCommand::~SetBlendShapeTargetDeltasCommand"],[12,0,1,"_CPPv4N4dnac14SetLODsCommandE","dnac::SetLODsCommand"],[12,0,1,"_CPPv4N4dnac14SetLODsCommand4ImplE","dnac::SetLODsCommand::Impl"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand4Impl4ImplEP14MemoryResource","dnac::SetLODsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand4Impl4ImplEP14MemoryResource","dnac::SetLODsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac14SetLODsCommand4Impl5SuperE","dnac::SetLODsCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac14SetLODsCommand4Impl4lodsE","dnac::SetLODsCommand::Impl::lods"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetLODsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetLODsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand4Impl7setLODsE14ConstArrayViewINSt8uint16_tEE","dnac::SetLODsCommand::Impl::setLODs"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand4Impl7setLODsE14ConstArrayViewINSt8uint16_tEE","dnac::SetLODsCommand::Impl::setLODs::lods_"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetLODsCommand::SetLODsCommand"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandEP14MemoryResource","dnac::SetLODsCommand::SetLODsCommand"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandERK14SetLODsCommand","dnac::SetLODsCommand::SetLODsCommand"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandERR14SetLODsCommand","dnac::SetLODsCommand::SetLODsCommand"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetLODsCommand::SetLODsCommand::lods"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetLODsCommand::SetLODsCommand::memRes"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandEP14MemoryResource","dnac::SetLODsCommand::SetLODsCommand::memRes"],[12,1,1,"_CPPv4N4dnac14SetLODsCommandaSERK14SetLODsCommand","dnac::SetLODsCommand::operator="],[12,1,1,"_CPPv4N4dnac14SetLODsCommandaSERR14SetLODsCommand","dnac::SetLODsCommand::operator="],[12,3,1,"_CPPv4N4dnac14SetLODsCommand5pImplE","dnac::SetLODsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand3runEP17DNACalibDNAReader","dnac::SetLODsCommand::run"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand3runEP17DNACalibDNAReader","dnac::SetLODsCommand::run::output"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand7setLODsE14ConstArrayViewINSt8uint16_tEE","dnac::SetLODsCommand::setLODs"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand7setLODsE14ConstArrayViewINSt8uint16_tEE","dnac::SetLODsCommand::setLODs::lods"],[12,1,1,"_CPPv4N4dnac14SetLODsCommandD0Ev","dnac::SetLODsCommand::~SetLODsCommand"],[12,0,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommandE","dnac::SetNeutralJointRotationsCommand"],[12,0,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4ImplE","dnac::SetNeutralJointRotationsCommand::Impl"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl4ImplEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl4ImplEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl5SuperE","dnac::SetNeutralJointRotationsCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl9rotationsE","dnac::SetNeutralJointRotationsCommand::Impl::rotations"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetNeutralJointRotationsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetNeutralJointRotationsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointRotationsCommand::Impl::setRotations"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::Impl::setRotations"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointRotationsCommand::Impl::setRotations::rotations_"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::Impl::setRotations::xs"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::Impl::setRotations::ys"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::Impl::setRotations::zs"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandERK31SetNeutralJointRotationsCommand","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandERR31SetNeutralJointRotationsCommand","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::rotations"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::xs"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::ys"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::zs"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommandaSERK31SetNeutralJointRotationsCommand","dnac::SetNeutralJointRotationsCommand::operator="],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommandaSERR31SetNeutralJointRotationsCommand","dnac::SetNeutralJointRotationsCommand::operator="],[12,3,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand5pImplE","dnac::SetNeutralJointRotationsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand3runEP17DNACalibDNAReader","dnac::SetNeutralJointRotationsCommand::run"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand3runEP17DNACalibDNAReader","dnac::SetNeutralJointRotationsCommand::run::output"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointRotationsCommand::setRotations"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::setRotations"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointRotationsCommand::setRotations::rotations"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::setRotations::xs"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::setRotations::ys"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::setRotations::zs"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommandD0Ev","dnac::SetNeutralJointRotationsCommand::~SetNeutralJointRotationsCommand"],[12,0,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommandE","dnac::SetNeutralJointTranslationsCommand"],[12,0,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4ImplE","dnac::SetNeutralJointTranslationsCommand::Impl"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl4ImplEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl4ImplEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl5SuperE","dnac::SetNeutralJointTranslationsCommand::Impl::Super"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetNeutralJointTranslationsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetNeutralJointTranslationsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations::translations_"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations::xs"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations::ys"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations::zs"],[12,3,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl12translationsE","dnac::SetNeutralJointTranslationsCommand::Impl::translations"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandERK34SetNeutralJointTranslationsCommand","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandERR34SetNeutralJointTranslationsCommand","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::translations"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::xs"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::ys"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::zs"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommandaSERK34SetNeutralJointTranslationsCommand","dnac::SetNeutralJointTranslationsCommand::operator="],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommandaSERR34SetNeutralJointTranslationsCommand","dnac::SetNeutralJointTranslationsCommand::operator="],[12,3,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand5pImplE","dnac::SetNeutralJointTranslationsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand3runEP17DNACalibDNAReader","dnac::SetNeutralJointTranslationsCommand::run"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand3runEP17DNACalibDNAReader","dnac::SetNeutralJointTranslationsCommand::run::output"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointTranslationsCommand::setTranslations"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::setTranslations"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointTranslationsCommand::setTranslations::translations"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::setTranslations::xs"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::setTranslations::ys"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::setTranslations::zs"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommandD0Ev","dnac::SetNeutralJointTranslationsCommand::~SetNeutralJointTranslationsCommand"],[12,0,1,"_CPPv4N4dnac21SetSkinWeightsCommandE","dnac::SetSkinWeightsCommand"],[12,0,1,"_CPPv4N4dnac21SetSkinWeightsCommand4ImplE","dnac::SetSkinWeightsCommand::Impl"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl4ImplEP14MemoryResource","dnac::SetSkinWeightsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl4ImplEP14MemoryResource","dnac::SetSkinWeightsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl5SuperE","dnac::SetSkinWeightsCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl12jointIndicesE","dnac::SetSkinWeightsCommand::Impl::jointIndices"],[12,3,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl9meshIndexE","dnac::SetSkinWeightsCommand::Impl::meshIndex"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetSkinWeightsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetSkinWeightsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::SetSkinWeightsCommand::Impl::setJointIndices"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::SetSkinWeightsCommand::Impl::setJointIndices::jointIndices_"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetSkinWeightsCommand::Impl::setMeshIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetSkinWeightsCommand::Impl::setMeshIndex::meshIndex_"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl14setVertexIndexENSt8uint32_tE","dnac::SetSkinWeightsCommand::Impl::setVertexIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl14setVertexIndexENSt8uint32_tE","dnac::SetSkinWeightsCommand::Impl::setVertexIndex::vertexIndex_"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl10setWeightsE14ConstArrayViewIfE","dnac::SetSkinWeightsCommand::Impl::setWeights"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl10setWeightsE14ConstArrayViewIfE","dnac::SetSkinWeightsCommand::Impl::setWeights::weights_"],[12,3,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl11vertexIndexE","dnac::SetSkinWeightsCommand::Impl::vertexIndex"],[12,3,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl7weightsE","dnac::SetSkinWeightsCommand::Impl::weights"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandERK21SetSkinWeightsCommand","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandERR21SetSkinWeightsCommand","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::jointIndices"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::memRes"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::memRes"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::vertexIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::weights"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommandaSERK21SetSkinWeightsCommand","dnac::SetSkinWeightsCommand::operator="],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommandaSERR21SetSkinWeightsCommand","dnac::SetSkinWeightsCommand::operator="],[12,3,1,"_CPPv4N4dnac21SetSkinWeightsCommand5pImplE","dnac::SetSkinWeightsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand3runEP17DNACalibDNAReader","dnac::SetSkinWeightsCommand::run"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand3runEP17DNACalibDNAReader","dnac::SetSkinWeightsCommand::run::output"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::SetSkinWeightsCommand::setJointIndices"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::SetSkinWeightsCommand::setJointIndices::jointIndices"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand12setMeshIndexENSt8uint16_tE","dnac::SetSkinWeightsCommand::setMeshIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand12setMeshIndexENSt8uint16_tE","dnac::SetSkinWeightsCommand::setMeshIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand14setVertexIndexENSt8uint32_tE","dnac::SetSkinWeightsCommand::setVertexIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand14setVertexIndexENSt8uint32_tE","dnac::SetSkinWeightsCommand::setVertexIndex::vertexIndex"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand10setWeightsE14ConstArrayViewIfE","dnac::SetSkinWeightsCommand::setWeights"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand10setWeightsE14ConstArrayViewIfE","dnac::SetSkinWeightsCommand::setWeights::weights"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommandD0Ev","dnac::SetSkinWeightsCommand::~SetSkinWeightsCommand"],[12,0,1,"_CPPv4N4dnac25SetVertexPositionsCommandE","dnac::SetVertexPositionsCommand"],[12,0,1,"_CPPv4N4dnac25SetVertexPositionsCommand4ImplE","dnac::SetVertexPositionsCommand::Impl"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl4ImplEP14MemoryResource","dnac::SetVertexPositionsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl4ImplEP14MemoryResource","dnac::SetVertexPositionsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl5SuperE","dnac::SetVertexPositionsCommand::Impl::Super"],[12,1,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions"],[12,5,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions::FOperation"],[12,5,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions::FWeightGetter"],[12,2,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions::getWeight"],[12,2,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions::op"],[12,2,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions::output"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl5masksE","dnac::SetVertexPositionsCommand::Impl::masks"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl9meshIndexE","dnac::SetVertexPositionsCommand::Impl::meshIndex"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl9operationE","dnac::SetVertexPositionsCommand::Impl::operation"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl9positionsE","dnac::SetVertexPositionsCommand::Impl::positions"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl8setMasksE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setMasks"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl8setMasksE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setMasks::masks_"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetVertexPositionsCommand::Impl::setMeshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetVertexPositionsCommand::Impl::setMeshIndex::meshIndex_"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setOperationE15VectorOperation","dnac::SetVertexPositionsCommand::Impl::setOperation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setOperationE15VectorOperation","dnac::SetVertexPositionsCommand::Impl::setOperation::operation_"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewI7Vector3E","dnac::SetVertexPositionsCommand::Impl::setPositions"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setPositions"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewI7Vector3E","dnac::SetVertexPositionsCommand::Impl::setPositions::positions_"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setPositions::xs"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setPositions::ys"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setPositions::zs"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl6statusE","dnac::SetVertexPositionsCommand::Impl::status"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand27PositionsMasksCountMismatchE","dnac::SetVertexPositionsCommand::PositionsMasksCountMismatch"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandEP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandERK25SetVertexPositionsCommand","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandERR25SetVertexPositionsCommand","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::masks"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::masks"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::memRes"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::memRes"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::memRes"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::memRes"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandEP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::memRes"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::operation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::operation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::operation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::operation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::positions"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::positions"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::xs"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::xs"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::ys"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::ys"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::zs"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::zs"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommandaSERK25SetVertexPositionsCommand","dnac::SetVertexPositionsCommand::operator="],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommandaSERR25SetVertexPositionsCommand","dnac::SetVertexPositionsCommand::operator="],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand5pImplE","dnac::SetVertexPositionsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand3runEP17DNACalibDNAReader","dnac::SetVertexPositionsCommand::run"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand3runEP17DNACalibDNAReader","dnac::SetVertexPositionsCommand::run::output"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand8setMasksE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setMasks"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand8setMasksE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setMasks::masks"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setMeshIndexENSt8uint16_tE","dnac::SetVertexPositionsCommand::setMeshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setMeshIndexENSt8uint16_tE","dnac::SetVertexPositionsCommand::setMeshIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setOperationE15VectorOperation","dnac::SetVertexPositionsCommand::setOperation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setOperationE15VectorOperation","dnac::SetVertexPositionsCommand::setOperation::operation"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewI7Vector3E","dnac::SetVertexPositionsCommand::setPositions"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setPositions"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewI7Vector3E","dnac::SetVertexPositionsCommand::setPositions::positions"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setPositions::xs"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setPositions::ys"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setPositions::zs"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommandD0Ev","dnac::SetVertexPositionsCommand::~SetVertexPositionsCommand"],[12,0,1,"_CPPv4I_NSt6size_tEEN4dnac9SignatureE","dnac::Signature"],[12,1,1,"_CPPv4N4dnac9Signature9SignatureE18SignatureValueType","dnac::Signature::Signature"],[12,2,1,"_CPPv4N4dnac9Signature9SignatureE18SignatureValueType","dnac::Signature::Signature::bytes"],[12,4,1,"_CPPv4N4dnac9Signature18SignatureValueTypeE","dnac::Signature::SignatureValueType"],[12,5,1,"_CPPv4I_NSt6size_tEEN4dnac9SignatureE","dnac::Signature::Size"],[12,1,1,"_CPPv4NK4dnac9Signature7matchesEv","dnac::Signature::matches"],[12,1,1,"_CPPv4I0EN4dnac9Signature9serializeEvR7Archive","dnac::Signature::serialize"],[12,5,1,"_CPPv4I0EN4dnac9Signature9serializeEvR7Archive","dnac::Signature::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac9Signature9serializeEvR7Archive","dnac::Signature::serialize::archive"],[12,3,1,"_CPPv4N4dnac9Signature5valueE","dnac::Signature::value"],[12,0,1,"_CPPv4N4dnac16TranslateCommandE","dnac::TranslateCommand"],[12,0,1,"_CPPv4N4dnac16TranslateCommand4ImplE","dnac::TranslateCommand::Impl"],[12,1,1,"_CPPv4N4dnac16TranslateCommand4Impl4ImplEP14MemoryResource","dnac::TranslateCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac16TranslateCommand4Impl4ImplEP14MemoryResource","dnac::TranslateCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac16TranslateCommand4Impl5SuperE","dnac::TranslateCommand::Impl::Super"],[12,1,1,"_CPPv4N4dnac16TranslateCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac16TranslateCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac16TranslateCommand4Impl14setTranslationE7Vector3","dnac::TranslateCommand::Impl::setTranslation"],[12,2,1,"_CPPv4N4dnac16TranslateCommand4Impl14setTranslationE7Vector3","dnac::TranslateCommand::Impl::setTranslation::translation_"],[12,1,1,"_CPPv4N4dnac16TranslateCommand4Impl22translateNeutralJointsEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::translateNeutralJoints"],[12,2,1,"_CPPv4N4dnac16TranslateCommand4Impl22translateNeutralJointsEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::translateNeutralJoints::output"],[12,1,1,"_CPPv4N4dnac16TranslateCommand4Impl24translateVertexPositionsEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::translateVertexPositions"],[12,2,1,"_CPPv4N4dnac16TranslateCommand4Impl24translateVertexPositionsEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::translateVertexPositions::output"],[12,3,1,"_CPPv4N4dnac16TranslateCommand4Impl11translationE","dnac::TranslateCommand::Impl::translation"],[12,1,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandE7Vector3P14MemoryResource","dnac::TranslateCommand::TranslateCommand"],[12,1,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandEP14MemoryResource","dnac::TranslateCommand::TranslateCommand"],[12,1,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandERK16TranslateCommand","dnac::TranslateCommand::TranslateCommand"],[12,1,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandERR16TranslateCommand","dnac::TranslateCommand::TranslateCommand"],[12,2,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandE7Vector3P14MemoryResource","dnac::TranslateCommand::TranslateCommand::memRes"],[12,2,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandEP14MemoryResource","dnac::TranslateCommand::TranslateCommand::memRes"],[12,2,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandE7Vector3P14MemoryResource","dnac::TranslateCommand::TranslateCommand::translation"],[12,1,1,"_CPPv4N4dnac16TranslateCommandaSERK16TranslateCommand","dnac::TranslateCommand::operator="],[12,1,1,"_CPPv4N4dnac16TranslateCommandaSERR16TranslateCommand","dnac::TranslateCommand::operator="],[12,3,1,"_CPPv4N4dnac16TranslateCommand5pImplE","dnac::TranslateCommand::pImpl"],[12,1,1,"_CPPv4N4dnac16TranslateCommand3runEP17DNACalibDNAReader","dnac::TranslateCommand::run"],[12,2,1,"_CPPv4N4dnac16TranslateCommand3runEP17DNACalibDNAReader","dnac::TranslateCommand::run::output"],[12,1,1,"_CPPv4N4dnac16TranslateCommand14setTranslationE7Vector3","dnac::TranslateCommand::setTranslation"],[12,2,1,"_CPPv4N4dnac16TranslateCommand14setTranslationE7Vector3","dnac::TranslateCommand::setTranslation::translation"],[12,1,1,"_CPPv4N4dnac16TranslateCommandD0Ev","dnac::TranslateCommand::~TranslateCommand"],[12,0,1,"_CPPv4N4dnac8TriangleE","dnac::Triangle"],[12,1,1,"_CPPv4NK4dnac8Triangle1AEv","dnac::Triangle::A"],[12,1,1,"_CPPv4NK4dnac8Triangle1BEv","dnac::Triangle::B"],[12,1,1,"_CPPv4NK4dnac8Triangle1CEv","dnac::Triangle::C"],[12,1,1,"_CPPv4N4dnac8Triangle8TriangleERK5fvec2RK5fvec2RK5fvec2","dnac::Triangle::Triangle"],[12,1,1,"_CPPv4N4dnac8Triangle8TriangleERK8Triangle","dnac::Triangle::Triangle"],[12,1,1,"_CPPv4N4dnac8Triangle8TriangleERKNSt5arrayI5fvec2XL3EEEE","dnac::Triangle::Triangle"],[12,1,1,"_CPPv4N4dnac8Triangle8TriangleERR8Triangle","dnac::Triangle::Triangle"],[12,2,1,"_CPPv4N4dnac8Triangle8TriangleERK5fvec2RK5fvec2RK5fvec2","dnac::Triangle::Triangle::a"],[12,2,1,"_CPPv4N4dnac8Triangle8TriangleERK5fvec2RK5fvec2RK5fvec2","dnac::Triangle::Triangle::b"],[12,2,1,"_CPPv4N4dnac8Triangle8TriangleERK5fvec2RK5fvec2RK5fvec2","dnac::Triangle::Triangle::c"],[12,2,1,"_CPPv4N4dnac8Triangle8TriangleERK8Triangle","dnac::Triangle::Triangle::triangle"],[12,2,1,"_CPPv4N4dnac8Triangle8TriangleERKNSt5arrayI5fvec2XL3EEEE","dnac::Triangle::Triangle::vertices"],[12,3,1,"_CPPv4N4dnac8Triangle1aE","dnac::Triangle::a"],[12,3,1,"_CPPv4N4dnac8Triangle3d00E","dnac::Triangle::d00"],[12,3,1,"_CPPv4N4dnac8Triangle3d01E","dnac::Triangle::d01"],[12,3,1,"_CPPv4N4dnac8Triangle3d11E","dnac::Triangle::d11"],[12,3,1,"_CPPv4N4dnac8Triangle5denomE","dnac::Triangle::denom"],[12,1,1,"_CPPv4NK4dnac8Triangle20getBarycentricCoordsERK5fvec2","dnac::Triangle::getBarycentricCoords"],[12,2,1,"_CPPv4NK4dnac8Triangle20getBarycentricCoordsERK5fvec2","dnac::Triangle::getBarycentricCoords::point"],[12,1,1,"_CPPv4N4dnac8TriangleaSERK8Triangle","dnac::Triangle::operator="],[12,1,1,"_CPPv4N4dnac8TriangleaSERR8Triangle","dnac::Triangle::operator="],[12,2,1,"_CPPv4N4dnac8TriangleaSERK8Triangle","dnac::Triangle::operator=::triangle"],[12,2,1,"_CPPv4N4dnac8TriangleaSERR8Triangle","dnac::Triangle::operator=::triangle"],[12,3,1,"_CPPv4N4dnac8Triangle2v0E","dnac::Triangle::v0"],[12,3,1,"_CPPv4N4dnac8Triangle2v1E","dnac::Triangle::v1"],[12,0,1,"_CPPv4N4dnac20UVBarycentricMappingE","dnac::UVBarycentricMapping"],[12,4,1,"_CPPv4N4dnac20UVBarycentricMapping30BarycentricPositionIndicesPairE","dnac::UVBarycentricMapping::BarycentricPositionIndicesPair"],[12,4,1,"_CPPv4N4dnac20UVBarycentricMapping27TrianglePositionIndicesPairE","dnac::UVBarycentricMapping::TrianglePositionIndicesPair"],[12,1,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingEPKN3dna6ReaderENSt8uint16_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping"],[12,1,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::Us"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::Vs"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::faceCount"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::faceGetter"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingEPKN3dna6ReaderENSt8uint16_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::memRes"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::memRes"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingEPKN3dna6ReaderENSt8uint16_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::meshIndex"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingEPKN3dna6ReaderENSt8uint16_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::reader"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::textureCoordinateUVIndices"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::vertexPositionIndices"],[12,3,1,"_CPPv4N4dnac20UVBarycentricMapping6bBoxesE","dnac::UVBarycentricMapping::bBoxes"],[12,1,1,"_CPPv4NK4dnac20UVBarycentricMapping14getBarycentricERK5fvec2","dnac::UVBarycentricMapping::getBarycentric"],[12,2,1,"_CPPv4NK4dnac20UVBarycentricMapping14getBarycentricERK5fvec2","dnac::UVBarycentricMapping::getBarycentric::uv"],[12,1,1,"_CPPv4NK4dnac20UVBarycentricMapping16getBoundingBoxesEv","dnac::UVBarycentricMapping::getBoundingBoxes"],[12,1,1,"_CPPv4NK4dnac20UVBarycentricMapping12getTrianglesEv","dnac::UVBarycentricMapping::getTriangles"],[12,3,1,"_CPPv4N4dnac20UVBarycentricMapping9trianglesE","dnac::UVBarycentricMapping::triangles"],[12,6,1,"_CPPv4N4dnac15VectorOperationE","dnac::VectorOperation"],[12,7,1,"_CPPv4N4dnac15VectorOperation3AddE","dnac::VectorOperation::Add"],[12,7,1,"_CPPv4N4dnac15VectorOperation11InterpolateE","dnac::VectorOperation::Interpolate"],[12,7,1,"_CPPv4N4dnac15VectorOperation8MultiplyE","dnac::VectorOperation::Multiply"],[12,7,1,"_CPPv4N4dnac15VectorOperation8SubtractE","dnac::VectorOperation::Subtract"],[12,0,1,"_CPPv4N4dnac7VersionE","dnac::Version"],[12,1,1,"_CPPv4N4dnac7Version7VersionENSt8uint16_tENSt8uint16_tE","dnac::Version::Version"],[12,2,1,"_CPPv4N4dnac7Version7VersionENSt8uint16_tENSt8uint16_tE","dnac::Version::Version::generation_"],[12,2,1,"_CPPv4N4dnac7Version7VersionENSt8uint16_tENSt8uint16_tE","dnac::Version::Version::version_"],[12,3,1,"_CPPv4N4dnac7Version10generationE","dnac::Version::generation"],[12,1,1,"_CPPv4NK4dnac7Version7matchesEv","dnac::Version::matches"],[12,1,1,"_CPPv4I0EN4dnac7Version9serializeEvR7Archive","dnac::Version::serialize"],[12,5,1,"_CPPv4I0EN4dnac7Version9serializeEvR7Archive","dnac::Version::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac7Version9serializeEvR7Archive","dnac::Version::serialize::archive"],[12,3,1,"_CPPv4N4dnac7Version7versionE","dnac::Version::version"],[12,0,1,"_CPPv4N4dnac19WeightGetterFactoryE","dnac::WeightGetterFactory"],[12,4,1,"_CPPv4N4dnac19WeightGetterFactory10GetterFuncE","dnac::WeightGetterFactory::GetterFunc"],[12,1,1,"_CPPv4N4dnac19WeightGetterFactory6createERK6VectorIfE","dnac::WeightGetterFactory::create"],[12,2,1,"_CPPv4N4dnac19WeightGetterFactory6createERK6VectorIfE","dnac::WeightGetterFactory::create::masks"],[12,0,1,"_CPPv4I0EN4dnac10WriterImplE","dnac::WriterImpl"],[12,5,1,"_CPPv4I0EN4dnac10WriterImplE","dnac::WriterImpl::TWriterBase"],[12,1,1,"_CPPv4N4dnac10WriterImpl10WriterImplEP14MemoryResource","dnac::WriterImpl::WriterImpl"],[12,2,1,"_CPPv4N4dnac10WriterImpl10WriterImplEP14MemoryResource","dnac::WriterImpl::WriterImpl::memRes_"],[12,1,1,"_CPPv4N4dnac10WriterImpl23clearAnimatedMapIndicesEv","dnac::WriterImpl::clearAnimatedMapIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl21clearAnimatedMapNamesEv","dnac::WriterImpl::clearAnimatedMapNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl29clearBlendShapeChannelIndicesEv","dnac::WriterImpl::clearBlendShapeChannelIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl27clearBlendShapeChannelNamesEv","dnac::WriterImpl::clearBlendShapeChannelNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl22clearBlendShapeTargetsENSt8uint16_tE","dnac::WriterImpl::clearBlendShapeTargets"],[12,2,1,"_CPPv4N4dnac10WriterImpl22clearBlendShapeTargetsENSt8uint16_tE","dnac::WriterImpl::clearBlendShapeTargets::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl28clearFaceVertexLayoutIndicesENSt8uint16_tE","dnac::WriterImpl::clearFaceVertexLayoutIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl28clearFaceVertexLayoutIndicesENSt8uint16_tE","dnac::WriterImpl::clearFaceVertexLayoutIndices::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl20clearGUIControlNamesEv","dnac::WriterImpl::clearGUIControlNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl16clearJointGroupsEv","dnac::WriterImpl::clearJointGroups"],[12,1,1,"_CPPv4N4dnac10WriterImpl17clearJointIndicesEv","dnac::WriterImpl::clearJointIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl15clearJointNamesEv","dnac::WriterImpl::clearJointNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl27clearLODAnimatedMapMappingsEv","dnac::WriterImpl::clearLODAnimatedMapMappings"],[12,1,1,"_CPPv4N4dnac10WriterImpl33clearLODBlendShapeChannelMappingsEv","dnac::WriterImpl::clearLODBlendShapeChannelMappings"],[12,1,1,"_CPPv4N4dnac10WriterImpl21clearLODJointMappingsEv","dnac::WriterImpl::clearLODJointMappings"],[12,1,1,"_CPPv4N4dnac10WriterImpl20clearLODMeshMappingsEv","dnac::WriterImpl::clearLODMeshMappings"],[12,1,1,"_CPPv4N4dnac10WriterImpl34clearMeshBlendShapeChannelMappingsEv","dnac::WriterImpl::clearMeshBlendShapeChannelMappings"],[12,1,1,"_CPPv4N4dnac10WriterImpl16clearMeshIndicesEv","dnac::WriterImpl::clearMeshIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl14clearMeshNamesEv","dnac::WriterImpl::clearMeshNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl11clearMeshesEv","dnac::WriterImpl::clearMeshes"],[12,1,1,"_CPPv4N4dnac10WriterImpl13clearMetaDataEv","dnac::WriterImpl::clearMetaData"],[12,1,1,"_CPPv4N4dnac10WriterImpl20clearRawControlNamesEv","dnac::WriterImpl::clearRawControlNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl16clearSkinWeightsENSt8uint16_tE","dnac::WriterImpl::clearSkinWeights"],[12,2,1,"_CPPv4N4dnac10WriterImpl16clearSkinWeightsENSt8uint16_tE","dnac::WriterImpl::clearSkinWeights::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl16deleteJointGroupENSt8uint16_tE","dnac::WriterImpl::deleteJointGroup"],[12,2,1,"_CPPv4N4dnac10WriterImpl16deleteJointGroupENSt8uint16_tE","dnac::WriterImpl::deleteJointGroup::jointGroupIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl10deleteMeshENSt8uint16_tE","dnac::WriterImpl::deleteMesh"],[12,2,1,"_CPPv4N4dnac10WriterImpl10deleteMeshENSt8uint16_tE","dnac::WriterImpl::deleteMesh::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl6setAgeENSt8uint16_tE","dnac::WriterImpl::setAge"],[12,2,1,"_CPPv4N4dnac10WriterImpl6setAgeENSt8uint16_tE","dnac::WriterImpl::setAge::age"],[12,1,1,"_CPPv4N4dnac10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapCutValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapCutValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapCutValues::cutValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapFromValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapFromValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapFromValues::fromValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapIndices::animatedMapIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapIndices::index"],[12,1,1,"_CPPv4N4dnac10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapInputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapInputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapInputIndices::inputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapLODs"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapLODs::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapLODs::lods"],[12,1,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dnac::WriterImpl::setAnimatedMapName"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dnac::WriterImpl::setAnimatedMapName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dnac::WriterImpl::setAnimatedMapName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapOutputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapOutputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapOutputIndices::outputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapSlopeValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapSlopeValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapSlopeValues::slopeValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapToValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapToValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapToValues::toValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl12setArchetypeE9Archetype","dnac::WriterImpl::setArchetype"],[12,2,1,"_CPPv4N4dnac10WriterImpl12setArchetypeE9Archetype","dnac::WriterImpl::setArchetype::archetype"],[12,1,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndex::blendShapeChannelIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndex::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndices::blendShapeChannelIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndices::index"],[12,1,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelInputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelInputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelInputIndices::inputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelLODs"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelLODs::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelLODs::lods"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dnac::WriterImpl::setBlendShapeChannelName"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dnac::WriterImpl::setBlendShapeChannelName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dnac::WriterImpl::setBlendShapeChannelName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelOutputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelOutputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelOutputIndices::outputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetDeltas"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetDeltas::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetDeltas::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetDeltas::deltas"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetDeltas::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetVertexIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetVertexIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetVertexIndices::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetVertexIndices::vertexIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl19setCoordinateSystemE16CoordinateSystem","dnac::WriterImpl::setCoordinateSystem"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setCoordinateSystemE16CoordinateSystem","dnac::WriterImpl::setCoordinateSystem::system"],[12,1,1,"_CPPv4N4dnac10WriterImpl15setDBComplexityEPKc","dnac::WriterImpl::setDBComplexity"],[12,2,1,"_CPPv4N4dnac10WriterImpl15setDBComplexityEPKc","dnac::WriterImpl::setDBComplexity::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl11setDBMaxLODENSt8uint16_tE","dnac::WriterImpl::setDBMaxLOD"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setDBMaxLODENSt8uint16_tE","dnac::WriterImpl::setDBMaxLOD::lod"],[12,1,1,"_CPPv4N4dnac10WriterImpl9setDBNameEPKc","dnac::WriterImpl::setDBName"],[12,2,1,"_CPPv4N4dnac10WriterImpl9setDBNameEPKc","dnac::WriterImpl::setDBName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setFaceVertexLayoutIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setFaceVertexLayoutIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setFaceVertexLayoutIndices::faceIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setFaceVertexLayoutIndices::layoutIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setFaceVertexLayoutIndices::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setGUIControlName"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setGUIControlName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setGUIControlName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawCutValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawCutValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawCutValues::cutValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawFromValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawFromValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawFromValues::fromValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawInputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawInputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawInputIndices::inputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawOutputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawOutputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawOutputIndices::outputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawSlopeValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawSlopeValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawSlopeValues::slopeValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawToValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawToValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawToValues::toValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl9setGenderE6Gender","dnac::WriterImpl::setGender"],[12,2,1,"_CPPv4N4dnac10WriterImpl9setGenderE6Gender","dnac::WriterImpl::setGender::gender"],[12,1,1,"_CPPv4N4dnac10WriterImpl19setJointColumnCountENSt8uint16_tE","dnac::WriterImpl::setJointColumnCount"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setJointColumnCountENSt8uint16_tE","dnac::WriterImpl::setJointColumnCount::columnCount"],[12,1,1,"_CPPv4N4dnac10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupInputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupInputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupInputIndices::inputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupInputIndices::jointGroupIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupJointIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupJointIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupJointIndices::jointGroupIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupJointIndices::jointIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupLODs"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupLODs::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupLODs::jointGroupIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupLODs::lods"],[12,1,1,"_CPPv4N4dnac10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupOutputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupOutputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupOutputIndices::jointGroupIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupOutputIndices::outputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dnac::WriterImpl::setJointGroupValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dnac::WriterImpl::setJointGroupValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dnac::WriterImpl::setJointGroupValues::jointGroupIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dnac::WriterImpl::setJointGroupValues::values"],[12,1,1,"_CPPv4N4dnac10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointHierarchy"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointHierarchy::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointHierarchy::jointIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointIndices::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointIndices::jointIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl12setJointNameENSt8uint16_tEPKc","dnac::WriterImpl::setJointName"],[12,2,1,"_CPPv4N4dnac10WriterImpl12setJointNameENSt8uint16_tEPKc","dnac::WriterImpl::setJointName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl12setJointNameENSt8uint16_tEPKc","dnac::WriterImpl::setJointName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl16setJointRowCountENSt8uint16_tE","dnac::WriterImpl::setJointRowCount"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setJointRowCountENSt8uint16_tE","dnac::WriterImpl::setJointRowCount::rowCount"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODAnimatedMapMapping"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODAnimatedMapMapping::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODAnimatedMapMapping::lod"],[12,1,1,"_CPPv4N4dnac10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODBlendShapeChannelMapping"],[12,2,1,"_CPPv4N4dnac10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODBlendShapeChannelMapping::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODBlendShapeChannelMapping::lod"],[12,1,1,"_CPPv4N4dnac10WriterImpl11setLODCountENSt8uint16_tE","dnac::WriterImpl::setLODCount"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setLODCountENSt8uint16_tE","dnac::WriterImpl::setLODCount::lodCount"],[12,1,1,"_CPPv4N4dnac10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODJointMapping"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODJointMapping::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODJointMapping::lod"],[12,1,1,"_CPPv4N4dnac10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODMeshMapping"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODMeshMapping::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODMeshMapping::lod"],[12,1,1,"_CPPv4N4dnac10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMaximumInfluencePerVertex"],[12,2,1,"_CPPv4N4dnac10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMaximumInfluencePerVertex::maxInfluenceCount"],[12,2,1,"_CPPv4N4dnac10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMaximumInfluencePerVertex::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshBlendShapeChannelMapping"],[12,2,1,"_CPPv4N4dnac10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshBlendShapeChannelMapping::blendShapeChannelIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshBlendShapeChannelMapping::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshBlendShapeChannelMapping::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshIndices::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshIndices::meshIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl11setMeshNameENSt8uint16_tEPKc","dnac::WriterImpl::setMeshName"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setMeshNameENSt8uint16_tEPKc","dnac::WriterImpl::setMeshName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setMeshNameENSt8uint16_tEPKc","dnac::WriterImpl::setMeshName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl11setMetaDataEPKcPKc","dnac::WriterImpl::setMetaData"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setMetaDataEPKcPKc","dnac::WriterImpl::setMetaData::key"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setMetaDataEPKcPKc","dnac::WriterImpl::setMetaData::value"],[12,1,1,"_CPPv4N4dnac10WriterImpl7setNameEPKc","dnac::WriterImpl::setName"],[12,2,1,"_CPPv4N4dnac10WriterImpl7setNameEPKc","dnac::WriterImpl::setName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointRotations"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointRotations::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointRotations::rotations"],[12,1,1,"_CPPv4N4dnac10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointTranslations"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointTranslations::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointTranslations::translations"],[12,1,1,"_CPPv4N4dnac10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDColumnIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDColumnIndices::columnIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDColumnIndices::count"],[12,1,1,"_CPPv4N4dnac10WriterImpl11setPSDCountENSt8uint16_tE","dnac::WriterImpl::setPSDCount"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setPSDCountENSt8uint16_tE","dnac::WriterImpl::setPSDCount::count"],[12,1,1,"_CPPv4N4dnac10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDRowIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDRowIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDRowIndices::rowIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setPSDValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setPSDValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setPSDValues::weights"],[12,1,1,"_CPPv4N4dnac10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setRawControlName"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setRawControlName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setRawControlName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl15setRotationUnitE12RotationUnit","dnac::WriterImpl::setRotationUnit"],[12,2,1,"_CPPv4N4dnac10WriterImpl15setRotationUnitE12RotationUnit","dnac::WriterImpl::setRotationUnit::unit"],[12,1,1,"_CPPv4N4dnac10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setSkinWeightsJointIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setSkinWeightsJointIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setSkinWeightsJointIndices::jointIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setSkinWeightsJointIndices::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setSkinWeightsJointIndices::vertexIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dnac::WriterImpl::setSkinWeightsValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dnac::WriterImpl::setSkinWeightsValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dnac::WriterImpl::setSkinWeightsValues::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dnac::WriterImpl::setSkinWeightsValues::vertexIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dnac::WriterImpl::setSkinWeightsValues::weights"],[12,1,1,"_CPPv4N4dnac10WriterImpl18setTranslationUnitE15TranslationUnit","dnac::WriterImpl::setTranslationUnit"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setTranslationUnitE15TranslationUnit","dnac::WriterImpl::setTranslationUnit::unit"],[12,1,1,"_CPPv4N4dnac10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dnac::WriterImpl::setVertexLayouts"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dnac::WriterImpl::setVertexLayouts::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dnac::WriterImpl::setVertexLayouts::layouts"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dnac::WriterImpl::setVertexLayouts::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dnac::WriterImpl::setVertexNormals"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dnac::WriterImpl::setVertexNormals::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dnac::WriterImpl::setVertexNormals::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dnac::WriterImpl::setVertexNormals::normals"],[12,1,1,"_CPPv4N4dnac10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dnac::WriterImpl::setVertexPositions"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dnac::WriterImpl::setVertexPositions::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dnac::WriterImpl::setVertexPositions::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dnac::WriterImpl::setVertexPositions::positions"],[12,1,1,"_CPPv4N4dnac10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dnac::WriterImpl::setVertexTextureCoordinates"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dnac::WriterImpl::setVertexTextureCoordinates::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dnac::WriterImpl::setVertexTextureCoordinates::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dnac::WriterImpl::setVertexTextureCoordinates::textureCoordinates"]],"dna_viewer.builder":[[2,8,0,"-","builder"],[2,8,0,"-","config"],[2,8,0,"-","joint"],[2,8,0,"-","mesh"],[2,8,0,"-","rig_builder"]],"dna_viewer.builder.builder":[[2,9,1,"","BuildResult"],[2,9,1,"","Builder"]],"dna_viewer.builder.builder.BuildResult":[[2,10,1,"","get_all_meshes"],[2,11,1,"","meshes_per_lod"]],"dna_viewer.builder.builder.Builder":[[2,10,1,"","add_animated_map_attributes_on_root_joint"],[2,10,1,"","add_attribute"],[2,10,1,"","add_ctrl_attributes_on_root_joint"],[2,10,1,"","add_joints"],[2,10,1,"","add_key_frames"],[2,10,1,"","add_mesh_to_display_layer"],[2,10,1,"","attach_mesh_to_lod"],[2,10,1,"","build"],[2,10,1,"","build_meshes"],[2,10,1,"","build_meshes_by_lod"],[2,10,1,"","create_groups"],[2,10,1,"","default_lambert_shader"],[2,10,1,"","get_angle_unit"],[2,10,1,"","get_angle_unit_from_int"],[2,10,1,"","get_display_layers"],[2,10,1,"","get_filtered_meshes"],[2,10,1,"","get_linear_unit"],[2,10,1,"","get_linear_unit_from_int"],[2,10,1,"","get_mesh_indices_filter"],[2,10,1,"","get_mesh_node_fullpath_on_root"],[2,10,1,"","new_scene"],[2,10,1,"","set_filtered_meshes"],[2,10,1,"","set_units"]],"dna_viewer.builder.config":[[2,9,1,"","AngleUnit"],[2,9,1,"","Config"],[2,9,1,"","LinearUnit"],[2,9,1,"","RigConfig"]],"dna_viewer.builder.config.AngleUnit":[[2,11,1,"","degree"],[2,11,1,"","radian"]],"dna_viewer.builder.config.Config":[[2,11,1,"","add_animated_map_attributes_on_root_joint"],[2,11,1,"","add_blend_shapes"],[2,11,1,"","add_ctrl_attributes_on_root_joint"],[2,11,1,"","add_joints"],[2,11,1,"","add_key_frames"],[2,11,1,"","add_mesh_name_to_blend_shape_channel_name"],[2,11,1,"","add_skin_cluster"],[2,11,1,"","animated_map_attribute_multipliers_name"],[2,11,1,"","blend_shape_group_prefix"],[2,11,1,"","blend_shape_name_postfix"],[2,11,1,"","create_display_layers"],[2,11,1,"","facial_root_joint_name"],[2,11,1,"","geometry_group"],[2,10,1,"","get_geometry_group"],[2,10,1,"","get_rig_group"],[2,10,1,"","get_top_level_group"],[2,11,1,"","group_by_lod"],[2,11,1,"","lod_filter"],[2,11,1,"","mesh_filter"],[2,11,1,"","meshes"],[2,11,1,"","skin_cluster_suffix"],[2,11,1,"","top_level_group"]],"dna_viewer.builder.config.LinearUnit":[[2,11,1,"","cm"],[2,11,1,"","m"]],"dna_viewer.builder.config.RigConfig":[[2,11,1,"","aas_method"],[2,11,1,"","aas_parameter"],[2,11,1,"","aas_path"],[2,11,1,"","add_rig_logic"],[2,11,1,"","analog_gui_path"],[2,11,1,"","animated_map_naming"],[2,11,1,"","blend_shape_naming"],[2,11,1,"","central_aim"],[2,11,1,"","central_driver_name"],[2,11,1,"","control_naming"],[2,11,1,"","eye_gui_name"],[2,11,1,"","gui_path"],[2,11,1,"","gui_translate_x"],[2,11,1,"","joint_naming"],[2,11,1,"","le_aim"],[2,11,1,"","left_eye_aim_up_name"],[2,11,1,"","left_eye_driver_name"],[2,11,1,"","left_eye_joint_name"],[2,11,1,"","re_aim"],[2,11,1,"","rig_logic_command"],[2,11,1,"","rig_logic_name"],[2,11,1,"","right_eye_aim_up_name"],[2,11,1,"","right_eye_driver_name"],[2,11,1,"","right_eye_joint_name"]],"dna_viewer.builder.joint":[[2,9,1,"","Joint"]],"dna_viewer.builder.joint.Joint":[[2,10,1,"","add_joint_to_scene"],[2,10,1,"","process"]],"dna_viewer.builder.maya":[[3,8,0,"-","mesh"],[3,8,0,"-","skin_weights"],[3,8,0,"-","util"]],"dna_viewer.builder.maya.mesh":[[3,9,1,"","MayaMesh"],[3,9,1,"","Mesh"]],"dna_viewer.builder.maya.mesh.MayaMesh":[[3,10,1,"","add_blend_shapes"],[3,10,1,"","add_skin_cluster"],[3,10,1,"","add_texture_coordinates"],[3,10,1,"","create_blend_shape"],[3,10,1,"","create_blend_shape_node"],[3,10,1,"","create_blend_shapes"],[3,10,1,"","create_mesh_object"],[3,10,1,"","create_neutral_mesh"],[3,10,1,"","get_texture_data"],[3,10,1,"","get_vertex_positions_from_dna_vertex_positions"],[3,10,1,"","prepare_mesh"],[3,10,1,"","rename_mesh"],[3,10,1,"","set_skin_weights"]],"dna_viewer.builder.maya.mesh.Mesh":[[3,11,1,"","derived_mesh_names"],[3,11,1,"","dna_vertex_layout_positions"],[3,11,1,"","dna_vertex_positions"],[3,11,1,"","polygon_connects"],[3,11,1,"","polygon_faces"]],"dna_viewer.builder.maya.skin_weights":[[3,9,1,"","MayaSkinWeights"],[3,12,1,"","get_file_joint_mappings"],[3,12,1,"","get_skin_weights_data"],[3,12,1,"","get_skin_weights_from_scene"],[3,12,1,"","import_skin_weights"],[3,12,1,"","set_skin_weights_to_scene"]],"dna_viewer.builder.maya.skin_weights.MayaSkinWeights":[[3,10,1,"","get_skin_cluster_influence"],[3,10,1,"","get_skin_weights_for_mesh_name"],[3,11,1,"","joints"],[3,11,1,"","no_of_influences"],[3,11,1,"","skinning_method"],[3,11,1,"","vertices_info"]],"dna_viewer.builder.maya.util":[[3,9,1,"","Maya"]],"dna_viewer.builder.maya.util.Maya":[[3,10,1,"","get_element"],[3,10,1,"","get_transform"],[3,10,1,"","get_translation"],[3,10,1,"","set_translation"]],"dna_viewer.builder.mesh":[[2,9,1,"","Mesh"]],"dna_viewer.builder.mesh.Mesh":[[2,10,1,"","add_blend_shapes"],[2,10,1,"","add_skin_cluster"],[2,10,1,"","build"],[2,10,1,"","create_neutral_mesh"],[2,10,1,"","prepare_joint_ids"],[2,10,1,"","prepare_joints"]],"dna_viewer.builder.rig_builder":[[2,9,1,"","RigBuilder"]],"dna_viewer.builder.rig_builder.RigBuilder":[[2,10,1,"","add_analog_gui"],[2,10,1,"","add_animated_map_attributes"],[2,10,1,"","add_ctrl_attributes"],[2,10,1,"","add_eye_locators"],[2,10,1,"","add_eyes"],[2,10,1,"","add_gui"],[2,10,1,"","add_rig_logic"],[2,10,1,"","import_gui"],[2,10,1,"","position_gui"],[2,10,1,"","run_additional_assemble_script"],[2,10,1,"","source_py_file"]],"dna_viewer.dnalib":[[4,8,0,"-","behavior"],[4,8,0,"-","definition"],[4,8,0,"-","descriptor"],[4,8,0,"-","dnalib"],[4,8,0,"-","geometry"],[4,8,0,"-","layer"]],"dna_viewer.dnalib.behavior":[[4,9,1,"","AnimatedMapsConditionalTable"],[4,9,1,"","Behavior"],[4,9,1,"","BlendShapesData"],[4,9,1,"","ConditionalTable"],[4,9,1,"","JointGroup"],[4,9,1,"","JointGroups"],[4,9,1,"","PSDMatrix"]],"dna_viewer.dnalib.behavior.AnimatedMapsConditionalTable":[[4,11,1,"","conditional_table"],[4,11,1,"","lods"]],"dna_viewer.dnalib.behavior.Behavior":[[4,10,1,"","add_animated_maps_conditional_table"],[4,10,1,"","add_blend_shapes"],[4,10,1,"","add_gui_to_raw"],[4,10,1,"","add_joint_groups"],[4,10,1,"","add_psd"],[4,10,1,"","get_animated_map_cut_values"],[4,10,1,"","get_animated_map_from_values"],[4,10,1,"","get_animated_map_input_indices"],[4,10,1,"","get_animated_map_lods"],[4,10,1,"","get_animated_map_output_indices"],[4,10,1,"","get_animated_map_slope_values"],[4,10,1,"","get_animated_map_to_values"],[4,10,1,"","get_blend_shape_channel_input_indices"],[4,10,1,"","get_blend_shape_channel_lods"],[4,10,1,"","get_blend_shape_channel_output_indices"],[4,10,1,"","get_gui_to_raw_cut_values"],[4,10,1,"","get_gui_to_raw_from_values"],[4,10,1,"","get_gui_to_raw_input_indices"],[4,10,1,"","get_gui_to_raw_output_indices"],[4,10,1,"","get_gui_to_raw_to_values"],[4,10,1,"","get_joint_column_count"],[4,10,1,"","get_joint_group_count"],[4,10,1,"","get_joint_group_input_indices"],[4,10,1,"","get_joint_group_joint_indices"],[4,10,1,"","get_joint_group_logs"],[4,10,1,"","get_joint_group_output_indices"],[4,10,1,"","get_joint_group_values"],[4,10,1,"","get_joint_row_count"],[4,10,1,"","get_joint_variable_attribute_indices"],[4,10,1,"","get_psd_column_indices"],[4,10,1,"","get_psd_count"],[4,10,1,"","get_psd_row_indices"],[4,10,1,"","get_psd_values"],[4,10,1,"","gget_gui_to_raw_slope_values"],[4,10,1,"","is_read"],[4,10,1,"","read"],[4,10,1,"","start_read"]],"dna_viewer.dnalib.behavior.BlendShapesData":[[4,11,1,"","inputs"],[4,11,1,"","lods"],[4,11,1,"","outputs"]],"dna_viewer.dnalib.behavior.ConditionalTable":[[4,11,1,"","cut_values"],[4,11,1,"","from_values"],[4,11,1,"","inputs"],[4,11,1,"","outputs"],[4,11,1,"","slope_values"],[4,11,1,"","to_values"]],"dna_viewer.dnalib.behavior.JointGroup":[[4,11,1,"","inputs"],[4,11,1,"","joints"],[4,11,1,"","lods"],[4,11,1,"","outputs"],[4,11,1,"","values"]],"dna_viewer.dnalib.behavior.JointGroups":[[4,11,1,"","joint_column_count"],[4,11,1,"","joint_groups"],[4,11,1,"","joint_row_count"],[4,11,1,"","joint_variable_attribute_indices"]],"dna_viewer.dnalib.behavior.PSDMatrix":[[4,11,1,"","columns"],[4,11,1,"","count"],[4,11,1,"","rows"],[4,11,1,"","values"]],"dna_viewer.dnalib.definition":[[4,9,1,"","Definition"],[4,9,1,"","GeometryEntity"],[4,9,1,"","Joints"]],"dna_viewer.dnalib.definition.Definition":[[4,10,1,"","add_animated_maps"],[4,10,1,"","add_blend_shape_channels"],[4,10,1,"","add_controls"],[4,10,1,"","add_joints"],[4,10,1,"","add_mesh_blend_shape_channel_mapping"],[4,10,1,"","add_meshes"],[4,10,1,"","add_neutral_joints"],[4,10,1,"","get_animated_map_count"],[4,10,1,"","get_animated_map_indices_for_lod"],[4,10,1,"","get_animated_map_name"],[4,10,1,"","get_animated_map_names"],[4,10,1,"","get_blend_shape_channel_count"],[4,10,1,"","get_blend_shape_channel_indices_for_lod"],[4,10,1,"","get_blend_shape_channel_name"],[4,10,1,"","get_gui_control_count"],[4,10,1,"","get_gui_control_name"],[4,10,1,"","get_joint_count"],[4,10,1,"","get_joint_indices_for_lod"],[4,10,1,"","get_joint_name"],[4,10,1,"","get_joint_parent_index"],[4,10,1,"","get_lod_count"],[4,10,1,"","get_mesh_blend_shape_channel_mapping"],[4,10,1,"","get_mesh_blend_shape_channel_mapping_count"],[4,10,1,"","get_mesh_blend_shape_channel_mapping_for_lod"],[4,10,1,"","get_mesh_count"],[4,10,1,"","get_mesh_indices_for_lod"],[4,10,1,"","get_mesh_name"],[4,10,1,"","get_neutral_joint_rotation"],[4,10,1,"","get_neutral_joint_rotation_xs"],[4,10,1,"","get_neutral_joint_rotation_ys"],[4,10,1,"","get_neutral_joint_rotation_zs"],[4,10,1,"","get_neutral_joint_translation"],[4,10,1,"","get_neutral_joint_translation_xs"],[4,10,1,"","get_neutral_joint_translation_ys"],[4,10,1,"","get_neutral_joint_translation_zs"],[4,10,1,"","get_raw_control_count"],[4,10,1,"","get_raw_control_name"],[4,10,1,"","get_raw_control_names"],[4,10,1,"","get_rotation_unit"],[4,10,1,"","get_translation_unit"],[4,10,1,"","is_read"],[4,10,1,"","read"],[4,10,1,"","start_read"]],"dna_viewer.dnalib.definition.GeometryEntity":[[4,11,1,"","lod_indices"],[4,11,1,"","names"]],"dna_viewer.dnalib.definition.Joints":[[4,11,1,"","parent_index"]],"dna_viewer.dnalib.descriptor":[[4,9,1,"","Descriptor"]],"dna_viewer.dnalib.descriptor.Descriptor":[[4,10,1,"","add_basic_data"],[4,10,1,"","add_db_data"],[4,10,1,"","add_geometry_data"],[4,10,1,"","add_metadata"],[4,10,1,"","is_read"],[4,10,1,"","layer_enabled"],[4,10,1,"","read"],[4,10,1,"","start_read"]],"dna_viewer.dnalib.dnalib":[[4,9,1,"","DNA"]],"dna_viewer.dnalib.dnalib.DNA":[[4,10,1,"","create_reader"],[4,10,1,"","get_all_meshes_grouped_by_lod"],[4,10,1,"","get_all_skin_weights_joint_indices_for_mesh"],[4,10,1,"","get_all_skin_weights_values_for_mesh"],[4,10,1,"","get_blend_shape_target_deltas_with_vertex_id"],[4,10,1,"","get_blend_shapes"],[4,10,1,"","get_faces"],[4,10,1,"","get_layouts_for_mesh_index"],[4,10,1,"","get_lowest_lod_containing_meshes"],[4,10,1,"","get_mesh_id_from_mesh_name"],[4,10,1,"","get_meshes_by_lods"],[4,10,1,"","get_polygon_faces_and_connects"],[4,10,1,"","get_skin_weight_matrix_for_mesh"],[4,10,1,"","get_texture_coordinate_index"],[4,10,1,"","get_vertex_layout_positions_for_mesh_index"],[4,10,1,"","get_vertex_positions_for_mesh_index"],[4,10,1,"","get_vertex_texture_coordinates_for_mesh"],[4,10,1,"","has_blend_shapes"],[4,10,1,"","is_read"],[4,10,1,"","read"],[4,10,1,"","read_all_neutral_joints"]],"dna_viewer.dnalib.geometry":[[4,9,1,"","Geometry"]],"dna_viewer.dnalib.geometry.Geometry":[[4,10,1,"","add_face_vertex_layouts"],[4,10,1,"","add_layouts"],[4,10,1,"","add_mesh"],[4,10,1,"","add_mesh_blend_shapes"],[4,10,1,"","add_mesh_skin_weights"],[4,10,1,"","add_mesh_topology"],[4,10,1,"","add_positions"],[4,10,1,"","add_texture_coordinates"],[4,10,1,"","get_blend_shape_channel_index"],[4,10,1,"","get_blend_shape_target_count"],[4,10,1,"","get_blend_shape_target_delta"],[4,10,1,"","get_blend_shape_target_delta_count"],[4,10,1,"","get_blend_shape_target_vertex_indices"],[4,10,1,"","get_face_count"],[4,10,1,"","get_face_vertex_layout_indices"],[4,10,1,"","get_maximum_influence_per_vertex"],[4,10,1,"","get_skin_weights_joint_indices"],[4,10,1,"","get_skin_weights_values"],[4,10,1,"","get_vertex_layout"],[4,10,1,"","get_vertex_layout_count"],[4,10,1,"","get_vertex_position"],[4,10,1,"","get_vertex_position_count"],[4,10,1,"","get_vertex_texture_coordinate"],[4,10,1,"","get_vertex_texture_coordinate_count"],[4,10,1,"","is_read"],[4,10,1,"","read"],[4,10,1,"","read_target_deltas"],[4,10,1,"","start_read"]],"dna_viewer.dnalib.layer":[[4,9,1,"","Layer"]],"dna_viewer.dnalib.layer.Layer":[[4,11,1,"","all"],[4,11,1,"","behavior"],[4,11,1,"","definition"],[4,11,1,"","descriptor"],[4,11,1,"","geometry"]],"dna_viewer.ui":[[5,8,0,"-","app"],[5,8,0,"-","widgets"]],"dna_viewer.ui.app":[[5,9,1,"","DnaViewerWindow"],[5,9,1,"","MeshTreeList"],[5,12,1,"","show"]],"dna_viewer.ui.app.DnaViewerWindow":[[5,10,1,"","activate_window"],[5,10,1,"","add_animated_map_attributes_on_root_joint"],[5,10,1,"","add_blend_shapes"],[5,10,1,"","add_ctrl_attributes_on_root_joint"],[5,10,1,"","add_joints"],[5,10,1,"","add_key_frames"],[5,10,1,"","add_mesh_name_to_blend_shape_channel_name"],[5,10,1,"","add_rig_logic"],[5,10,1,"","add_skin_cluster"],[5,11,1,"","animated_map_attributes_on_root_joint_cb"],[5,11,1,"","blend_shapes_cb"],[5,10,1,"","create_aas_selector"],[5,10,1,"","create_analog_gui_selector"],[5,10,1,"","create_body"],[5,10,1,"","create_build_options"],[5,10,1,"","create_checkbox"],[5,10,1,"","create_dna_chooser"],[5,10,1,"","create_dna_selector"],[5,10,1,"","create_extra_build_options"],[5,10,1,"","create_file_chooser"],[5,10,1,"","create_gui_selector"],[5,10,1,"","create_header"],[5,10,1,"","create_help_btn"],[5,10,1,"","create_load_dna_button"],[5,10,1,"","create_main_widget"],[5,10,1,"","create_mesh_selector"],[5,10,1,"","create_process_btn"],[5,10,1,"","create_progress_bar"],[5,10,1,"","create_ui"],[5,11,1,"","ctrl_attributes_on_root_joint_cb"],[5,11,1,"","dna"],[5,10,1,"","enable_additional_build_options"],[5,10,1,"","get_lod_indices_names"],[5,10,1,"","get_mesh_names"],[5,10,1,"","is_checked"],[5,10,1,"","is_enabled_and_checked"],[5,11,1,"","joints_cb"],[5,11,1,"","key_frames_cb"],[5,10,1,"","load_css"],[5,11,1,"","load_dna_btn"],[5,11,1,"","main_widget"],[5,10,1,"","maya_main_window"],[5,11,1,"","mesh_name_to_blend_shape_channel_name_cb"],[5,11,1,"","mesh_tree_list"],[5,10,1,"","on_dna_changed"],[5,10,1,"","on_dna_selected"],[5,10,1,"","on_generic_changed"],[5,10,1,"","on_help"],[5,10,1,"","on_joints_changed"],[5,10,1,"","on_load_dna_clicked"],[5,10,1,"","process"],[5,11,1,"","process_btn"],[5,11,1,"","progress_bar"],[5,11,1,"","rig_logic_cb"],[5,11,1,"","select_aas_path"],[5,11,1,"","select_analog_gui_path"],[5,11,1,"","select_dna_path"],[5,11,1,"","select_gui_path"],[5,10,1,"","set_progress"],[5,10,1,"","set_riglogic_cb_enabled"],[5,10,1,"","set_size"],[5,10,1,"","setup_window"],[5,10,1,"","show_message_dialog"],[5,10,1,"","show_window"],[5,11,1,"","skin_cb"],[5,11,1,"","staticMetaObject"]],"dna_viewer.ui.app.MeshTreeList":[[5,10,1,"","create_mesh_tree"],[5,10,1,"","deselect_all"],[5,10,1,"","fill_mesh_list"],[5,10,1,"","get_selected_meshes"],[5,10,1,"","iterate_over_items"],[5,10,1,"","select_all"],[5,11,1,"","staticMetaObject"],[5,10,1,"","tree_item_changed"]],"dna_viewer.ui.widgets":[[5,9,1,"","FileChooser"],[5,9,1,"","QHLine"],[5,9,1,"","QLine"]],"dna_viewer.ui.widgets.FileChooser":[[5,10,1,"","get_file_path"],[5,10,1,"","open_dialog"],[5,11,1,"","staticMetaObject"]],"dna_viewer.ui.widgets.QHLine":[[5,11,1,"","staticMetaObject"]],"dna_viewer.ui.widgets.QLine":[[5,11,1,"","staticMetaObject"]]},objnames:{"0":["cpp","class","C++ class"],"1":["cpp","function","C++ function"],"10":["py","method","Python method"],"11":["py","attribute","Python attribute"],"12":["py","function","Python function"],"2":["cpp","functionParam","C++ function parameter"],"3":["cpp","member","C++ member"],"4":["cpp","type","C++ type"],"5":["cpp","templateParam","C++ template parameter"],"6":["cpp","enum","C++ enum"],"7":["cpp","enumerator","C++ enumerator"],"8":["py","module","Python module"],"9":["py","class","Python class"]},objtypes:{"0":"cpp:class","1":"cpp:function","10":"py:method","11":"py:attribute","12":"py:function","2":"cpp:functionParam","3":"cpp:member","4":"cpp:type","5":"cpp:templateParam","6":"cpp:enum","7":"cpp:enumerator","8":"py:module","9":"py:class"},terms:{"0":[0,2,4,6,12,14,16,17],"0003f":12,"0f":14,"1":[0,2,4,6,12,14],"10":2,"12":0,"14":14,"2":[0,3,4,12,14,16,17],"200":0,"201":0,"202":0,"2022":[14,16,17,20],"2023":[14,16,17,20],"2d":0,"3":[0,4,12,14,16,17],"3101":12,"3102":12,"3103":12,"3104":12,"3201":12,"3s":0,"3u":12,"4":[0,4,12,14,16,17],"5":[0,4,12],"6":[0,12,20],"64":[14,16,17],"7":[14,16,17],"9":[0,14,16,17],"abstract":[0,12],"byte":12,"case":[0,6,16,17],"char":[0,12],"class":[0,2,3,4,5,6,7,10,12],"const":[0,12],"default":[0,3,6,7,12],"do":12,"enum":[0,2,4,12],"export":[10,16,17],"float":[0,2,3,4,12],"function":[0,3,9,10,12,14,16,17],"import":[2,3,7,8,16,17],"int":[0,2,3,4,5],"long":6,"new":[3,12,13,14,16,17,20],"null":0,"public":[0,12],"return":[0,2,3,4,5,6,8,16,17],"static":[0,3,5,12],"super":12,"switch":[16,17],"throw":5,"true":[2,6,7],"try":15,"void":[0,12],"while":[0,14],A:[0,2,3,4,5,6,7,12,13],And:14,As:0,By:12,For:[13,14,16,17],If:[0,2,4,8,9,12,14,15,16,17],In:[6,8,15,16,17,20],It:[0,6,10,14],The:[0,2,3,4,5,6,7,8,10,12,13,16,17,20],There:[9,10,14],These:[0,6,7,14,16,17],To:[13,14,16,17,20],Will:4,With:[16,17],__file__:[6,7,8,16,17],_blendshap:2,_lodx_mesh:12,_py3dna:20,aas_method:[2,7],aas_paramet:2,aas_path:[2,7],abl:[8,15],about:[0,3,4,6,16,17],abov:[0,6,7],absolut:[0,6,7,8,12,16,17],abspath:[6,7,8,16,17],access:[0,4,10],accessmod:14,accessmode_read:[16,17],accessor:0,accommod:[16,17,20],accord:2,activate_window:5,actual:0,ad:[2,3,5,6,7,8,10,12,16,17,20],ada:[6,7,16,17,20],add:[0,2,3,5,8,12,16,17],add_analog_gui:2,add_animated_map:4,add_animated_map_attribut:2,add_animated_map_attributes_on_root_joint:[2,5,6],add_animated_maps_conditional_t:4,add_attribut:2,add_basic_data:4,add_blend_shap:[2,3,4,5,6],add_blend_shape_channel:4,add_control:4,add_ctrl_attribut:2,add_ctrl_attributes_on_root_joint:[2,5,6,7],add_db_data:4,add_ey:2,add_eye_loc:2,add_face_vertex_layout:4,add_geometry_data:4,add_gui:2,add_gui_to_raw:4,add_joint:[2,4,5,6],add_joint_group:4,add_joint_to_scen:2,add_key_fram:[2,5,7],add_layout:4,add_mesh:4,add_mesh_blend_shap:4,add_mesh_blend_shape_channel_map:4,add_mesh_name_to_blend_shape_channel_nam:[2,3,5],add_mesh_skin_weight:4,add_mesh_to_display_lay:2,add_mesh_topolog:4,add_metadata:4,add_neutral_joint:4,add_posit:4,add_psd:4,add_rig_log:[2,5],add_skin_clust:[2,3,5,6],add_texture_coordin:[3,4],addindic:[0,12],addit:[0,2,5,7,16,17],addition:[2,20],additional_assemble_script:[7,16,17,20],address:[0,16,17],advanc:0,affect:0,after:[2,5],ag:[0,4,12],again:15,against:[16,17],aim:2,align:2,aligneddynarrai:12,all:[0,2,3,4,5,6,8,9,10,12,13,14,15,16,17,20],alloc:0,allow:[9,10,16,17],allowedanimatedmapindic:[0,12],allowedblendshapeindic:[0,12],allowedjointindic:[0,12],allowedmeshindic:[0,12],along:14,alpha:12,alreadi:2,also:[9,14,20],an:[0,2,3,4,5,6,8,12,14,16,17],analog:[2,5,7],analog_gui:[7,20],analog_gui_path:[2,7],angl:[2,12],angleunit:2,ani:[0,2,8,16,17],anim:[0,2,4,5,6,12,13,16,17],animated_map:4,animated_map_attribute_multipliers_nam:2,animated_map_attributes_on_root_joint_cb:5,animated_map_nam:2,animatedmap:12,animatedmapcount:[0,12],animatedmapfilt:[0,12],animatedmapindex:12,animatedmapindex_:12,animatedmapindic:[0,12],animatedmapindices_:12,animatedmaplodindic:12,animatedmapnam:12,animatedmapsconditionalt:4,animatedmapsmark:12,animatedmapsmarkertarget:12,animationonli:[0,12],anymor:9,api:[0,7,8,10,16,17],app:[1,11,18],append:[8,16,17],appli:[0,2,9,12],applyto:[0,12],ar:[0,2,3,4,5,6,7,10,12,13,14,15,16,17,20],archetyp:[0,4,12],architectur:[14,16,17],archiv:[0,12],archiveoffset:12,arg:0,argument:[0,2,13],around:[12,13],arrai:[0,12],arrayview:[0,12],artifici:0,assembl:[2,5,7,16,17,20],asset:2,assign:[0,2,12],associ:0,associatelodwithindic:[0,12],assum:12,attach:2,attach_mesh_to_lod:2,attribut:[0,2,3,4,5,6,7,12,13,15],attrnam:2,auto:14,autodesk:20,automat:9,avail:[0,12,13,20],avoid:2,axi:2,b:[0,12],bar:5,barycentricpositionindicespair:12,base:[0,2,3,4,5,12],basearch:0,baseimpl:[0,12],basic:20,bbox:12,becom:0,been:[6,20],befor:[6,7,15,16,17],begin:[8,12],behavior:[1,11,12,18],behaviorread:0,behaviorwrit:0,being:[0,2,4],belong:0,below:[8,14],better:[16,17,20],between:0,bifrost:[16,17],binari:[4,14,16,17,20],binarystreamread:[0,4,14,16,17],binarystreamwrit:[0,14],bind:14,bit:[14,16,17],blend:[0,2,3,4,5,12,13,14,16,17],blend_shap:4,blend_shape_channel:[3,4],blend_shape_group_prefix:[2,3],blend_shape_nam:2,blend_shape_name_postfix:[2,3],blend_shape_target_index:[3,4],blend_shapes_cb:5,blendshap:[4,6,12,14,16,17],blendshapechannel:12,blendshapechannelextentread:0,blendshapechannelindex:[0,12],blendshapechannelindic:[0,12],blendshapechannelnam:12,blendshapechannelsmark:12,blendshapechannelsmarkertarget:12,blendshapecount:[0,12],blendshapefilt:[0,12],blendshapegroup_:2,blendshapeindex:12,blendshapeindex_:12,blendshapeindic:12,blendshapeindices_:12,blendshapelod:12,blendshapesdata:4,blendshapetarget:12,blendshapetargetindex:[0,12],blendshapetargetindex_:12,blue:10,bodi:[5,16,17],bool:[0,2,3,4,5,6,7,12],both:[0,14,16,17],bound:0,boundediostream:0,boundingbox:12,box:[5,15],bridg:[16,17],brown:10,bsdelta:12,bsvertexindic:12,build:[0,2,3,5,10],build_mesh:[2,10],build_meshes_by_lod:2,build_rig:10,builder:[1,10,11,18],buildresult:2,built:[2,20],bundl:[15,16,17],button:5,button_text:5,c:[0,12,13,16,17,20],c_str:0,cach:[0,12],calcul:[0,12],calculatemeshlowerlodscommand:[12,13],calibr:[14,20],calibration_clean:0,call:[0,2,5,7,12],callabl:5,can:[0,2,4,5,6,9,10,13,14,15,16,17],cannot:[0,15],caption:5,caus:0,cd:14,central:2,central_aim:2,central_driver_nam:2,chain:14,chang:[3,5,10,12,14,16,17,20],channel:[0,2,3,4,5,12],charact:[0,2,4,5,7,16,17],character_dna:[16,17],check:[5,12,14,16,17],check_box:5,checkbox:5,checkstat:5,child:0,chooser:5,chosen:5,clampto:[0,12],cleanupindic:[0,12],clear:[12,13,14,16,17],clearanimatedmapindic:[0,12],clearanimatedmapnam:[0,12],clearblendshapechannelindic:[0,12],clearblendshapechannelnam:[0,12],clearblendshapescommand:[12,13],clearblendshapetarget:[0,12],clearfacevertexlayoutindic:[0,12],clearguicontrolnam:[0,12],clearindic:[0,12],clearjointgroup:[0,12],clearjointindic:[0,12],clearjointnam:[0,12],clearlodanimatedmapmap:[0,12],clearlodblendshapechannelmap:[0,12],clearlodjointmap:[0,12],clearlodmeshmap:[0,12],clearmesh:[0,12],clearmeshblendshapechannelmap:[0,12],clearmeshindic:[0,12],clearmeshnam:[0,12],clearmetadata:[0,12],clearrawcontrolnam:[0,12],clearskinweight:[0,12],click:[5,9,15,16,17],clone:15,cluster:[2,3,6],cm:2,cmake:14,cmakemodulesextra:14,cmd:14,code:[8,14,16,17,20],colcount:12,collabor:[0,12],collect:0,column:[0,4,12],columncount:[0,12],columnindic:[0,12],combin:[0,6],command:[2,12,14,16,17],command_:12,commandimplbas:12,commandsequ:[12,13],commandtyp:12,common:14,compil:[8,16,17],complex:[0,12],compon:20,comput:0,computeblendshapetargetdelta:12,computevertexposit:12,concern:3,condit:[0,12],condition_:12,conditional_t:4,conditionalcommand:12,conditionalt:4,conditiontyp:12,config:[1,3,7,10,11,12,18],configur:[0,2,3,5,6,7,10,12,13,16,17],connect:[5,16,17,20],consecut:0,constarrayview:[0,12,14],constexpr:12,constraint:4,constructor:13,contain:[0,2,3,4,5,6,10,12,13,14,15,16,17,20],context:0,contin:2,control:[0,2,4,5,6,12,20],control_nam:2,controlsmark:12,controlsmarkertarget:12,conveni:0,coordin:[0,3,4,12],coordinate_system:4,coordinatesystem:[0,12],copi:[0,20],correctli:15,correspond:[5,12],count:[0,4,5,12],creat:[2,3,4,5,9,10,12,14,16,17,20],create_aas_selector:5,create_analog_gui_selector:5,create_blend_shap:3,create_blend_shape_nod:3,create_bodi:5,create_build_opt:5,create_character_nod:2,create_checkbox:5,create_display_lay:2,create_dna_choos:5,create_dna_selector:5,create_extra_build_opt:5,create_file_choos:5,create_group:2,create_gui_selector:5,create_head:5,create_help_btn:5,create_load_dna_button:5,create_main_widget:5,create_mesh_object:3,create_mesh_selector:5,create_mesh_tre:5,create_neutral_mesh:[2,3],create_process_btn:5,create_progress_bar:5,create_read:4,create_ui:5,createembeddednoderl4:2,creation:[3,5],creator:[16,17],critic:0,ctrl_attributes_on_root_joint_cb:5,ctrl_c_ey:2,current:[12,13],curv:6,custom:[5,16,17],cut:4,cut_valu:4,cutvalu:[0,12],d00:12,d01:12,d11:12,d:[0,12],dag:[3,15],dag_modifi:3,data:[0,2,3,4,6,7,12,13,14,16,17],data_dir:[16,17],databas:0,datalay:[0,12],datalayer_al:[16,17],datalayerbitmask:0,dataorempti:0,db:4,db_complex:4,db_max_lod:4,db_name:4,dbname:12,decid:0,def:[16,17],default_lambert_shad:2,defaultalpha:12,defin:0,definit:[0,1,5,11,12,16,17,18,20],definitionmodel:4,definitionread:0,definitionwrit:0,deform:[4,20],degre:[2,12],degrees_:12,delet:[0,12],deletejointgroup:[0,12],deletemesh:[0,12],delta:[0,3,4,12,13,16,17],delta_index:4,deltaindex:[0,12],deltas_:12,deltasmaskscountmismatch:12,deltasvertexindicescountmismatch:12,demo:[16,17],denom:12,denormalizeddata:[0,12],denot:0,densifi:12,depend:[0,8,14],deriv:3,derived_mesh_nam:3,describ:0,descript:13,descriptor:[1,11,12,18],descriptormodel:4,descriptorread:0,descriptorwrit:0,deselect:[5,15],deselect_al:5,dest:[0,12],destin:12,destroi:12,detail:[0,12,13],determin:2,dhi:[16,17],diagram:[0,12],dialog:5,dialog_capt:5,dialog_filt:5,dict:[2,4],differ:[0,14,16,17],dir:[16,17],dir_selector:5,directori:[0,14,16,17],dirnam:[6,7,8,16,17],disabl:6,discardlod:[0,12],displai:2,distinct:[0,16,17],dna:[2,3,4,5,6,7,10,12,14,20],dna_:[16,17],dna_ada:[6,7,8],dna_fac:4,dna_fil:[6,7,16,17],dna_input:5,dna_path:[4,8],dna_path_ada:[6,7,8],dna_path_taro:[6,8],dna_taro:8,dna_vertex_layout_posit:[3,4],dna_vertex_posit:3,dna_view:[1,6,7,8,10,11,18,20],dna_viewer_:[16,17],dnac:[0,12,14],dnacalib:[0,13],dnacalib_:[16,17],dnacalibdnaread:[0,12,13,14],dnacalibdnareaderimpl:12,dnacapi:12,dnalib:[1,2,3,10,11,18],dnaread:14,dnaview:18,dnaviewerwindow:5,doc:[0,20],document:[13,16,17,20],doe:12,done:[8,12,13],download:[15,16,17],doxygen:0,doxygenclass:0,drive:0,driver:2,dure:[0,9,20],dynarrai:[0,12],e:[0,12,14,16,17],each:[0,4,12,13],easi:7,easier:[16,17],easili:10,edit:14,editor:15,either:12,element:[0,3,5,6],elif:[8,16,17],els:[8,16,17],embed:[16,17],embeddedrl4:20,empti:0,enabl:[5,9],enable_additional_build_opt:5,enable_if:[0,12],end:12,endian:0,engin:6,enough:12,entir:0,entri:[0,5],enumer:[0,4,12],environ:[6,7],eof:12,equal:[12,13],error:[14,16,17],es:12,etc:10,evalu:0,everi:[6,10],exact:[10,14],exampl:[0,8],except:[16,17],execut:[6,7,14],exist:[0,14,16,17],expect:[0,9,12],expectedvalu:12,experi:[15,16,17],explain:10,explan:[8,16,17],explicit:[0,12],express:[0,16,17,20],extendablebinaryinputarch:0,extra:5,extract:[14,16,17],ey:2,eye_gui_nam:2,f:[0,6,7,8,16,17],face:[0,4,12],face_index:4,facecount:12,facegett:12,faceindex:[0,12],facial:2,facial_c_facialroot:[2,16,17],facial_l_ey:2,facial_r_ey:2,facial_root_joint_nam:2,factor:[12,13],factori:[2,3,4],fals:[2,5,6],familiar:[16,17],faq:[16,17],fbx:[10,16,17],featur:6,few:[14,16,17],field:5,file:[0,2,4,5,6,7,8,10,14,20],file_joint_map:3,filechoos:5,filedialog:5,filestream:[14,16,17],fill:[3,5],fill_mesh_list:5,filter:[0,2,5,12,13],filteredinputarch:0,filterindic:[0,12],find:[0,2],findindicesofmeshlowerlod:12,fine:[16,17],finish:2,first:[0,20],flag:[2,3,5,6,7],flatten:2,flow:10,fn_mesh:3,folder:[15,16,17],follow:[0,6,8,9,10,12,13,14,15,16,17],foper:12,format:[14,16,17],forward:[16,17],found:[0,13,14,16,17],fr:8,frame:[2,5],friend:0,frm_wmmultipli:2,from:[0,2,3,4,5,6,7,8,12,13,14,15,16,17],from_valu:4,fromvalu:[0,12],full:2,furthermor:20,futur:4,fvec2:12,fvec3:12,fweightgett:12,g:[0,12,14,16,17],game:[16,17],gender:[0,4,12],gener:[9,10,12,14,16,17],generation_:12,geometri:[0,1,2,11,12,18],geometry_group:2,geometryent:4,geometryread:0,geometrywrit:0,get:[0,2,3,4,5,9,10,12,14,16,17,20],get_all_mesh:2,get_all_meshes_grouped_by_lod:4,get_all_skin_weights_joint_indices_for_mesh:4,get_all_skin_weights_values_for_mesh:4,get_angle_unit:2,get_angle_unit_from_int:2,get_animated_map_count:4,get_animated_map_cut_valu:4,get_animated_map_from_valu:4,get_animated_map_indices_for_lod:4,get_animated_map_input_indic:4,get_animated_map_lod:4,get_animated_map_nam:4,get_animated_map_output_indic:4,get_animated_map_slope_valu:4,get_animated_map_to_valu:4,get_blend_shap:4,get_blend_shape_channel_count:4,get_blend_shape_channel_index:4,get_blend_shape_channel_indices_for_lod:4,get_blend_shape_channel_input_indic:4,get_blend_shape_channel_lod:4,get_blend_shape_channel_nam:4,get_blend_shape_channel_output_indic:4,get_blend_shape_target_count:4,get_blend_shape_target_delta:4,get_blend_shape_target_delta_count:4,get_blend_shape_target_deltas_with_vertex_id:4,get_blend_shape_target_vertex_indic:4,get_display_lay:2,get_el:3,get_fac:4,get_face_count:4,get_face_vertex_layout_indic:4,get_file_joint_map:3,get_file_path:5,get_filtered_mesh:2,get_geometry_group:2,get_gui_control_count:4,get_gui_control_nam:4,get_gui_to_raw_cut_valu:4,get_gui_to_raw_from_valu:4,get_gui_to_raw_input_indic:4,get_gui_to_raw_output_indic:4,get_gui_to_raw_to_valu:4,get_joint_column_count:4,get_joint_count:4,get_joint_group_count:4,get_joint_group_input_indic:4,get_joint_group_joint_indic:4,get_joint_group_log:4,get_joint_group_output_indic:4,get_joint_group_valu:4,get_joint_indices_for_lod:4,get_joint_nam:4,get_joint_parent_index:4,get_joint_row_count:4,get_joint_variable_attribute_indic:4,get_layouts_for_mesh_index:4,get_linear_unit:2,get_linear_unit_from_int:2,get_lod_count:4,get_lod_indices_nam:5,get_lowest_lod_containing_mesh:4,get_maximum_influence_per_vertex:4,get_mesh_blend_shape_channel_map:4,get_mesh_blend_shape_channel_mapping_count:4,get_mesh_blend_shape_channel_mapping_for_lod:4,get_mesh_count:4,get_mesh_id_from_mesh_nam:4,get_mesh_indices_filt:2,get_mesh_indices_for_lod:4,get_mesh_nam:[4,5],get_mesh_node_fullpath_on_root:2,get_meshes_by_lod:4,get_neutral_joint_rot:4,get_neutral_joint_rotation_i:4,get_neutral_joint_rotation_x:4,get_neutral_joint_rotation_z:4,get_neutral_joint_transl:4,get_neutral_joint_translation_i:4,get_neutral_joint_translation_x:4,get_neutral_joint_translation_z:4,get_polygon_faces_and_connect:4,get_psd_column_indic:4,get_psd_count:4,get_psd_row_indic:4,get_psd_valu:4,get_raw_control_count:4,get_raw_control_nam:4,get_rig_group:2,get_rotation_unit:4,get_selected_mesh:5,get_skin_cluster_influ:3,get_skin_weight_matrix_for_mesh:4,get_skin_weights_data:3,get_skin_weights_for_mesh_nam:3,get_skin_weights_from_scen:3,get_skin_weights_joint_indic:4,get_skin_weights_valu:4,get_texture_coordinate_index:4,get_texture_data:3,get_top_level_group:2,get_transform:3,get_transl:3,get_translation_unit:4,get_vertex_layout:4,get_vertex_layout_count:4,get_vertex_layout_positions_for_mesh_index:4,get_vertex_posit:4,get_vertex_position_count:4,get_vertex_positions_for_mesh_index:4,get_vertex_positions_from_dna_vertex_posit:3,get_vertex_texture_coordin:4,get_vertex_texture_coordinate_count:4,get_vertex_texture_coordinates_for_mesh:4,getag:[0,12],getanimatedmapcount:[0,12],getanimatedmapcutvalu:[0,12],getanimatedmapfromvalu:[0,12],getanimatedmapindexlistcount:[0,12],getanimatedmapindicesforlod:[0,12],getanimatedmapinputindic:[0,12],getanimatedmaplod:[0,12],getanimatedmapnam:[0,12],getanimatedmapoutputindic:[0,12],getanimatedmapslopevalu:[0,12],getanimatedmaptovalu:[0,12],getarchetyp:[0,12],getbarycentr:12,getbarycentriccoord:12,getblendshapechannelcount:[0,12],getblendshapechannelindex:[0,12],getblendshapechannelindexlistcount:[0,12],getblendshapechannelindicesforlod:[0,12],getblendshapechannelinputindic:[0,12],getblendshapechannellod:[0,12],getblendshapechannelnam:[0,12],getblendshapechanneloutputindic:[0,12],getblendshapetargetcount:[0,12],getblendshapetargetdelta:[0,12],getblendshapetargetdeltacount:[0,12],getblendshapetargetdeltai:[0,12],getblendshapetargetdeltax:[0,12],getblendshapetargetdeltaz:[0,12],getblendshapetargetvertexindic:[0,12],getboundingbox:12,getcombineddistinctindic:[0,12],getcoordinatesystem:[0,12],getdbcomplex:[0,12],getdbmaxlod:[0,12],getdbnam:[0,12,16,17],getfacecount:[0,12],getfacevertexlayoutindic:[0,12],getgend:[0,12],getguicontrolcount:[0,12],getguicontrolnam:[0,12],getguitorawcutvalu:[0,12],getguitorawfromvalu:[0,12],getguitorawinputindic:[0,12],getguitorawoutputindic:[0,12],getguitorawslopevalu:[0,12],getguitorawtovalu:[0,12],getindexlistcount:[0,12],getindic:[0,12],getjointcolumncount:[0,12],getjointcount:[0,12,14],getjointgroupcount:[0,12],getjointgroupinputindic:[0,12],getjointgroupjointindic:[0,12],getjointgrouplod:[0,12],getjointgroupoutputindic:[0,12],getjointgroupvalu:[0,12],getjointindexlistcount:[0,12],getjointindicesforlod:[0,12],getjointnam:[0,12],getjointparentindex:[0,12],getjointrowcount:[0,12],getjointvariableattributeindic:[0,12],getlodcount:[0,12],getmax:12,getmaximuminfluencepervertex:[0,12],getmaxlod:[0,12],getmemoryresourc:[0,12],getmeshblendshapechannelmap:[0,12],getmeshblendshapechannelmappingcount:[0,12],getmeshblendshapechannelmappingindicesforlod:[0,12],getmeshcount:[0,12],getmeshindexlistcount:[0,12],getmeshindicesforlod:[0,12],getmeshnam:[0,12],getmetadatacount:[0,12],getmetadatakei:[0,12],getmetadatavalu:[0,12],getmin:12,getminlod:[0,12],getnam:[0,12],getnamebyindex:12,getnamecount:12,getneutraljointrot:[0,12],getneutraljointrotationi:[0,12],getneutraljointrotationx:[0,12],getneutraljointrotationz:[0,12],getneutraljointtransl:[0,12],getneutraljointtranslationi:[0,12],getneutraljointtranslationx:[0,12],getneutraljointtranslationz:[0,12],getpsdcolumnindic:[0,12],getpsdcount:[0,12],getpsdrowindic:[0,12],getpsdvalu:[0,12],getrawcontrolcount:[0,12],getrawcontrolnam:[0,12],getrotationtransformationmatrix:12,getrotationunit:[0,12],getskinweightscount:[0,12],getskinweightsjointindic:[0,12],getskinweightsvalu:[0,12],getter:0,getterfunc:12,gettranslationunit:[0,12],gettriangl:12,getvertexlayout:[0,12],getvertexlayoutcount:[0,12],getvertexlayoutnormalindic:[0,12],getvertexlayoutpositionindic:[0,12],getvertexlayouttexturecoordinateindic:[0,12],getvertexnorm:[0,12],getvertexnormalcount:[0,12],getvertexnormali:[0,12],getvertexnormalx:[0,12],getvertexnormalz:[0,12],getvertexposit:[0,12],getvertexpositioncount:[0,12],getvertexpositioni:[0,12],getvertexpositionx:[0,12],getvertexpositionz:[0,12],getvertextexturecoordin:[0,12],getvertextexturecoordinatecount:[0,12],getvertextexturecoordinateu:[0,12],getvertextexturecoordinatev:[0,12],getweight:12,gget_gui_to_raw_slope_valu:4,git:[15,16,17],github:[16,17],given:[0,2,3,5,6,7,12,13],go:[2,4,8,15],got:[0,6,12],gradient:0,greater:0,greatest:4,green:10,group:[0,2,3,4,5,16,17],group_by_lod:2,group_nam:2,grp_c_eyesaim:2,grp_l_eyeaim:2,grp_r_eyeaim:2,gui:[0,2,4,5,7,16,17,20],gui_control_nam:4,gui_path:[2,7],gui_to_raw:4,gui_translate_x:2,guicontrolnam:12,guid:[16,17],h:0,ha:[0,12,16,17,20],handl:14,happen:12,has_blend_shap:4,hasimpacton:[0,12],have:[0,2,6,12,16,17,20],head:[2,6,16,17],header:5,help:[5,16,17],here:[0,8,10,14,16,17,20],hierarchi:[0,2],highest:[0,12],hint:5,hold:[0,2,3,4,12],holder:2,home:[16,17],horizont:5,how:[16,17],howev:[16,17],hu:0,human:[14,16,17],i:0,id:[0,2],ideal:20,ident:[16,17],identifi:4,ie:4,impl:12,implement:[0,12,13],implementor:0,implicitli:0,import_gui:2,import_skin_weight:3,improv:20,includ:[13,15],increas:[16,17,20],independ:20,index:[0,2,3,4,12,13,16,17],index_:12,indic:[0,2,3,4,5,12],indices_nam:5,individu:0,infer:0,influenc:[0,3,12],inform:[6,16,17],inherit:[0,12],initi:[0,3,12,16,17],inlin:[0,12],inoutstream:14,input:[0,4,5,6,12],inputindic:[0,12],insert:[16,17],inspect:[16,17],instal:[15,16,17,20],instanc:[0,3,4,5,12,14],instead:8,integr:[16,17],intercept:0,interchang:0,interfac:[0,3,14],intern:[0,2,16,17],interpol:12,interpret:[16,17],introduc:[16,17,20],invalid:0,invaliddataerror:0,involv:0,is_check:5,is_enabled_and_check:5,is_read:4,is_rvalue_refer:0,is_sam:12,isok:[14,16,17],issu:15,item:[0,5],iter:12,iterate_over_item:5,iterator_trait:12,its:[0,2,5,12,13,14,16,17],itself:0,join:8,joint:[0,1,3,4,5,6,7,11,12,13,14,16,17,18,20],joint_column_count:4,joint_flag:2,joint_group:4,joint_group_index:4,joint_id:[2,3],joint_nam:[2,3],joint_row_count:4,joint_variable_attribute_indic:4,jointcount:[0,12],jointfilt:[0,12],jointgroup:[4,12],jointgroupindex:[0,12],jointhierarchi:12,jointindex:12,jointindex_:12,jointindic:[0,12],jointindices_:12,jointmodel:2,jointnam:12,joints_cb:5,jointsmark:12,jointsmarkertarget:12,jointvariableattributeindic:12,jsonstreamread:0,jsonstreamwrit:0,just:[0,2,6,7,16,17],keep:12,kei:[0,2,5,12],key_frames_cb:5,keyfram:7,known:0,label:5,label_text:5,larg:[16,17],last:12,layer:[0,1,2,8,11,12,18],layer_:0,layer_en:4,layerbitmask:0,layout:[0,3,4,5,12],layout_id:4,layout_index:4,layoutindex:[0,12],layoutindic:[0,12],ld_library_path:[16,17],le_aim:2,lead:6,least:14,left:2,left_eye_aim_up_nam:2,left_eye_driver_nam:2,left_eye_joint_nam:2,legend:10,length:3,less:[0,12],level:[0,2,12],lf:[15,16,17],lib:[8,14,16,17],lib_dir:[8,16,17],libdnacalib:20,libembeddedrl4:20,librari:[14,16,17,20],licenc:[16,17],like:20,limit:0,line:[5,14,16,17],linear:2,linearunit:2,link:20,linux:[8,14,16,17],list:[0,2,3,4,5,8,13],ln:20,load:[0,2,4,5,9,12,16,17],load_css:5,load_dna_btn:5,load_dna_read:[16,17],loc_c_eyedriv:2,loc_l_eyeaimup:2,loc_l_eyedriv:2,loc_r_eyeaimup:2,loc_r_eyedriv:2,local:0,locat:[2,8,9,16,17],lod:[0,2,4,5,6,10,12,13,14,16,17],lod_count:[4,5],lod_filt:[2,6],lod_indic:4,lodanimatedmapmap:12,lodblendshapemap:12,lodconstraint:[0,12],lodcount:[0,12],lodindic:12,lodjointmap:12,lodmap:[0,12],lodmeshmap:12,lods_:[0,12],logic:[2,5,6],long_nam:2,look:20,lower:[0,12,13],lowest:[0,12],m:2,ma:[7,16,17],magnitud:12,mai:0,main:[5,15],main_widget:5,main_window:5,make:[16,17],makescop:14,manipul:[3,20],manner:9,manual:[15,16,17],map:[0,2,3,4,5,6,12,13,16,17],mapindic:[0,12],mapper:[0,12],marker:12,markertarget:12,mash:2,mask:12,masks_:12,mat4:12,match:[0,12],matrix:[0,4,12],max:12,maximum:0,maximuminfluencepervertex:12,maxinfluencecount:[0,12],maxlod:[0,12],maxlod_:0,maxremappedindex:[0,12],maya2022:[16,17,20],maya2023:[16,17],maya:[1,2,6,7,8,11,14,16,17,18,20],maya_main_window:5,maya_module_path:[16,17],maya_plug_in_path:8,maya_vers:[16,17],mayamesh:[2,3],mayapi:[16,17],mayaskinweight:3,mayauerbfplugin:20,mayawindow:5,mb:15,mdagmodifi:3,mdagpath:3,mean:[0,12],mechan:6,mel:15,member:[0,12],memori:0,memoryresourc:[0,12],memr:[0,12],memres_:[0,12],mention:8,menu:15,mese:5,mesh:[0,1,4,5,7,10,11,12,13,14,16,17,18],mesh_blend_shape_channel_map:4,mesh_blend_shape_channel_mapping_indices_for_lod:4,mesh_filt:[2,6],mesh_index:[2,3,4],mesh_indic:4,mesh_nam:[2,3,4,6],mesh_name_to_blend_shape_channel_name_cb:5,mesh_nod:3,mesh_object:3,mesh_tre:5,mesh_tree_list:5,meshblendshapechannelmap:[0,4,12],meshblendshapemappingindic:12,meshcount:[0,12],meshes_per_lod:2,meshfilt:[0,12],meshindex:[0,12],meshindex_:12,meshindic:[0,12],meshindices_:12,meshnam:12,meshtreelist:5,messag:[9,16,17],met:12,metadata:[0,4,12],metahuman:[0,14,20],metahumancr:[16,17],method:[2,3,5,6,7,12,13],mfndagnod:3,mfnmesh:3,mfnskinclust:3,mfntransform:3,mh4:[16,17,20],mh:[16,17],mhc:[16,17,20],mi:12,might:0,min:12,minim:5,minlod:[0,12],minlod_:0,mirror:0,mismatch:0,mkdir:14,mll:20,mobject:[2,3],model:[2,3,4,10],modif:[13,14],modifi:[3,12,16,17],modul:[1,11,16,17,18],moduletyp:2,more:[0,13],mpoint:3,multipl:[0,2,12,14],multipli:12,must:[0,14,15,16,17,20],mutabl:[0,12],mvector:3,n:[4,12],name:[0,2,3,4,5,6,7,12,13,15,16,17],necessari:[16,17],neck:20,neck_01:[16,17],neck_02:[16,17],need:[0,2,3,4,5,6,7,8,10,15,16,17,20],network:0,neutral:[2,3,4,12,13,14,16,17],neutral_joint_rot:4,neutral_joint_transl:4,neutraljointrot:12,neutraljointtransl:12,new_scen:2,newblendshapelod:12,newnam:12,newname_:12,newvalu:12,next:5,nicer:10,no_of_influ:3,node:[2,3],non:9,none:[2,3,4,5],normal:[0,2,4,12],normalindex:[0,12],note:[4,8,20],notif:9,novertexindicesseterror:12,nullptr:[0,12],nullptr_t:0,number:[0,2,4,12,16,17,20],object:[2,3,4,5,6,7,8,15,20],objnam:2,occur:[13,14],off:0,offset:[0,12],oldindex:[0,12],oldnam:12,oldname_:12,om:3,on_chang:5,on_dna_chang:5,on_dna_select:5,on_generic_chang:5,on_help:5,on_joints_chang:5,on_load_dna_click:5,one:[14,16,17],onli:[0,12,13,15],onto:0,op:12,open:5,open_dialog:5,openmaya:3,openmayaanim:3,openmod:14,openmode_binari:[16,17],oper:[0,12],operation_:12,option:[0,2,4,5,6,8,9,10,12],option_:[0,12],order:[0,8,12,14,15,16,17,20],organ:[10,16,17],origin:[0,12,13],origin_:12,os:[8,16,17],oserror:[8,16,17],ospath:[6,7,8,16,17],other:[14,15],otherwis:2,our:20,out:[0,5,15],outlin:15,output:[0,4,12,13],outputindic:[0,12],over:0,overrid:[0,12],overwrit:[0,12,14],own:12,packag:[11,16,17,18],pair:[0,12],param:[2,3,4,5],paramet:[0,2,5,6,8,12,13],parent:[0,2,4,5,12],parent_index:4,part:[4,8,12,16,17],particular:0,pass:[0,2,4,6,8,12,13],passingindic:[0,12],path:[2,4,5,6,7,8,16,17,20],path_to:[16,17],pattern:2,per:[0,4,10,16,17],perform:[0,14],pimpl:12,placehold:5,plan:[16,17],platform:[8,14,16,17],pleas:[8,16,17],plugin:[2,9,20],point3:[3,4],point:[0,3,12],pointer:[0,12],polygon_connect:3,polygon_fac:3,pop:5,popul:12,populatejointvariableattributeindic:12,populatemeshblendshapemappingindic:12,pose:4,posit:[0,2,3,4,12,13,16,17],position_gui:2,positions_:12,positionsmaskscountmismatch:12,possibl:0,postfix:[2,3,12],potenti:4,pre:[16,17,20],prebuilt:14,prefix:[2,3,16,17],prepare_joint:2,prepare_joint_id:2,prepare_mesh:3,prerequisit:14,present:0,preset:20,previou:[12,13],previousvalu:12,print:[6,16,17],privat:[0,12],process:[0,2,3,5,6,7,10,14],process_btn:5,processsubset:0,produc:4,programmat:9,progress:5,progress_bar:5,project:[0,14,15,16,17],propag:[10,12,16,17],properli:12,protect:[0,12],provid:[0,2,3,4,5,6,7,12,14,16,17,20],proxi:12,prune:[12,13,16,17],pruneblendshapetarget:12,pruneblendshapetargetscommand:[12,13],psd:[0,4,12],psdcount:12,psdmatrix:4,purpl:10,purpos:6,put:2,py:[7,16,17,20],pydna:[14,20],pydnacalib:[14,20],pyside2:5,python3:[14,16,17,20],python3_exact_vers:14,python:[2,13,16,17,20],qcheckbox:5,qframe:5,qhboxlayout:5,qhline:5,qline:5,qmainwindow:5,qmetaobject:5,qprogressbar:5,qpushbutton:5,qt:5,qtcore:5,qtwidget:5,queri:0,question:12,quixel:[16,17],qvboxlayout:5,qwidget:5,radian:2,rais:[8,16,17],raw:[0,2,4],raw_control_nam:4,rawanimatedmap:[0,12],rawbehavior:[0,12],rawblendshapechannel:[0,12],rawblendshapetarget:12,rawconditionalt:12,rawcontrol:12,rawcontrolnam:12,rawcoordinatesystem:12,rawdefinit:[0,12],rawdescriptor:[0,12],rawfac:12,rawgeometri:[0,12],rawjoint:[0,12],rawjointgroup:12,rawlodmap:[0,12],rawmesh:[0,12],rawpsdmatrix:12,rawsurjectivemap:12,rawtexturecoordinatevector:12,rawvector3vector:12,rawvertexlayoutvector:12,rawvertexskinweight:[0,12],rbf:20,re_aim:2,read:[0,2,3,4,5,10,14,16,17],read_all_neutral_joint:4,read_target_delta:4,readabl:[14,16,17],reader:[0,4,10,12,14,16,17],readerimpl:[0,12],readwrit:14,recalcul:[12,13],recent:20,recompil:[16,17],reconstruct:0,refer:[16,17],referenc:0,rel:0,relat:[3,10],relationship:0,releas:[16,17,20],remap:[0,12],remappedindic:[0,12],remov:[12,14,16,17],remove_cv:12,removeanimatedmap:12,removeanimatedmapcommand:12,removeblendshap:12,removeblendshapecommand:12,removejoint:12,removejointanim:12,removejointanimationcommand:[12,13],removejointcommand:[12,13],removemesh:12,removemeshcommand:[12,13],renam:[3,12,14,16,17],rename_mesh:3,renameanimatedmapcommand:[12,13],renameblendshapecommand:[12,13],renamebyindex:12,renamejointcommand:[12,13],renamemeshcommand:[12,13],renameresourcecommand:12,replac:[6,7,8,16,17],repositori:[8,15,16,17],repres:[0,2,3,4,5,6,7,12],represent:2,request:0,requir:[14,20],reserv:12,reset:[0,12],resetindic:[0,12],resetlod:[0,12],resiz:[0,12],resourc:0,rest:[12,16,17],result:10,retriev:[0,3],rh:[0,12],rig:[0,2,5,6,9,10,15,16,17,20],rig_build:[1,11,18],rig_logic_cb:5,rig_logic_command:2,rig_logic_nam:2,rigbuild:2,rigconfig:2,right:2,right_eye_aim_up_nam:2,right_eye_driver_nam:2,right_eye_joint_nam:2,riglog:5,riglogic4:9,rl4:[15,20],rl4embedded_:15,root:[0,2,5,6,7,8,12],root_dir:[6,7,8,16,17],root_lib_dir:[8,16,17],rootjointindex:[0,12],rotat:[0,2,4,12,13,14,16,17],rotateblendshapetargetdelta:12,rotatecommand:[12,13],rotateneutraljoint:12,rotatevertexposit:12,rotation_unit:4,rotations_:12,rotationunit:[0,12],row:[0,4,12],rowcount:[0,12],rowindic:[0,12],rtype:[2,3,4,5],run:[2,6,7,8,12,13,14,16,17,20],run_additional_assemble_script:2,run_after_assembl:2,runtimeerror:[5,16,17],s:[0,6,12,16,17,20],same:[0,2,4,5,8,12],save:12,sc:[0,12],scale:[12,13,16,17],scale_:12,scaleblendshapetargetdelta:12,scalecommand:[12,13],scalegeometri:12,scalejointbehavior:12,scaleneutraljoint:12,scalevertexposit:12,scene:[2,3,5,6,7,9,10,16,17,20],scopedptr:12,scratch:[14,16,17],script:[2,5,7,14,16,17,20],search:15,searchandrenam:12,section:12,sectionlookupt:12,see:[0,15,16,17],select:[0,5,15],select_aas_path:5,select_al:5,select_analog_gui_path:5,select_dna_path:5,select_gui_path:5,selector:5,separ:[0,8],sequenc:[12,13],serial:12,set:[0,2,3,4,5,6,7,8,12,13,14,15,16,17],set_filtered_mesh:2,set_progress:5,set_riglogic_cb_en:5,set_siz:5,set_skin_weight:3,set_skin_weights_to_scen:3,set_transl:3,set_unit:2,setag:[0,12],setanimatedmapcutvalu:[0,12],setanimatedmapfromvalu:[0,12],setanimatedmapindex:12,setanimatedmapindic:[0,12],setanimatedmapinputindic:[0,12],setanimatedmaplod:[0,12],setanimatedmapnam:[0,12],setanimatedmapoutputindic:[0,12],setanimatedmapslopevalu:[0,12],setanimatedmaptovalu:[0,12],setarchetyp:[0,12],setblendshapechannelindex:[0,12],setblendshapechannelindic:[0,12],setblendshapechannelinputindic:[0,12],setblendshapechannellod:[0,12],setblendshapechannelnam:[0,12],setblendshapechanneloutputindic:[0,12],setblendshapeindex:12,setblendshapeindic:12,setblendshapenameindic:0,setblendshapetargetdelta:[0,12],setblendshapetargetdeltascommand:[12,13],setblendshapetargetindex:12,setblendshapetargetvertexindic:[0,12],setcommand:12,setcondit:12,setcoordinatesystem:[0,12],setdbcomplex:[0,12],setdbmaxlod:[0,12],setdbnam:[0,12],setdelta:12,setfacevertexlayoutindic:[0,12],setfrom:[0,14],setgend:[0,12],setguicontrolnam:[0,12],setguitorawcutvalu:[0,12],setguitorawfromvalu:[0,12],setguitorawinputindic:[0,12],setguitorawoutputindic:[0,12],setguitorawslopevalu:[0,12],setguitorawtovalu:[0,12],setjointcolumncount:[0,12],setjointgroupinputindic:[0,12],setjointgroupjointindic:[0,12],setjointgrouplod:[0,12],setjointgroupoutputindic:[0,12],setjointgroupvalu:[0,12],setjointhierarchi:[0,12],setjointindex:12,setjointindic:[0,12],setjointnam:[0,12],setjointrowcount:[0,12],setlod:12,setlodanimatedmapmap:[0,12],setlodblendshapechannelmap:[0,12],setlodblendshapemap:0,setlodcount:[0,12],setlodjointmap:[0,12],setlodmeshmap:[0,12],setlodscommand:[12,13],setmask:12,setmaximuminfluencepervertex:[0,12],setmeshblendshapechannelmap:[0,12],setmeshindex:12,setmeshindic:[0,12],setmeshnam:[0,12],setmetadata:[0,12],setnam:[0,12],setnamebyindex:12,setneutraljointrot:[0,12],setneutraljointrotationscommand:[12,13,14],setneutraljointtransl:[0,12],setneutraljointtranslationscommand:[12,13],setoper:12,setorigin:12,setposit:12,setpsdcolumnindic:[0,12],setpsdcount:[0,12],setpsdrowindic:[0,12],setpsdvalu:[0,12],setrawcontrolnam:[0,12],setrot:12,setrotationunit:[0,12],setscal:12,setskinweightscommand:12,setskinweightsjointindic:[0,12],setskinweightsvalu:[0,12],setter:[0,12,13],setthreshold:12,settransl:12,settranslationunit:[0,12],setup:[6,7,20],setup_window:5,setvalu:12,setvertexindex:12,setvertexindic:12,setvertexlayout:[0,12],setvertexnorm:[0,12],setvertexposit:[0,12],setvertexpositionscommand:[12,13],setvertextexturecoordin:[0,12],setweight:12,sever:[16,17,20],shape:[0,2,3,4,5,12,13,14,16,17],share:[16,17],ship:[16,17],should:[0,2,5,6,7,8,12,15,16,17],show:[5,9,20],show_message_dialog:5,show_window:5,showcas:[14,16,17],signatur:[0,12],signaturemismatcherror:0,signaturevaluetyp:12,simpl:[0,6,10,16,17],singl:[0,2,3,16,17],size:[0,5,12],size_:12,size_t:[0,12],size_typ:0,skin:[0,2,3,4,5,6,12],skin_cb:5,skin_clust:3,skin_cluster_suffix:[2,3],skin_weight:[1,11,18],skinclust:2,skinning_method:3,skinweight:12,skinweightsdata:4,skip:2,slash:[16,17],slice:0,slope:[0,4],slope_valu:4,slopevalu:[0,12],small:[14,16,17],so:[5,10,12,13,16,17,20],some:[6,7,12,14,15,16,17],sort:0,sourc:[0,2,3,4,5,12,14,20],source_py_fil:2,space:[3,4,12],sparsifi:12,specif:[0,13,14,16,17],specifi:[0,2,3,12,13,14],sphinx:0,spring:[16,17,20],spyu:14,src:0,standalon:[16,17],start:[2,4,5,6,12,14,15],start_read:4,state:5,staticmetaobject:5,statu:[12,14,16,17],statuscod:[0,12],statusprovid:12,std:[0,12,14],step:[2,15],still:15,storag:[0,16,17],store:[0,3,4,16,17],str:[2,3,4,5,7,8],stream:[0,4,16,17],stream_:0,streamread:0,streamreaderimpl:0,streamwrit:0,streamwriterimpl:0,string:[0,2,3,12],stringpair:12,stringview:[0,12],struct:12,structur:0,subclass:[0,12],submodul:[1,11,18],subpackag:[11,18],subsequ:14,substr:2,subtract:[12,14,16,17],sudo:20,sum:0,support:[8,16,17],sure:[16,17],surjectivemap:12,swig:14,sy:[8,16,17],symbol:20,syspath:[8,16,17],system:[0,4,12,16,17],t:12,tabl:0,taken:0,target:[0,4,12,13],taro:[6,20],tcommand:12,tcondit:12,tcontain:[0,12],tderiv:12,tdm:12,templat:[0,12],temporari:0,termin:0,ters:[0,12],test:[16,17],text:5,textur:[0,3,4,12],texture_coordinate_index:4,texturecoordin:[0,12],texturecoordinateindex:[0,12],texturecoordinateuvindic:12,tfrom:12,than:[0,12,13],thats:[2,5],thei:[0,2,6,12,16,17],them:[2,5,12],themselv:0,thi:[0,2,3,5,6,7,8,9,12,14,15,16,17,20],those:[15,16,17,20],three:[16,17],threshold:[12,13],threshold_:12,through:[0,13],throughout:14,time:[2,5],titer:12,to_valu:4,togeth:15,tool:[16,17],top:[16,17],top_level_group:2,topolog:4,tovalu:[0,12],transform:[2,3,12],translat:[0,2,3,4,12,13,16,17],translatecommand:[12,13],translateneutraljoint:12,translatevertexposit:12,translation_:12,translation_unit:4,translations_:12,translationunit:[0,12],travers:0,treaderbas:[0,12],tree:5,tree_item_chang:5,triangl:12,trianglepositionindicespair:12,trust:0,tto:12,tupl:[3,4,12],two:[10,16,17,20],twriterbas:[0,12],type:[0,2,3,4,5,12],typenam:[0,12],u:0,ue5:[16,17],ui:[1,9,10,11,16,17,18],uint16_max:0,uint16_t:[0,12],uint32_t:[0,12],uncompress:0,unconfigur:12,unconstrainedlod:[0,12],unconstrainedlodcount:0,under:[0,12,14],union:3,uniqu:0,unit:[0,2,4,12],unload:[0,12],unloadbehavior:12,unloaddefinit:12,unloadgeometri:12,unorderedmap:[0,12],unorderedset:[0,12],unqualified_iter_value_typ:12,unsupport:[16,17],unus:6,up:[0,5,8],updat:[16,17,20],upper:0,us:[0,2,3,4,5,6,7,8,9,10,12,14,16,17,20],usabl:0,usag:[0,2,20],user:[15,16,17],usr:20,util:[1,11,14,18],uv:[4,12],uvbarycentricmap:12,v0:12,v1:12,v:0,valu:[0,2,3,4,5,6,7,8,12,13,14,16,17],value_typ:12,variabl:[4,14,16,17],variou:[0,4],vector3:[0,12,14],vector:[0,12,14],vectoroper:12,version:[0,12,14,16,17],version_:12,versionmismatcherror:0,vertex:[0,3,4,12,13],vertex_index:4,vertexcount:12,vertexindex:[0,12],vertexindex_:12,vertexindic:[0,12],vertexindices_:12,vertexindicesoutofboundserror:12,vertexlayout:[0,12],vertexpositionindic:12,vertic:[0,3,5,12],vertices_info:3,view:0,virtual:[0,12],visual:20,vs:[3,12],wa:[2,3,4],wai:[10,12],want:[3,10,15,16,17],warn:[16,17],we:[2,3,4,16,17,20],weight:[0,3,4,12],weightgetterfactori:12,weights_:12,well:[16,17,20],were:[0,12],when:[2,3,5,8,12],where:[0,5,12,20],whether:[0,2,3],which:[0,2,6,9,10,12,13,16,17,20],whole:[4,8],whose:[12,15],widget:[1,11,18],win32:[8,16,17],window:[5,8,9,14,16,17,20],wish:4,within:[0,4,6],without:[6,12],work:[2,3,15,16,17],workspac:15,world:3,would:0,wrapper:[2,14,16,17,20],write:[0,14,16,17],writer:[0,12,14],writerimpl:[0,12],written:14,x:[0,2,12],xaxi:12,xml:0,xs:12,xs_:12,y:[0,12],yaxi:12,you:[6,7,8,9,10,14,15,16,17,20],your:[15,16,17],ys:12,ys_:12,z:[0,12],zaxi:12,zero:0,zs:12,zs_:12},titles:["DNA","DNAViewer package","DNAViewer.builder package","DNAViewer.builder.maya package","DNAViewer.dnalib package","DNAViewer.ui package","Mesh Utilities","Build rig (build_rig
)","Environment Setup","Usage in Maya","DNAViewer","DNAViewer","DNACalib","API overview","DNACalib","Frequently Asked Questions (FAQ)","MetaHuman DNA Calibration","MetaHuman DNA Calibration","dna_calibration","<no title>","Repository Organization"],titleterms:{"do":15,"function":13,"import":6,addit:13,api:13,app:5,ask:15,behavior:4,bind:13,blendshap:13,build:[6,7,8,14],build_mesh:6,build_rig:7,builder:[2,3],c:14,calcul:13,calibr:[16,17],certain:13,chang:[13,15],code:10,command:13,config:[2,6],creat:[6,7],data:20,definit:4,depend:[16,17],descriptor:4,distribut:15,dna:[0,8,13,15,16,17],dna_calibr:18,dna_view:[2,3,4,5],dnacalib:[12,14,16,17,20],dnalib:4,dnaview:[1,2,3,4,5,10,11,16,17,20],environ:[8,16,17],error:15,exampl:[6,7,10,14,16,17,20],expect:15,extern:[16,17],faq:15,file:[15,16,17],fix:15,folder:[10,14,20],frequent:15,from:10,gener:15,geometri:4,got:15,how:[10,15],i:15,indic:[16,17],instanc:[6,7],joint:2,knowledg:[16,17],layer:4,lib:20,licens:[16,17],linux:20,load:[8,15],locat:20,maya:[3,9,10,15],mesh:[2,3,6,8],metahuman:[16,17],mismatch:15,modifi:13,modul:[2,3,4,5],note:[16,17],open:15,option:[16,17],organ:20,overview:[13,16,17],packag:[1,2,3,4,5],part:13,path:15,perform:13,pose:13,provid:13,python:14,question:15,remov:13,renam:13,repositori:20,requir:[16,17],rig:[7,8],rig_build:2,rigconfig:7,runtimeerror:15,scene:15,setup:[8,16,17],share:15,signatur:15,skin_weight:3,softwar:[16,17],structur:[10,14,20],submodul:[2,3,4,5],subpackag:1,tabl:[16,17],transform:13,ui:5,us:13,usag:[9,10,14],util:[3,6],ver:15,widget:5,work:10}})
\ No newline at end of file
diff --git a/docs/sphinx/build/doctrees/dna.doctree b/docs/sphinx/build/doctrees/dna.doctree
index 3752f01..3469b19 100644
Binary files a/docs/sphinx/build/doctrees/dna.doctree and b/docs/sphinx/build/doctrees/dna.doctree differ
diff --git a/docs/sphinx/build/doctrees/dna_viewer.builder.doctree b/docs/sphinx/build/doctrees/dna_viewer.builder.doctree
index 7277271..caeb15f 100644
Binary files a/docs/sphinx/build/doctrees/dna_viewer.builder.doctree and b/docs/sphinx/build/doctrees/dna_viewer.builder.doctree differ
diff --git a/docs/sphinx/build/doctrees/dna_viewer.builder.maya.doctree b/docs/sphinx/build/doctrees/dna_viewer.builder.maya.doctree
index f787f43..ebd3141 100644
Binary files a/docs/sphinx/build/doctrees/dna_viewer.builder.maya.doctree and b/docs/sphinx/build/doctrees/dna_viewer.builder.maya.doctree differ
diff --git a/docs/sphinx/build/doctrees/dna_viewer.dnalib.doctree b/docs/sphinx/build/doctrees/dna_viewer.dnalib.doctree
index 4f12c0f..bda7e53 100644
Binary files a/docs/sphinx/build/doctrees/dna_viewer.dnalib.doctree and b/docs/sphinx/build/doctrees/dna_viewer.dnalib.doctree differ
diff --git a/docs/sphinx/build/doctrees/dna_viewer.doctree b/docs/sphinx/build/doctrees/dna_viewer.doctree
index ff1d32c..8974d91 100644
Binary files a/docs/sphinx/build/doctrees/dna_viewer.doctree and b/docs/sphinx/build/doctrees/dna_viewer.doctree differ
diff --git a/docs/sphinx/build/doctrees/dna_viewer.ui.doctree b/docs/sphinx/build/doctrees/dna_viewer.ui.doctree
index 490078f..cc565e9 100644
Binary files a/docs/sphinx/build/doctrees/dna_viewer.ui.doctree and b/docs/sphinx/build/doctrees/dna_viewer.ui.doctree differ
diff --git a/docs/sphinx/build/doctrees/dna_viewer_api_build_meshes_md.doctree b/docs/sphinx/build/doctrees/dna_viewer_api_build_meshes_md.doctree
index a55154b..602cb24 100644
Binary files a/docs/sphinx/build/doctrees/dna_viewer_api_build_meshes_md.doctree and b/docs/sphinx/build/doctrees/dna_viewer_api_build_meshes_md.doctree differ
diff --git a/docs/sphinx/build/doctrees/dna_viewer_api_build_rig_md.doctree b/docs/sphinx/build/doctrees/dna_viewer_api_build_rig_md.doctree
index 09cb173..6d8121b 100644
Binary files a/docs/sphinx/build/doctrees/dna_viewer_api_build_rig_md.doctree and b/docs/sphinx/build/doctrees/dna_viewer_api_build_rig_md.doctree differ
diff --git a/docs/sphinx/build/doctrees/dna_viewer_api_md.doctree b/docs/sphinx/build/doctrees/dna_viewer_api_md.doctree
index 6f00af1..7714dab 100644
Binary files a/docs/sphinx/build/doctrees/dna_viewer_api_md.doctree and b/docs/sphinx/build/doctrees/dna_viewer_api_md.doctree differ
diff --git a/docs/sphinx/build/doctrees/dna_viewer_maya_md.doctree b/docs/sphinx/build/doctrees/dna_viewer_maya_md.doctree
index 7ff1db9..7a6f001 100644
Binary files a/docs/sphinx/build/doctrees/dna_viewer_maya_md.doctree and b/docs/sphinx/build/doctrees/dna_viewer_maya_md.doctree differ
diff --git a/docs/sphinx/build/doctrees/dna_viewer_md.doctree b/docs/sphinx/build/doctrees/dna_viewer_md.doctree
index 36c9b62..286e944 100644
Binary files a/docs/sphinx/build/doctrees/dna_viewer_md.doctree and b/docs/sphinx/build/doctrees/dna_viewer_md.doctree differ
diff --git a/docs/sphinx/build/doctrees/dna_viewer_modules.doctree b/docs/sphinx/build/doctrees/dna_viewer_modules.doctree
index 695f371..4dc2fbe 100644
Binary files a/docs/sphinx/build/doctrees/dna_viewer_modules.doctree and b/docs/sphinx/build/doctrees/dna_viewer_modules.doctree differ
diff --git a/docs/sphinx/build/doctrees/dnacalib.doctree b/docs/sphinx/build/doctrees/dnacalib.doctree
index eb51a9c..62b6774 100644
Binary files a/docs/sphinx/build/doctrees/dnacalib.doctree and b/docs/sphinx/build/doctrees/dnacalib.doctree differ
diff --git a/docs/sphinx/build/doctrees/dnacalib_api_md.doctree b/docs/sphinx/build/doctrees/dnacalib_api_md.doctree
index 1171f6d..3fc233c 100644
Binary files a/docs/sphinx/build/doctrees/dnacalib_api_md.doctree and b/docs/sphinx/build/doctrees/dnacalib_api_md.doctree differ
diff --git a/docs/sphinx/build/doctrees/dnacalib_md.doctree b/docs/sphinx/build/doctrees/dnacalib_md.doctree
index 68b1772..f8ed0e4 100644
Binary files a/docs/sphinx/build/doctrees/dnacalib_md.doctree and b/docs/sphinx/build/doctrees/dnacalib_md.doctree differ
diff --git a/docs/sphinx/build/doctrees/environment.pickle b/docs/sphinx/build/doctrees/environment.pickle
index ece6511..93d7569 100644
Binary files a/docs/sphinx/build/doctrees/environment.pickle and b/docs/sphinx/build/doctrees/environment.pickle differ
diff --git a/docs/sphinx/build/doctrees/faq_md.doctree b/docs/sphinx/build/doctrees/faq_md.doctree
index 1f6935a..482eb65 100644
Binary files a/docs/sphinx/build/doctrees/faq_md.doctree and b/docs/sphinx/build/doctrees/faq_md.doctree differ
diff --git a/docs/sphinx/build/doctrees/index.doctree b/docs/sphinx/build/doctrees/index.doctree
index 6b9fd83..6d48f2e 100644
Binary files a/docs/sphinx/build/doctrees/index.doctree and b/docs/sphinx/build/doctrees/index.doctree differ
diff --git a/docs/sphinx/build/doctrees/index_.doctree b/docs/sphinx/build/doctrees/index_.doctree
index c360345..74d811e 100644
Binary files a/docs/sphinx/build/doctrees/index_.doctree and b/docs/sphinx/build/doctrees/index_.doctree differ
diff --git a/docs/sphinx/build/doctrees/modules.doctree b/docs/sphinx/build/doctrees/modules.doctree
index 1ab48dd..c917691 100644
Binary files a/docs/sphinx/build/doctrees/modules.doctree and b/docs/sphinx/build/doctrees/modules.doctree differ
diff --git a/docs/sphinx/build/doctrees/navigation.doctree b/docs/sphinx/build/doctrees/navigation.doctree
index e298ac4..312d791 100644
Binary files a/docs/sphinx/build/doctrees/navigation.doctree and b/docs/sphinx/build/doctrees/navigation.doctree differ
diff --git a/docs/sphinx/build/doctrees/repository_organization_md.doctree b/docs/sphinx/build/doctrees/repository_organization_md.doctree
index 45e4ec9..e080474 100644
Binary files a/docs/sphinx/build/doctrees/repository_organization_md.doctree and b/docs/sphinx/build/doctrees/repository_organization_md.doctree differ
diff --git a/docs/sphinx/build/html/index.html b/docs/sphinx/build/html/index.html
index 9362f51..86353e5 100644
--- a/docs/sphinx/build/html/index.html
+++ b/docs/sphinx/build/html/index.html
@@ -241,8 +241,44 @@ If running on Linux, please make sure to append the LD_LIBRARY_PATH with absolut
Note: Examples are grouped in three groups: DNA, DNACalib, and DNAViewer. These names are embedded as prefixes: dna_, dnacalib_, and dna_viewer_.
Two demo DNA files are provided for easier testing of this tool. Any DNA generated with MetaHumanCreator +
Two demo DNA files are provided for easier testing of this tool. Any DNA generated with MetaHumanCreator should work.
+The MHC 2023 spring release introduced changes to the rig definition (number of joints increased as well as the number of expressions).
+In order to accommodate those changes, we added several files to the repository in /data/mh4
folder: new gui scene, updated assemble script and example of Ada’s DNA file.
+If a user wants to switch and use this new rig version it is necessary to update paths in their scripts:
GUI = f"{DATA_DIR}/mh4/gui.ma"
+ADDITIONAL_ASSEMBLE_SCRIPT = f"{DATA_DIR}/mh4/additional_assemble_script.py"
+
In case character DNA is downloaded from Quixel Bridge and we are not sure which rig definition is used, it can be checked with following code:
+from dna import (
+ BinaryStreamReader,
+ DataLayer_All,
+ FileStream,
+ Status,
+)
+
+def load_dna_reader(dna_file):
+ stream = FileStream(
+ dna_file, FileStream.AccessMode_Read, FileStream.OpenMode_Binary
+ )
+ reader = BinaryStreamReader(stream, DataLayer_All)
+ reader.read()
+ if not Status.isOk():
+ status = Status.get()
+ raise RuntimeError(f"Error loading DNA: {status.message}")
+ return reader
+
+character_dna = "path_to/character.dna"
+reader = load_dna_reader(character_dna)
+if reader.getDBName() == "MH.4":
+ print("Use mh4 folder")
+elif reader.getDBName() == "DHI":
+ print("Use data folder")
+else:
+ print("Unsupported rig definition!")
+
Note: Examples are grouped in three groups: DNA, DNACalib, and DNAViewer. These names are embedded as prefixes: dna_, dnacalib_, and dna_viewer_.
Two demo DNA files are provided for easier testing of this tool. Any DNA generated with MetaHumanCreator +
Two demo DNA files are provided for easier testing of this tool. Any DNA generated with MetaHumanCreator should work.
+The MHC 2023 spring release introduced changes to the rig definition (number of joints increased as well as the number of expressions).
+In order to accommodate those changes, we added several files to the repository in /data/mh4
folder: new gui scene, updated assemble script and example of Ada’s DNA file.
+If a user wants to switch and use this new rig version it is necessary to update paths in their scripts:
GUI = f"{DATA_DIR}/mh4/gui.ma"
+ADDITIONAL_ASSEMBLE_SCRIPT = f"{DATA_DIR}/mh4/additional_assemble_script.py"
+
In case character DNA is downloaded from Quixel Bridge and we are not sure which rig definition is used, it can be checked with following code:
+from dna import (
+ BinaryStreamReader,
+ DataLayer_All,
+ FileStream,
+ Status,
+)
+
+def load_dna_reader(dna_file):
+ stream = FileStream(
+ dna_file, FileStream.AccessMode_Read, FileStream.OpenMode_Binary
+ )
+ reader = BinaryStreamReader(stream, DataLayer_All)
+ reader.read()
+ if not Status.isOk():
+ status = Status.get()
+ raise RuntimeError(f"Error loading DNA: {status.message}")
+ return reader
+
+character_dna = "path_to/character.dna"
+reader = load_dna_reader(character_dna)
+if reader.getDBName() == "MH.4":
+ print("Use mh4 folder")
+elif reader.getDBName() == "DHI":
+ print("Use data folder")
+else:
+ print("Unsupported rig definition!")
+
Note: Change the path ~/MetaHuman-DNA-Calibration
to where MetaHuman-DNA-Calibration
is located.
additional_assemble_script.py
is used to organize objects in scene and
connect controls. The ideal setup looks like this:
The MHC 2023 spring release introduced changes to the rig definition (number of joints increased as well as the number of expressions).
+In order to accommodate those changes, we added several files to the repository in /data/mh4
folder: new gui scene, updated assemble script and example of Ada’s DNA file.
+Furthermore, in lib folder we added Maya RBF plugin which is used for controlling neck expressions. Neck setup has recently been improved and adding RBF plugin as well as new gui scene to use it, we get better neck deformations.
build_rig
)","Environment Setup","Usage in Maya","DNAViewer","DNAViewer","DNACalib","API overview","DNACalib","Frequently Asked Questions (FAQ)","MetaHuman DNA Calibration","MetaHuman DNA Calibration","dna_calibration","<no title>","Repository Organization"],titleterms:{"do":15,"function":13,"import":6,addit:13,api:13,app:5,ask:15,behavior:4,bind:13,blendshap:13,build:[6,7,8,14],build_mesh:6,build_rig:7,builder:[2,3],c:14,calcul:13,calibr:[16,17],certain:13,chang:[13,15],code:10,command:13,config:[2,6],creat:[6,7],data:20,definit:4,depend:[16,17],descriptor:4,distribut:15,dna:[0,8,13,15,16,17],dna_calibr:18,dna_view:[2,3,4,5],dnacalib:[12,14,16,17,20],dnalib:4,dnaview:[1,2,3,4,5,10,11,16,17,20],environ:[8,16,17],error:15,exampl:[6,7,10,14,16,17,20],expect:15,extern:[16,17],faq:15,file:[15,16,17],fix:15,folder:[10,14,20],frequent:15,from:10,gener:15,geometri:4,got:15,how:[10,15],i:15,indic:[16,17],instanc:[6,7],joint:2,knowledg:[16,17],layer:4,lib:20,licens:[16,17],linux:20,load:[8,15],locat:20,maya:[3,9,10,15],mesh:[2,3,6,8],metahuman:[16,17],mismatch:15,modifi:13,modul:[2,3,4,5],note:[16,17],open:15,option:[16,17],organ:20,overview:[13,16,17],packag:[1,2,3,4,5],part:13,path:15,perform:13,pose:13,provid:13,python:14,question:15,remov:13,renam:13,repositori:20,requir:[16,17],rig:[7,8],rig_build:2,rigconfig:7,runtimeerror:15,scene:15,setup:[8,16,17],share:15,signatur:15,skin_weight:3,softwar:[16,17],structur:[10,14,20],submodul:[2,3,4,5],subpackag:1,tabl:[16,17],transform:13,ui:5,us:13,usag:[9,10,14],util:[3,6],ver:15,widget:5,work:10}})
\ No newline at end of file
+Search.setIndex({docnames:["dna","dna_viewer","dna_viewer.builder","dna_viewer.builder.maya","dna_viewer.dnalib","dna_viewer.ui","dna_viewer_api_build_meshes_md","dna_viewer_api_build_rig_md","dna_viewer_api_md","dna_viewer_maya_md","dna_viewer_md","dna_viewer_modules","dnacalib","dnacalib_api_md","dnacalib_md","faq_md","index","index_","modules","navigation","repository_organization_md"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["dna.rst","dna_viewer.rst","dna_viewer.builder.rst","dna_viewer.builder.maya.rst","dna_viewer.dnalib.rst","dna_viewer.ui.rst","dna_viewer_api_build_meshes_md.md","dna_viewer_api_build_rig_md.md","dna_viewer_api_md.md","dna_viewer_maya_md.md","dna_viewer_md.md","dna_viewer_modules.rst","dnacalib.rst","dnacalib_api_md.md","dnacalib_md.md","faq_md.md","index.md","index_.md","modules.rst","navigation.md","repository_organization_md.md"],objects:{"":[[0,0,1,"_CPPv4N3dna17AnimatedMapFilterE","dna::AnimatedMapFilter"],[0,1,1,"_CPPv4N3dna17AnimatedMapFilter17AnimatedMapFilterEP14MemoryResource","dna::AnimatedMapFilter::AnimatedMapFilter"],[0,2,1,"_CPPv4N3dna17AnimatedMapFilter17AnimatedMapFilterEP14MemoryResource","dna::AnimatedMapFilter::AnimatedMapFilter::memRes_"],[0,1,1,"_CPPv4N3dna17AnimatedMapFilter5applyER13RawDefinition","dna::AnimatedMapFilter::apply"],[0,2,1,"_CPPv4N3dna17AnimatedMapFilter5applyER13RawDefinition","dna::AnimatedMapFilter::apply::dest"],[0,1,1,"_CPPv4N3dna17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::AnimatedMapFilter::configure"],[0,2,1,"_CPPv4N3dna17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::AnimatedMapFilter::configure::allowedAnimatedMapIndices"],[0,2,1,"_CPPv4N3dna17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::AnimatedMapFilter::configure::animatedMapCount"],[0,3,1,"_CPPv4N3dna17AnimatedMapFilter6memResE","dna::AnimatedMapFilter::memRes"],[0,1,1,"_CPPv4NK3dna17AnimatedMapFilter6passesENSt8uint16_tE","dna::AnimatedMapFilter::passes"],[0,2,1,"_CPPv4NK3dna17AnimatedMapFilter6passesENSt8uint16_tE","dna::AnimatedMapFilter::passes::index"],[0,3,1,"_CPPv4N3dna17AnimatedMapFilter14passingIndicesE","dna::AnimatedMapFilter::passingIndices"],[0,3,1,"_CPPv4N3dna17AnimatedMapFilter15remappedIndicesE","dna::AnimatedMapFilter::remappedIndices"],[0,0,1,"_CPPv4N3dna8BaseImplE","dna::BaseImpl"],[0,1,1,"_CPPv4N3dna8BaseImpl8BaseImplEP14MemoryResource","dna::BaseImpl::BaseImpl"],[0,1,1,"_CPPv4N3dna8BaseImpl8BaseImplERK8BaseImpl","dna::BaseImpl::BaseImpl"],[0,1,1,"_CPPv4N3dna8BaseImpl8BaseImplERR8BaseImpl","dna::BaseImpl::BaseImpl"],[0,2,1,"_CPPv4N3dna8BaseImpl8BaseImplEP14MemoryResource","dna::BaseImpl::BaseImpl::memRes_"],[0,2,1,"_CPPv4N3dna8BaseImpl8BaseImplERR8BaseImpl","dna::BaseImpl::BaseImpl::rhs"],[0,3,1,"_CPPv4N3dna8BaseImpl3dnaE","dna::BaseImpl::dna"],[0,1,1,"_CPPv4N3dna8BaseImpl17getMemoryResourceEv","dna::BaseImpl::getMemoryResource"],[0,3,1,"_CPPv4N3dna8BaseImpl6memResE","dna::BaseImpl::memRes"],[0,1,1,"_CPPv4N3dna8BaseImplaSERK8BaseImpl","dna::BaseImpl::operator="],[0,1,1,"_CPPv4N3dna8BaseImplaSERR8BaseImpl","dna::BaseImpl::operator="],[0,1,1,"_CPPv4N3dna8BaseImplD0Ev","dna::BaseImpl::~BaseImpl"],[0,0,1,"_CPPv4N3dna14BehaviorReaderE","dna::BehaviorReader"],[0,1,1,"_CPPv4NK3dna14BehaviorReader23getAnimatedMapCutValuesEv","dna::BehaviorReader::getAnimatedMapCutValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader24getAnimatedMapFromValuesEv","dna::BehaviorReader::getAnimatedMapFromValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader26getAnimatedMapInputIndicesEv","dna::BehaviorReader::getAnimatedMapInputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader18getAnimatedMapLODsEv","dna::BehaviorReader::getAnimatedMapLODs"],[0,1,1,"_CPPv4NK3dna14BehaviorReader27getAnimatedMapOutputIndicesEv","dna::BehaviorReader::getAnimatedMapOutputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader25getAnimatedMapSlopeValuesEv","dna::BehaviorReader::getAnimatedMapSlopeValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader22getAnimatedMapToValuesEv","dna::BehaviorReader::getAnimatedMapToValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader32getBlendShapeChannelInputIndicesEv","dna::BehaviorReader::getBlendShapeChannelInputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader24getBlendShapeChannelLODsEv","dna::BehaviorReader::getBlendShapeChannelLODs"],[0,1,1,"_CPPv4NK3dna14BehaviorReader33getBlendShapeChannelOutputIndicesEv","dna::BehaviorReader::getBlendShapeChannelOutputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader20getGUIToRawCutValuesEv","dna::BehaviorReader::getGUIToRawCutValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader21getGUIToRawFromValuesEv","dna::BehaviorReader::getGUIToRawFromValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader23getGUIToRawInputIndicesEv","dna::BehaviorReader::getGUIToRawInputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader24getGUIToRawOutputIndicesEv","dna::BehaviorReader::getGUIToRawOutputIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader22getGUIToRawSlopeValuesEv","dna::BehaviorReader::getGUIToRawSlopeValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader19getGUIToRawToValuesEv","dna::BehaviorReader::getGUIToRawToValues"],[0,1,1,"_CPPv4NK3dna14BehaviorReader19getJointColumnCountEv","dna::BehaviorReader::getJointColumnCount"],[0,1,1,"_CPPv4NK3dna14BehaviorReader18getJointGroupCountEv","dna::BehaviorReader::getJointGroupCount"],[0,1,1,"_CPPv4NK3dna14BehaviorReader25getJointGroupInputIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupInputIndices"],[0,2,1,"_CPPv4NK3dna14BehaviorReader25getJointGroupInputIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupInputIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna14BehaviorReader25getJointGroupJointIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupJointIndices"],[0,2,1,"_CPPv4NK3dna14BehaviorReader25getJointGroupJointIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupJointIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna14BehaviorReader17getJointGroupLODsENSt8uint16_tE","dna::BehaviorReader::getJointGroupLODs"],[0,2,1,"_CPPv4NK3dna14BehaviorReader17getJointGroupLODsENSt8uint16_tE","dna::BehaviorReader::getJointGroupLODs::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna14BehaviorReader26getJointGroupOutputIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupOutputIndices"],[0,2,1,"_CPPv4NK3dna14BehaviorReader26getJointGroupOutputIndicesENSt8uint16_tE","dna::BehaviorReader::getJointGroupOutputIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna14BehaviorReader19getJointGroupValuesENSt8uint16_tE","dna::BehaviorReader::getJointGroupValues"],[0,2,1,"_CPPv4NK3dna14BehaviorReader19getJointGroupValuesENSt8uint16_tE","dna::BehaviorReader::getJointGroupValues::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna14BehaviorReader16getJointRowCountEv","dna::BehaviorReader::getJointRowCount"],[0,1,1,"_CPPv4NK3dna14BehaviorReader32getJointVariableAttributeIndicesENSt8uint16_tE","dna::BehaviorReader::getJointVariableAttributeIndices"],[0,2,1,"_CPPv4NK3dna14BehaviorReader32getJointVariableAttributeIndicesENSt8uint16_tE","dna::BehaviorReader::getJointVariableAttributeIndices::lod"],[0,1,1,"_CPPv4NK3dna14BehaviorReader19getPSDColumnIndicesEv","dna::BehaviorReader::getPSDColumnIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader11getPSDCountEv","dna::BehaviorReader::getPSDCount"],[0,1,1,"_CPPv4NK3dna14BehaviorReader16getPSDRowIndicesEv","dna::BehaviorReader::getPSDRowIndices"],[0,1,1,"_CPPv4NK3dna14BehaviorReader12getPSDValuesEv","dna::BehaviorReader::getPSDValues"],[0,1,1,"_CPPv4N3dna14BehaviorReaderD0Ev","dna::BehaviorReader::~BehaviorReader"],[0,0,1,"_CPPv4N3dna14BehaviorWriterE","dna::BehaviorWriter"],[0,1,1,"_CPPv4N3dna14BehaviorWriter16clearJointGroupsEv","dna::BehaviorWriter::clearJointGroups"],[0,1,1,"_CPPv4N3dna14BehaviorWriter16deleteJointGroupENSt8uint16_tE","dna::BehaviorWriter::deleteJointGroup"],[0,2,1,"_CPPv4N3dna14BehaviorWriter16deleteJointGroupENSt8uint16_tE","dna::BehaviorWriter::deleteJointGroup::jointGroupIndex"],[0,1,1,"_CPPv4N3dna14BehaviorWriter23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapCutValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapCutValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapCutValues::cutValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapFromValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapFromValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapFromValues::fromValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapInputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapInputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapLODs"],[0,2,1,"_CPPv4N3dna14BehaviorWriter18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapLODs::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapLODs::lods"],[0,1,1,"_CPPv4N3dna14BehaviorWriter27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapOutputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapOutputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapSlopeValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapSlopeValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapSlopeValues::slopeValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapToValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapToValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setAnimatedMapToValues::toValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelInputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelInputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelLODs"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelLODs::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelLODs::lods"],[0,1,1,"_CPPv4N3dna14BehaviorWriter33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelOutputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelOutputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setBlendShapeChannelOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawCutValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawCutValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawCutValues::cutValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawFromValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawFromValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawFromValues::fromValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawInputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawInputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawOutputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawOutputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setGUIToRawOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawSlopeValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawSlopeValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawSlopeValues::slopeValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawToValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawToValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setGUIToRawToValues::toValues"],[0,1,1,"_CPPv4N3dna14BehaviorWriter19setJointColumnCountENSt8uint16_tE","dna::BehaviorWriter::setJointColumnCount"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setJointColumnCountENSt8uint16_tE","dna::BehaviorWriter::setJointColumnCount::columnCount"],[0,1,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupInputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupInputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupInputIndices::inputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupInputIndices::jointGroupIndex"],[0,1,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupJointIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupJointIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupJointIndices::jointGroupIndex"],[0,2,1,"_CPPv4N3dna14BehaviorWriter25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupJointIndices::jointIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupLODs"],[0,2,1,"_CPPv4N3dna14BehaviorWriter17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupLODs::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupLODs::jointGroupIndex"],[0,2,1,"_CPPv4N3dna14BehaviorWriter17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupLODs::lods"],[0,1,1,"_CPPv4N3dna14BehaviorWriter26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupOutputIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupOutputIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupOutputIndices::jointGroupIndex"],[0,2,1,"_CPPv4N3dna14BehaviorWriter26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setJointGroupOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::BehaviorWriter::setJointGroupValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::BehaviorWriter::setJointGroupValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::BehaviorWriter::setJointGroupValues::jointGroupIndex"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::BehaviorWriter::setJointGroupValues::values"],[0,1,1,"_CPPv4N3dna14BehaviorWriter16setJointRowCountENSt8uint16_tE","dna::BehaviorWriter::setJointRowCount"],[0,2,1,"_CPPv4N3dna14BehaviorWriter16setJointRowCountENSt8uint16_tE","dna::BehaviorWriter::setJointRowCount::rowCount"],[0,1,1,"_CPPv4N3dna14BehaviorWriter19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDColumnIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDColumnIndices::columnIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDColumnIndices::count"],[0,1,1,"_CPPv4N3dna14BehaviorWriter11setPSDCountENSt8uint16_tE","dna::BehaviorWriter::setPSDCount"],[0,2,1,"_CPPv4N3dna14BehaviorWriter11setPSDCountENSt8uint16_tE","dna::BehaviorWriter::setPSDCount::count"],[0,1,1,"_CPPv4N3dna14BehaviorWriter16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDRowIndices"],[0,2,1,"_CPPv4N3dna14BehaviorWriter16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDRowIndices::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::BehaviorWriter::setPSDRowIndices::rowIndices"],[0,1,1,"_CPPv4N3dna14BehaviorWriter12setPSDValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setPSDValues"],[0,2,1,"_CPPv4N3dna14BehaviorWriter12setPSDValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setPSDValues::count"],[0,2,1,"_CPPv4N3dna14BehaviorWriter12setPSDValuesEPKfNSt8uint16_tE","dna::BehaviorWriter::setPSDValues::weights"],[0,1,1,"_CPPv4N3dna14BehaviorWriterD0Ev","dna::BehaviorWriter::~BehaviorWriter"],[0,0,1,"_CPPv4N3dna16BlendShapeFilterE","dna::BlendShapeFilter"],[0,1,1,"_CPPv4N3dna16BlendShapeFilter16BlendShapeFilterEP14MemoryResource","dna::BlendShapeFilter::BlendShapeFilter"],[0,2,1,"_CPPv4N3dna16BlendShapeFilter16BlendShapeFilterEP14MemoryResource","dna::BlendShapeFilter::BlendShapeFilter::memRes_"],[0,1,1,"_CPPv4N3dna16BlendShapeFilter5applyER13RawDefinition","dna::BlendShapeFilter::apply"],[0,2,1,"_CPPv4N3dna16BlendShapeFilter5applyER13RawDefinition","dna::BlendShapeFilter::apply::dest"],[0,1,1,"_CPPv4N3dna16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::BlendShapeFilter::configure"],[0,2,1,"_CPPv4N3dna16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::BlendShapeFilter::configure::allowedBlendShapeIndices"],[0,2,1,"_CPPv4N3dna16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::BlendShapeFilter::configure::blendShapeCount"],[0,3,1,"_CPPv4N3dna16BlendShapeFilter6memResE","dna::BlendShapeFilter::memRes"],[0,1,1,"_CPPv4NK3dna16BlendShapeFilter6passesENSt8uint16_tE","dna::BlendShapeFilter::passes"],[0,2,1,"_CPPv4NK3dna16BlendShapeFilter6passesENSt8uint16_tE","dna::BlendShapeFilter::passes::index"],[0,3,1,"_CPPv4N3dna16BlendShapeFilter14passingIndicesE","dna::BlendShapeFilter::passingIndices"],[0,3,1,"_CPPv4N3dna16BlendShapeFilter15remappedIndicesE","dna::BlendShapeFilter::remappedIndices"],[0,0,1,"_CPPv4N3dna16DefinitionReaderE","dna::DefinitionReader"],[0,1,1,"_CPPv4NK3dna16DefinitionReader19getAnimatedMapCountEv","dna::DefinitionReader::getAnimatedMapCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader28getAnimatedMapIndexListCountEv","dna::DefinitionReader::getAnimatedMapIndexListCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader27getAnimatedMapIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getAnimatedMapIndicesForLOD"],[0,2,1,"_CPPv4NK3dna16DefinitionReader27getAnimatedMapIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getAnimatedMapIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna16DefinitionReader18getAnimatedMapNameENSt8uint16_tE","dna::DefinitionReader::getAnimatedMapName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader18getAnimatedMapNameENSt8uint16_tE","dna::DefinitionReader::getAnimatedMapName::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader25getBlendShapeChannelCountEv","dna::DefinitionReader::getBlendShapeChannelCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader34getBlendShapeChannelIndexListCountEv","dna::DefinitionReader::getBlendShapeChannelIndexListCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getBlendShapeChannelIndicesForLOD"],[0,2,1,"_CPPv4NK3dna16DefinitionReader33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getBlendShapeChannelIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna16DefinitionReader24getBlendShapeChannelNameENSt8uint16_tE","dna::DefinitionReader::getBlendShapeChannelName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader24getBlendShapeChannelNameENSt8uint16_tE","dna::DefinitionReader::getBlendShapeChannelName::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader18getGUIControlCountEv","dna::DefinitionReader::getGUIControlCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader17getGUIControlNameENSt8uint16_tE","dna::DefinitionReader::getGUIControlName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader17getGUIControlNameENSt8uint16_tE","dna::DefinitionReader::getGUIControlName::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader13getJointCountEv","dna::DefinitionReader::getJointCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader22getJointIndexListCountEv","dna::DefinitionReader::getJointIndexListCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader21getJointIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getJointIndicesForLOD"],[0,2,1,"_CPPv4NK3dna16DefinitionReader21getJointIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getJointIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna16DefinitionReader12getJointNameENSt8uint16_tE","dna::DefinitionReader::getJointName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader12getJointNameENSt8uint16_tE","dna::DefinitionReader::getJointName::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader19getJointParentIndexENSt8uint16_tE","dna::DefinitionReader::getJointParentIndex"],[0,2,1,"_CPPv4NK3dna16DefinitionReader19getJointParentIndexENSt8uint16_tE","dna::DefinitionReader::getJointParentIndex::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader31getMeshBlendShapeChannelMappingENSt8uint16_tE","dna::DefinitionReader::getMeshBlendShapeChannelMapping"],[0,2,1,"_CPPv4NK3dna16DefinitionReader31getMeshBlendShapeChannelMappingENSt8uint16_tE","dna::DefinitionReader::getMeshBlendShapeChannelMapping::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader36getMeshBlendShapeChannelMappingCountEv","dna::DefinitionReader::getMeshBlendShapeChannelMappingCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getMeshBlendShapeChannelMappingIndicesForLOD"],[0,2,1,"_CPPv4NK3dna16DefinitionReader44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getMeshBlendShapeChannelMappingIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna16DefinitionReader12getMeshCountEv","dna::DefinitionReader::getMeshCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader21getMeshIndexListCountEv","dna::DefinitionReader::getMeshIndexListCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader20getMeshIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getMeshIndicesForLOD"],[0,2,1,"_CPPv4NK3dna16DefinitionReader20getMeshIndicesForLODENSt8uint16_tE","dna::DefinitionReader::getMeshIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna16DefinitionReader11getMeshNameENSt8uint16_tE","dna::DefinitionReader::getMeshName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader11getMeshNameENSt8uint16_tE","dna::DefinitionReader::getMeshName::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader23getNeutralJointRotationENSt8uint16_tE","dna::DefinitionReader::getNeutralJointRotation"],[0,2,1,"_CPPv4NK3dna16DefinitionReader23getNeutralJointRotationENSt8uint16_tE","dna::DefinitionReader::getNeutralJointRotation::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader25getNeutralJointRotationXsEv","dna::DefinitionReader::getNeutralJointRotationXs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader25getNeutralJointRotationYsEv","dna::DefinitionReader::getNeutralJointRotationYs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader25getNeutralJointRotationZsEv","dna::DefinitionReader::getNeutralJointRotationZs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader26getNeutralJointTranslationENSt8uint16_tE","dna::DefinitionReader::getNeutralJointTranslation"],[0,2,1,"_CPPv4NK3dna16DefinitionReader26getNeutralJointTranslationENSt8uint16_tE","dna::DefinitionReader::getNeutralJointTranslation::index"],[0,1,1,"_CPPv4NK3dna16DefinitionReader28getNeutralJointTranslationXsEv","dna::DefinitionReader::getNeutralJointTranslationXs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader28getNeutralJointTranslationYsEv","dna::DefinitionReader::getNeutralJointTranslationYs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader28getNeutralJointTranslationZsEv","dna::DefinitionReader::getNeutralJointTranslationZs"],[0,1,1,"_CPPv4NK3dna16DefinitionReader18getRawControlCountEv","dna::DefinitionReader::getRawControlCount"],[0,1,1,"_CPPv4NK3dna16DefinitionReader17getRawControlNameENSt8uint16_tE","dna::DefinitionReader::getRawControlName"],[0,2,1,"_CPPv4NK3dna16DefinitionReader17getRawControlNameENSt8uint16_tE","dna::DefinitionReader::getRawControlName::index"],[0,1,1,"_CPPv4N3dna16DefinitionReaderD0Ev","dna::DefinitionReader::~DefinitionReader"],[0,0,1,"_CPPv4N3dna16DefinitionWriterE","dna::DefinitionWriter"],[0,1,1,"_CPPv4N3dna16DefinitionWriter23clearAnimatedMapIndicesEv","dna::DefinitionWriter::clearAnimatedMapIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter21clearAnimatedMapNamesEv","dna::DefinitionWriter::clearAnimatedMapNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter29clearBlendShapeChannelIndicesEv","dna::DefinitionWriter::clearBlendShapeChannelIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter27clearBlendShapeChannelNamesEv","dna::DefinitionWriter::clearBlendShapeChannelNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter20clearGUIControlNamesEv","dna::DefinitionWriter::clearGUIControlNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter17clearJointIndicesEv","dna::DefinitionWriter::clearJointIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter15clearJointNamesEv","dna::DefinitionWriter::clearJointNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter27clearLODAnimatedMapMappingsEv","dna::DefinitionWriter::clearLODAnimatedMapMappings"],[0,1,1,"_CPPv4N3dna16DefinitionWriter33clearLODBlendShapeChannelMappingsEv","dna::DefinitionWriter::clearLODBlendShapeChannelMappings"],[0,1,1,"_CPPv4N3dna16DefinitionWriter21clearLODJointMappingsEv","dna::DefinitionWriter::clearLODJointMappings"],[0,1,1,"_CPPv4N3dna16DefinitionWriter20clearLODMeshMappingsEv","dna::DefinitionWriter::clearLODMeshMappings"],[0,1,1,"_CPPv4N3dna16DefinitionWriter34clearMeshBlendShapeChannelMappingsEv","dna::DefinitionWriter::clearMeshBlendShapeChannelMappings"],[0,1,1,"_CPPv4N3dna16DefinitionWriter16clearMeshIndicesEv","dna::DefinitionWriter::clearMeshIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter14clearMeshNamesEv","dna::DefinitionWriter::clearMeshNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter20clearRawControlNamesEv","dna::DefinitionWriter::clearRawControlNames"],[0,1,1,"_CPPv4N3dna16DefinitionWriter21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setAnimatedMapIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setAnimatedMapIndices::animatedMapIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setAnimatedMapIndices::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setAnimatedMapIndices::index"],[0,1,1,"_CPPv4N3dna16DefinitionWriter18setAnimatedMapNameENSt8uint16_tEPKc","dna::DefinitionWriter::setAnimatedMapName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter18setAnimatedMapNameENSt8uint16_tEPKc","dna::DefinitionWriter::setAnimatedMapName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter18setAnimatedMapNameENSt8uint16_tEPKc","dna::DefinitionWriter::setAnimatedMapName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriter27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setBlendShapeChannelIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setBlendShapeChannelIndices::blendShapeChannelIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setBlendShapeChannelIndices::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setBlendShapeChannelIndices::index"],[0,1,1,"_CPPv4N3dna16DefinitionWriter24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::DefinitionWriter::setBlendShapeChannelName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::DefinitionWriter::setBlendShapeChannelName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::DefinitionWriter::setBlendShapeChannelName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriter17setGUIControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setGUIControlName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setGUIControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setGUIControlName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setGUIControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setGUIControlName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriter17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointHierarchy"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointHierarchy::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointHierarchy::jointIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointIndices::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointIndices::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setJointIndices::jointIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter12setJointNameENSt8uint16_tEPKc","dna::DefinitionWriter::setJointName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter12setJointNameENSt8uint16_tEPKc","dna::DefinitionWriter::setJointName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter12setJointNameENSt8uint16_tEPKc","dna::DefinitionWriter::setJointName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriter24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODAnimatedMapMapping"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODAnimatedMapMapping::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODAnimatedMapMapping::lod"],[0,1,1,"_CPPv4N3dna16DefinitionWriter30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODBlendShapeChannelMapping"],[0,2,1,"_CPPv4N3dna16DefinitionWriter30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODBlendShapeChannelMapping::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODBlendShapeChannelMapping::lod"],[0,1,1,"_CPPv4N3dna16DefinitionWriter18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODJointMapping"],[0,2,1,"_CPPv4N3dna16DefinitionWriter18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODJointMapping::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODJointMapping::lod"],[0,1,1,"_CPPv4N3dna16DefinitionWriter17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODMeshMapping"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODMeshMapping::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setLODMeshMapping::lod"],[0,1,1,"_CPPv4N3dna16DefinitionWriter31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshBlendShapeChannelMapping"],[0,2,1,"_CPPv4N3dna16DefinitionWriter31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshBlendShapeChannelMapping::blendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna16DefinitionWriter31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshBlendShapeChannelMapping::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshBlendShapeChannelMapping::meshIndex"],[0,1,1,"_CPPv4N3dna16DefinitionWriter14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshIndices"],[0,2,1,"_CPPv4N3dna16DefinitionWriter14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshIndices::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshIndices::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::DefinitionWriter::setMeshIndices::meshIndices"],[0,1,1,"_CPPv4N3dna16DefinitionWriter11setMeshNameENSt8uint16_tEPKc","dna::DefinitionWriter::setMeshName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter11setMeshNameENSt8uint16_tEPKc","dna::DefinitionWriter::setMeshName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter11setMeshNameENSt8uint16_tEPKc","dna::DefinitionWriter::setMeshName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriter24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointRotations"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointRotations::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointRotations::rotations"],[0,1,1,"_CPPv4N3dna16DefinitionWriter27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointTranslations"],[0,2,1,"_CPPv4N3dna16DefinitionWriter27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointTranslations::count"],[0,2,1,"_CPPv4N3dna16DefinitionWriter27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::DefinitionWriter::setNeutralJointTranslations::translations"],[0,1,1,"_CPPv4N3dna16DefinitionWriter17setRawControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setRawControlName"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setRawControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setRawControlName::index"],[0,2,1,"_CPPv4N3dna16DefinitionWriter17setRawControlNameENSt8uint16_tEPKc","dna::DefinitionWriter::setRawControlName::name"],[0,1,1,"_CPPv4N3dna16DefinitionWriterD0Ev","dna::DefinitionWriter::~DefinitionWriter"],[0,0,1,"_CPPv4N3dna16DescriptorReaderE","dna::DescriptorReader"],[0,1,1,"_CPPv4NK3dna16DescriptorReader6getAgeEv","dna::DescriptorReader::getAge"],[0,1,1,"_CPPv4NK3dna16DescriptorReader12getArchetypeEv","dna::DescriptorReader::getArchetype"],[0,1,1,"_CPPv4NK3dna16DescriptorReader19getCoordinateSystemEv","dna::DescriptorReader::getCoordinateSystem"],[0,1,1,"_CPPv4NK3dna16DescriptorReader15getDBComplexityEv","dna::DescriptorReader::getDBComplexity"],[0,1,1,"_CPPv4NK3dna16DescriptorReader11getDBMaxLODEv","dna::DescriptorReader::getDBMaxLOD"],[0,1,1,"_CPPv4NK3dna16DescriptorReader9getDBNameEv","dna::DescriptorReader::getDBName"],[0,1,1,"_CPPv4NK3dna16DescriptorReader9getGenderEv","dna::DescriptorReader::getGender"],[0,1,1,"_CPPv4NK3dna16DescriptorReader11getLODCountEv","dna::DescriptorReader::getLODCount"],[0,1,1,"_CPPv4NK3dna16DescriptorReader16getMetaDataCountEv","dna::DescriptorReader::getMetaDataCount"],[0,1,1,"_CPPv4NK3dna16DescriptorReader14getMetaDataKeyENSt8uint32_tE","dna::DescriptorReader::getMetaDataKey"],[0,2,1,"_CPPv4NK3dna16DescriptorReader14getMetaDataKeyENSt8uint32_tE","dna::DescriptorReader::getMetaDataKey::index"],[0,1,1,"_CPPv4NK3dna16DescriptorReader16getMetaDataValueEPKc","dna::DescriptorReader::getMetaDataValue"],[0,2,1,"_CPPv4NK3dna16DescriptorReader16getMetaDataValueEPKc","dna::DescriptorReader::getMetaDataValue::key"],[0,1,1,"_CPPv4NK3dna16DescriptorReader7getNameEv","dna::DescriptorReader::getName"],[0,1,1,"_CPPv4NK3dna16DescriptorReader15getRotationUnitEv","dna::DescriptorReader::getRotationUnit"],[0,1,1,"_CPPv4NK3dna16DescriptorReader18getTranslationUnitEv","dna::DescriptorReader::getTranslationUnit"],[0,1,1,"_CPPv4N3dna16DescriptorReaderD0Ev","dna::DescriptorReader::~DescriptorReader"],[0,0,1,"_CPPv4N3dna16DescriptorWriterE","dna::DescriptorWriter"],[0,1,1,"_CPPv4N3dna16DescriptorWriter13clearMetaDataEv","dna::DescriptorWriter::clearMetaData"],[0,1,1,"_CPPv4N3dna16DescriptorWriter6setAgeENSt8uint16_tE","dna::DescriptorWriter::setAge"],[0,2,1,"_CPPv4N3dna16DescriptorWriter6setAgeENSt8uint16_tE","dna::DescriptorWriter::setAge::age"],[0,1,1,"_CPPv4N3dna16DescriptorWriter12setArchetypeE9Archetype","dna::DescriptorWriter::setArchetype"],[0,2,1,"_CPPv4N3dna16DescriptorWriter12setArchetypeE9Archetype","dna::DescriptorWriter::setArchetype::archetype"],[0,1,1,"_CPPv4N3dna16DescriptorWriter19setCoordinateSystemE16CoordinateSystem","dna::DescriptorWriter::setCoordinateSystem"],[0,2,1,"_CPPv4N3dna16DescriptorWriter19setCoordinateSystemE16CoordinateSystem","dna::DescriptorWriter::setCoordinateSystem::system"],[0,1,1,"_CPPv4N3dna16DescriptorWriter15setDBComplexityEPKc","dna::DescriptorWriter::setDBComplexity"],[0,2,1,"_CPPv4N3dna16DescriptorWriter15setDBComplexityEPKc","dna::DescriptorWriter::setDBComplexity::name"],[0,1,1,"_CPPv4N3dna16DescriptorWriter11setDBMaxLODENSt8uint16_tE","dna::DescriptorWriter::setDBMaxLOD"],[0,2,1,"_CPPv4N3dna16DescriptorWriter11setDBMaxLODENSt8uint16_tE","dna::DescriptorWriter::setDBMaxLOD::lod"],[0,1,1,"_CPPv4N3dna16DescriptorWriter9setDBNameEPKc","dna::DescriptorWriter::setDBName"],[0,2,1,"_CPPv4N3dna16DescriptorWriter9setDBNameEPKc","dna::DescriptorWriter::setDBName::name"],[0,1,1,"_CPPv4N3dna16DescriptorWriter9setGenderE6Gender","dna::DescriptorWriter::setGender"],[0,2,1,"_CPPv4N3dna16DescriptorWriter9setGenderE6Gender","dna::DescriptorWriter::setGender::gender"],[0,1,1,"_CPPv4N3dna16DescriptorWriter11setLODCountENSt8uint16_tE","dna::DescriptorWriter::setLODCount"],[0,2,1,"_CPPv4N3dna16DescriptorWriter11setLODCountENSt8uint16_tE","dna::DescriptorWriter::setLODCount::lodCount"],[0,1,1,"_CPPv4N3dna16DescriptorWriter11setMetaDataEPKcPKc","dna::DescriptorWriter::setMetaData"],[0,2,1,"_CPPv4N3dna16DescriptorWriter11setMetaDataEPKcPKc","dna::DescriptorWriter::setMetaData::key"],[0,2,1,"_CPPv4N3dna16DescriptorWriter11setMetaDataEPKcPKc","dna::DescriptorWriter::setMetaData::value"],[0,1,1,"_CPPv4N3dna16DescriptorWriter7setNameEPKc","dna::DescriptorWriter::setName"],[0,2,1,"_CPPv4N3dna16DescriptorWriter7setNameEPKc","dna::DescriptorWriter::setName::name"],[0,1,1,"_CPPv4N3dna16DescriptorWriter15setRotationUnitE12RotationUnit","dna::DescriptorWriter::setRotationUnit"],[0,2,1,"_CPPv4N3dna16DescriptorWriter15setRotationUnitE12RotationUnit","dna::DescriptorWriter::setRotationUnit::unit"],[0,1,1,"_CPPv4N3dna16DescriptorWriter18setTranslationUnitE15TranslationUnit","dna::DescriptorWriter::setTranslationUnit"],[0,2,1,"_CPPv4N3dna16DescriptorWriter18setTranslationUnitE15TranslationUnit","dna::DescriptorWriter::setTranslationUnit::unit"],[0,1,1,"_CPPv4N3dna16DescriptorWriterD0Ev","dna::DescriptorWriter::~DescriptorWriter"],[0,0,1,"_CPPv4N3dna20FilteredInputArchiveE","dna::FilteredInputArchive"],[0,4,1,"_CPPv4N3dna20FilteredInputArchive11BaseArchiveE","dna::FilteredInputArchive::BaseArchive"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayer14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayer14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::layer_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::layer_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayer14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::lods_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::maxLOD_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayer14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::memRes_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::memRes_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::minLOD_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayer14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::stream_"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive20FilteredInputArchiveEP15BoundedIOStream9DataLayerNSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::FilteredInputArchive::FilteredInputArchive::stream_"],[0,3,1,"_CPPv4N3dna20FilteredInputArchive12layerBitmaskE","dna::FilteredInputArchive::layerBitmask"],[0,3,1,"_CPPv4N3dna20FilteredInputArchive13lodConstraintE","dna::FilteredInputArchive::lodConstraint"],[0,3,1,"_CPPv4N3dna20FilteredInputArchive6memResE","dna::FilteredInputArchive::memRes"],[0,1,1,"_CPPv4IDpEN3dna20FilteredInputArchive7processEvDpRR4Args","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER11RawBehavior","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER11RawGeometry","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER13RawDefinition","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER13RawDescriptor","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER15RawAnimatedMaps","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER20RawVertexSkinWeights","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER21RawBlendShapeChannels","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER7RawMesh","dna::FilteredInputArchive::process"],[0,1,1,"_CPPv4N3dna20FilteredInputArchive7processER9RawJoints","dna::FilteredInputArchive::process"],[0,5,1,"_CPPv4IDpEN3dna20FilteredInputArchive7processEvDpRR4Args","dna::FilteredInputArchive::process::Args"],[0,2,1,"_CPPv4IDpEN3dna20FilteredInputArchive7processEvDpRR4Args","dna::FilteredInputArchive::process::args"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER11RawBehavior","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER11RawGeometry","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER13RawDefinition","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER13RawDescriptor","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER15RawAnimatedMaps","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER20RawVertexSkinWeights","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER21RawBlendShapeChannels","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER7RawMesh","dna::FilteredInputArchive::process::dest"],[0,2,1,"_CPPv4N3dna20FilteredInputArchive7processER9RawJoints","dna::FilteredInputArchive::process::dest"],[0,1,1,"_CPPv4I0EN3dna20FilteredInputArchive13processSubsetEvR10TContainerNSt6size_tENSt6size_tE","dna::FilteredInputArchive::processSubset"],[0,5,1,"_CPPv4I0EN3dna20FilteredInputArchive13processSubsetEvR10TContainerNSt6size_tENSt6size_tE","dna::FilteredInputArchive::processSubset::TContainer"],[0,2,1,"_CPPv4I0EN3dna20FilteredInputArchive13processSubsetEvR10TContainerNSt6size_tENSt6size_tE","dna::FilteredInputArchive::processSubset::dest"],[0,2,1,"_CPPv4I0EN3dna20FilteredInputArchive13processSubsetEvR10TContainerNSt6size_tENSt6size_tE","dna::FilteredInputArchive::processSubset::offset"],[0,2,1,"_CPPv4I0EN3dna20FilteredInputArchive13processSubsetEvR10TContainerNSt6size_tENSt6size_tE","dna::FilteredInputArchive::processSubset::size"],[0,3,1,"_CPPv4N3dna20FilteredInputArchive6streamE","dna::FilteredInputArchive::stream"],[0,3,1,"_CPPv4N3dna20FilteredInputArchive21unconstrainedLODCountE","dna::FilteredInputArchive::unconstrainedLODCount"],[0,0,1,"_CPPv4N3dna14GeometryReaderE","dna::GeometryReader"],[0,1,1,"_CPPv4NK3dna14GeometryReader25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeChannelIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeChannelIndex::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeChannelIndex::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetCountENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetCountENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getBlendShapeTargetDelta"],[0,2,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getBlendShapeTargetDelta::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getBlendShapeTargetDelta::deltaIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getBlendShapeTargetDelta::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaCount::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaXs"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaXs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaXs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaYs"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaYs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaYs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaZs"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaZs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetDeltaZs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetVertexIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::GeometryReader::getBlendShapeTargetVertexIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader12getFaceCountENSt8uint16_tE","dna::GeometryReader::getFaceCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader12getFaceCountENSt8uint16_tE","dna::GeometryReader::getFaceCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getFaceVertexLayoutIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getFaceVertexLayoutIndices::faceIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader28getMaximumInfluencePerVertexENSt8uint16_tE","dna::GeometryReader::getMaximumInfluencePerVertex"],[0,2,1,"_CPPv4NK3dna14GeometryReader28getMaximumInfluencePerVertexENSt8uint16_tE","dna::GeometryReader::getMaximumInfluencePerVertex::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader19getSkinWeightsCountENSt8uint16_tE","dna::GeometryReader::getSkinWeightsCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader19getSkinWeightsCountENSt8uint16_tE","dna::GeometryReader::getSkinWeightsCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsJointIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsJointIndices::meshIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsJointIndices::vertexIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsValues"],[0,2,1,"_CPPv4NK3dna14GeometryReader20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsValues::meshIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getSkinWeightsValues::vertexIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexLayout"],[0,2,1,"_CPPv4NK3dna14GeometryReader15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexLayout::layoutIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexLayout::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader20getVertexLayoutCountENSt8uint16_tE","dna::GeometryReader::getVertexLayoutCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader20getVertexLayoutCountENSt8uint16_tE","dna::GeometryReader::getVertexLayoutCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader28getVertexLayoutNormalIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutNormalIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader28getVertexLayoutNormalIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutNormalIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader30getVertexLayoutPositionIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutPositionIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader30getVertexLayoutPositionIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutPositionIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutTextureCoordinateIndices"],[0,2,1,"_CPPv4NK3dna14GeometryReader39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dna::GeometryReader::getVertexLayoutTextureCoordinateIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexNormal"],[0,2,1,"_CPPv4NK3dna14GeometryReader15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexNormal::meshIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexNormal::normalIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader20getVertexNormalCountENSt8uint16_tE","dna::GeometryReader::getVertexNormalCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader20getVertexNormalCountENSt8uint16_tE","dna::GeometryReader::getVertexNormalCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalXsENSt8uint16_tE","dna::GeometryReader::getVertexNormalXs"],[0,2,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalXsENSt8uint16_tE","dna::GeometryReader::getVertexNormalXs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalYsENSt8uint16_tE","dna::GeometryReader::getVertexNormalYs"],[0,2,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalYsENSt8uint16_tE","dna::GeometryReader::getVertexNormalYs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalZsENSt8uint16_tE","dna::GeometryReader::getVertexNormalZs"],[0,2,1,"_CPPv4NK3dna14GeometryReader17getVertexNormalZsENSt8uint16_tE","dna::GeometryReader::getVertexNormalZs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexPosition"],[0,2,1,"_CPPv4NK3dna14GeometryReader17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexPosition::meshIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexPosition::vertexIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader22getVertexPositionCountENSt8uint16_tE","dna::GeometryReader::getVertexPositionCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader22getVertexPositionCountENSt8uint16_tE","dna::GeometryReader::getVertexPositionCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionXsENSt8uint16_tE","dna::GeometryReader::getVertexPositionXs"],[0,2,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionXsENSt8uint16_tE","dna::GeometryReader::getVertexPositionXs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionYsENSt8uint16_tE","dna::GeometryReader::getVertexPositionYs"],[0,2,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionYsENSt8uint16_tE","dna::GeometryReader::getVertexPositionYs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionZsENSt8uint16_tE","dna::GeometryReader::getVertexPositionZs"],[0,2,1,"_CPPv4NK3dna14GeometryReader19getVertexPositionZsENSt8uint16_tE","dna::GeometryReader::getVertexPositionZs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexTextureCoordinate"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexTextureCoordinate::meshIndex"],[0,2,1,"_CPPv4NK3dna14GeometryReader26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::GeometryReader::getVertexTextureCoordinate::textureCoordinateIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader31getVertexTextureCoordinateCountENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateCount"],[0,2,1,"_CPPv4NK3dna14GeometryReader31getVertexTextureCoordinateCountENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateCount::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader28getVertexTextureCoordinateUsENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateUs"],[0,2,1,"_CPPv4NK3dna14GeometryReader28getVertexTextureCoordinateUsENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateUs::meshIndex"],[0,1,1,"_CPPv4NK3dna14GeometryReader28getVertexTextureCoordinateVsENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateVs"],[0,2,1,"_CPPv4NK3dna14GeometryReader28getVertexTextureCoordinateVsENSt8uint16_tE","dna::GeometryReader::getVertexTextureCoordinateVs::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryReaderD0Ev","dna::GeometryReader::~GeometryReader"],[0,0,1,"_CPPv4N3dna14GeometryWriterE","dna::GeometryWriter"],[0,1,1,"_CPPv4N3dna14GeometryWriter22clearBlendShapeTargetsENSt8uint16_tE","dna::GeometryWriter::clearBlendShapeTargets"],[0,2,1,"_CPPv4N3dna14GeometryWriter22clearBlendShapeTargetsENSt8uint16_tE","dna::GeometryWriter::clearBlendShapeTargets::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter28clearFaceVertexLayoutIndicesENSt8uint16_tE","dna::GeometryWriter::clearFaceVertexLayoutIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter28clearFaceVertexLayoutIndicesENSt8uint16_tE","dna::GeometryWriter::clearFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter11clearMeshesEv","dna::GeometryWriter::clearMeshes"],[0,1,1,"_CPPv4N3dna14GeometryWriter16clearSkinWeightsENSt8uint16_tE","dna::GeometryWriter::clearSkinWeights"],[0,2,1,"_CPPv4N3dna14GeometryWriter16clearSkinWeightsENSt8uint16_tE","dna::GeometryWriter::clearSkinWeights::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter10deleteMeshENSt8uint16_tE","dna::GeometryWriter::deleteMesh"],[0,2,1,"_CPPv4N3dna14GeometryWriter10deleteMeshENSt8uint16_tE","dna::GeometryWriter::deleteMesh::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setBlendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setBlendShapeChannelIndex::blendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setBlendShapeChannelIndex::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setBlendShapeChannelIndex::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetDeltas"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetDeltas::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetDeltas::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetDeltas::deltas"],[0,2,1,"_CPPv4N3dna14GeometryWriter25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetDeltas::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetVertexIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetVertexIndices::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetVertexIndices::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setBlendShapeTargetVertexIndices::vertexIndices"],[0,1,1,"_CPPv4N3dna14GeometryWriter26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setFaceVertexLayoutIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setFaceVertexLayoutIndices::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setFaceVertexLayoutIndices::faceIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setFaceVertexLayoutIndices::layoutIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::GeometryWriter::setFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setMaximumInfluencePerVertex"],[0,2,1,"_CPPv4N3dna14GeometryWriter28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setMaximumInfluencePerVertex::maxInfluenceCount"],[0,2,1,"_CPPv4N3dna14GeometryWriter28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setMaximumInfluencePerVertex::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setSkinWeightsJointIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setSkinWeightsJointIndices::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setSkinWeightsJointIndices::jointIndices"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setSkinWeightsJointIndices::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::GeometryWriter::setSkinWeightsJointIndices::vertexIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::GeometryWriter::setSkinWeightsValues"],[0,2,1,"_CPPv4N3dna14GeometryWriter20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::GeometryWriter::setSkinWeightsValues::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::GeometryWriter::setSkinWeightsValues::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::GeometryWriter::setSkinWeightsValues::vertexIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::GeometryWriter::setSkinWeightsValues::weights"],[0,1,1,"_CPPv4N3dna14GeometryWriter16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::GeometryWriter::setVertexLayouts"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::GeometryWriter::setVertexLayouts::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::GeometryWriter::setVertexLayouts::layouts"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::GeometryWriter::setVertexLayouts::meshIndex"],[0,1,1,"_CPPv4N3dna14GeometryWriter16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::GeometryWriter::setVertexNormals"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::GeometryWriter::setVertexNormals::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::GeometryWriter::setVertexNormals::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::GeometryWriter::setVertexNormals::normals"],[0,1,1,"_CPPv4N3dna14GeometryWriter18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::GeometryWriter::setVertexPositions"],[0,2,1,"_CPPv4N3dna14GeometryWriter18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::GeometryWriter::setVertexPositions::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::GeometryWriter::setVertexPositions::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::GeometryWriter::setVertexPositions::positions"],[0,1,1,"_CPPv4N3dna14GeometryWriter27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::GeometryWriter::setVertexTextureCoordinates"],[0,2,1,"_CPPv4N3dna14GeometryWriter27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::GeometryWriter::setVertexTextureCoordinates::count"],[0,2,1,"_CPPv4N3dna14GeometryWriter27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::GeometryWriter::setVertexTextureCoordinates::meshIndex"],[0,2,1,"_CPPv4N3dna14GeometryWriter27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::GeometryWriter::setVertexTextureCoordinates::textureCoordinates"],[0,1,1,"_CPPv4N3dna14GeometryWriterD0Ev","dna::GeometryWriter::~GeometryWriter"],[0,0,1,"_CPPv4N3dna11JointFilterE","dna::JointFilter"],[0,1,1,"_CPPv4N3dna11JointFilter11JointFilterEP14MemoryResource","dna::JointFilter::JointFilter"],[0,2,1,"_CPPv4N3dna11JointFilter11JointFilterEP14MemoryResource","dna::JointFilter::JointFilter::memRes_"],[0,6,1,"_CPPv4N3dna11JointFilter6OptionE","dna::JointFilter::Option"],[0,7,1,"_CPPv4N3dna11JointFilter6Option3AllE","dna::JointFilter::Option::All"],[0,7,1,"_CPPv4N3dna11JointFilter6Option13AnimationOnlyE","dna::JointFilter::Option::AnimationOnly"],[0,1,1,"_CPPv4N3dna11JointFilter5applyER11RawBehavior","dna::JointFilter::apply"],[0,1,1,"_CPPv4N3dna11JointFilter5applyER13RawDefinition","dna::JointFilter::apply"],[0,1,1,"_CPPv4N3dna11JointFilter5applyER20RawVertexSkinWeights","dna::JointFilter::apply"],[0,2,1,"_CPPv4N3dna11JointFilter5applyER11RawBehavior","dna::JointFilter::apply::dest"],[0,2,1,"_CPPv4N3dna11JointFilter5applyER13RawDefinition","dna::JointFilter::apply::dest"],[0,2,1,"_CPPv4N3dna11JointFilter5applyER20RawVertexSkinWeights","dna::JointFilter::apply::dest"],[0,1,1,"_CPPv4N3dna11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dna::JointFilter::configure"],[0,2,1,"_CPPv4N3dna11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dna::JointFilter::configure::allowedJointIndices"],[0,2,1,"_CPPv4N3dna11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dna::JointFilter::configure::jointCount"],[0,2,1,"_CPPv4N3dna11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dna::JointFilter::configure::option_"],[0,1,1,"_CPPv4NK3dna11JointFilter16maxRemappedIndexEv","dna::JointFilter::maxRemappedIndex"],[0,3,1,"_CPPv4N3dna11JointFilter6memResE","dna::JointFilter::memRes"],[0,3,1,"_CPPv4N3dna11JointFilter6optionE","dna::JointFilter::option"],[0,1,1,"_CPPv4NK3dna11JointFilter6passesENSt8uint16_tE","dna::JointFilter::passes"],[0,2,1,"_CPPv4NK3dna11JointFilter6passesENSt8uint16_tE","dna::JointFilter::passes::index"],[0,3,1,"_CPPv4N3dna11JointFilter14passingIndicesE","dna::JointFilter::passingIndices"],[0,1,1,"_CPPv4NK3dna11JointFilter8remappedENSt8uint16_tE","dna::JointFilter::remapped"],[0,2,1,"_CPPv4NK3dna11JointFilter8remappedENSt8uint16_tE","dna::JointFilter::remapped::oldIndex"],[0,3,1,"_CPPv4N3dna11JointFilter15remappedIndicesE","dna::JointFilter::remappedIndices"],[0,3,1,"_CPPv4N3dna11JointFilter14rootJointIndexE","dna::JointFilter::rootJointIndex"],[0,0,1,"_CPPv4N3dna13LODConstraintE","dna::LODConstraint"],[0,1,1,"_CPPv4N3dna13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::LODConstraint::LODConstraint"],[0,1,1,"_CPPv4N3dna13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::LODConstraint::LODConstraint"],[0,2,1,"_CPPv4N3dna13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::LODConstraint::LODConstraint::lods"],[0,2,1,"_CPPv4N3dna13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::LODConstraint::LODConstraint::maxLOD"],[0,2,1,"_CPPv4N3dna13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dna::LODConstraint::LODConstraint::memRes"],[0,2,1,"_CPPv4N3dna13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::LODConstraint::LODConstraint::memRes"],[0,2,1,"_CPPv4N3dna13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dna::LODConstraint::LODConstraint::minLOD"],[0,1,1,"_CPPv4NK3dna13LODConstraint7applyToER6VectorINSt8uint16_tEE","dna::LODConstraint::applyTo"],[0,1,1,"_CPPv4NK3dna13LODConstraint7applyToER8DynArrayINSt8uint16_tEE","dna::LODConstraint::applyTo"],[0,2,1,"_CPPv4NK3dna13LODConstraint7applyToER6VectorINSt8uint16_tEE","dna::LODConstraint::applyTo::unconstrainedLODs"],[0,2,1,"_CPPv4NK3dna13LODConstraint7applyToER8DynArrayINSt8uint16_tEE","dna::LODConstraint::applyTo::unconstrainedLODs"],[0,1,1,"_CPPv4N3dna13LODConstraint7clampToENSt8uint16_tE","dna::LODConstraint::clampTo"],[0,2,1,"_CPPv4N3dna13LODConstraint7clampToENSt8uint16_tE","dna::LODConstraint::clampTo::lodCount"],[0,1,1,"_CPPv4NK3dna13LODConstraint11getLODCountEv","dna::LODConstraint::getLODCount"],[0,1,1,"_CPPv4NK3dna13LODConstraint9getMaxLODEv","dna::LODConstraint::getMaxLOD"],[0,1,1,"_CPPv4NK3dna13LODConstraint9getMinLODEv","dna::LODConstraint::getMinLOD"],[0,1,1,"_CPPv4NK3dna13LODConstraint11hasImpactOnENSt8uint16_tE","dna::LODConstraint::hasImpactOn"],[0,2,1,"_CPPv4NK3dna13LODConstraint11hasImpactOnENSt8uint16_tE","dna::LODConstraint::hasImpactOn::lodCount"],[0,3,1,"_CPPv4N3dna13LODConstraint4lodsE","dna::LODConstraint::lods"],[0,0,1,"_CPPv4N3dna10LODMappingE","dna::LODMapping"],[0,1,1,"_CPPv4N3dna10LODMapping10LODMappingEP14MemoryResource","dna::LODMapping::LODMapping"],[0,2,1,"_CPPv4N3dna10LODMapping10LODMappingEP14MemoryResource","dna::LODMapping::LODMapping::memRes_"],[0,1,1,"_CPPv4N3dna10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::LODMapping::addIndices"],[0,2,1,"_CPPv4N3dna10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::LODMapping::addIndices::count"],[0,2,1,"_CPPv4N3dna10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::LODMapping::addIndices::index"],[0,2,1,"_CPPv4N3dna10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::LODMapping::addIndices::source"],[0,1,1,"_CPPv4N3dna10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dna::LODMapping::associateLODWithIndices"],[0,2,1,"_CPPv4N3dna10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dna::LODMapping::associateLODWithIndices::index"],[0,2,1,"_CPPv4N3dna10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dna::LODMapping::associateLODWithIndices::lod"],[0,1,1,"_CPPv4N3dna10LODMapping14cleanupIndicesEv","dna::LODMapping::cleanupIndices"],[0,1,1,"_CPPv4N3dna10LODMapping12clearIndicesENSt8uint16_tE","dna::LODMapping::clearIndices"],[0,2,1,"_CPPv4N3dna10LODMapping12clearIndicesENSt8uint16_tE","dna::LODMapping::clearIndices::index"],[0,1,1,"_CPPv4N3dna10LODMapping11discardLODsERK13LODConstraint","dna::LODMapping::discardLODs"],[0,2,1,"_CPPv4N3dna10LODMapping11discardLODsERK13LODConstraint","dna::LODMapping::discardLODs::lodConstraint"],[0,1,1,"_CPPv4N3dna10LODMapping13filterIndicesENSt8functionIFbNSt8uint16_tEEEE","dna::LODMapping::filterIndices"],[0,2,1,"_CPPv4N3dna10LODMapping13filterIndicesENSt8functionIFbNSt8uint16_tEEEE","dna::LODMapping::filterIndices::filterer"],[0,1,1,"_CPPv4NK3dna10LODMapping26getCombinedDistinctIndicesEP14MemoryResource","dna::LODMapping::getCombinedDistinctIndices"],[0,2,1,"_CPPv4NK3dna10LODMapping26getCombinedDistinctIndicesEP14MemoryResource","dna::LODMapping::getCombinedDistinctIndices::memRes"],[0,1,1,"_CPPv4NK3dna10LODMapping17getIndexListCountEv","dna::LODMapping::getIndexListCount"],[0,1,1,"_CPPv4NK3dna10LODMapping10getIndicesENSt8uint16_tE","dna::LODMapping::getIndices"],[0,2,1,"_CPPv4NK3dna10LODMapping10getIndicesENSt8uint16_tE","dna::LODMapping::getIndices::lod"],[0,1,1,"_CPPv4NK3dna10LODMapping11getLODCountEv","dna::LODMapping::getLODCount"],[0,3,1,"_CPPv4N3dna10LODMapping7indicesE","dna::LODMapping::indices"],[0,3,1,"_CPPv4N3dna10LODMapping4lodsE","dna::LODMapping::lods"],[0,1,1,"_CPPv4N3dna10LODMapping10mapIndicesENSt8functionIFNSt8uint16_tENSt8uint16_tEEEE","dna::LODMapping::mapIndices"],[0,2,1,"_CPPv4N3dna10LODMapping10mapIndicesENSt8functionIFNSt8uint16_tENSt8uint16_tEEEE","dna::LODMapping::mapIndices::mapper"],[0,1,1,"_CPPv4N3dna10LODMapping5resetEv","dna::LODMapping::reset"],[0,1,1,"_CPPv4N3dna10LODMapping12resetIndicesEv","dna::LODMapping::resetIndices"],[0,1,1,"_CPPv4N3dna10LODMapping9resetLODsEv","dna::LODMapping::resetLODs"],[0,1,1,"_CPPv4N3dna10LODMapping11setLODCountENSt8uint16_tE","dna::LODMapping::setLODCount"],[0,2,1,"_CPPv4N3dna10LODMapping11setLODCountENSt8uint16_tE","dna::LODMapping::setLODCount::lodCount"],[0,0,1,"_CPPv4N3dna10MeshFilterE","dna::MeshFilter"],[0,1,1,"_CPPv4N3dna10MeshFilter10MeshFilterEP14MemoryResource","dna::MeshFilter::MeshFilter"],[0,2,1,"_CPPv4N3dna10MeshFilter10MeshFilterEP14MemoryResource","dna::MeshFilter::MeshFilter::memRes_"],[0,1,1,"_CPPv4N3dna10MeshFilter5applyER13RawDefinition","dna::MeshFilter::apply"],[0,2,1,"_CPPv4N3dna10MeshFilter5applyER13RawDefinition","dna::MeshFilter::apply::dest"],[0,1,1,"_CPPv4N3dna10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::MeshFilter::configure"],[0,2,1,"_CPPv4N3dna10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::MeshFilter::configure::allowedMeshIndices"],[0,2,1,"_CPPv4N3dna10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dna::MeshFilter::configure::meshCount"],[0,3,1,"_CPPv4N3dna10MeshFilter6memResE","dna::MeshFilter::memRes"],[0,1,1,"_CPPv4NK3dna10MeshFilter6passesENSt8uint16_tE","dna::MeshFilter::passes"],[0,2,1,"_CPPv4NK3dna10MeshFilter6passesENSt8uint16_tE","dna::MeshFilter::passes::index"],[0,3,1,"_CPPv4N3dna10MeshFilter14passingIndicesE","dna::MeshFilter::passingIndices"],[0,3,1,"_CPPv4N3dna10MeshFilter15remappedIndicesE","dna::MeshFilter::remappedIndices"],[0,0,1,"_CPPv4N3dna6ReaderE","dna::Reader"],[0,1,1,"_CPPv4N3dna6Reader6unloadE9DataLayer","dna::Reader::unload"],[0,2,1,"_CPPv4N3dna6Reader6unloadE9DataLayer","dna::Reader::unload::layer"],[0,1,1,"_CPPv4N3dna6ReaderD0Ev","dna::Reader::~Reader"],[0,0,1,"_CPPv4I0EN3dna10ReaderImplE","dna::ReaderImpl"],[0,1,1,"_CPPv4N3dna10ReaderImpl10ReaderImplEP14MemoryResource","dna::ReaderImpl::ReaderImpl"],[0,2,1,"_CPPv4N3dna10ReaderImpl10ReaderImplEP14MemoryResource","dna::ReaderImpl::ReaderImpl::memRes_"],[0,5,1,"_CPPv4I0EN3dna10ReaderImplE","dna::ReaderImpl::TReaderBase"],[0,3,1,"_CPPv4N3dna10ReaderImpl5cacheE","dna::ReaderImpl::cache"],[0,1,1,"_CPPv4NK3dna10ReaderImpl6getAgeEv","dna::ReaderImpl::getAge"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getAnimatedMapCountEv","dna::ReaderImpl::getAnimatedMapCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl23getAnimatedMapCutValuesEv","dna::ReaderImpl::getAnimatedMapCutValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getAnimatedMapFromValuesEv","dna::ReaderImpl::getAnimatedMapFromValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getAnimatedMapIndexListCountEv","dna::ReaderImpl::getAnimatedMapIndexListCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl27getAnimatedMapIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getAnimatedMapIndicesForLOD"],[0,2,1,"_CPPv4NK3dna10ReaderImpl27getAnimatedMapIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getAnimatedMapIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getAnimatedMapInputIndicesEv","dna::ReaderImpl::getAnimatedMapInputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getAnimatedMapLODsEv","dna::ReaderImpl::getAnimatedMapLODs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getAnimatedMapNameENSt8uint16_tE","dna::ReaderImpl::getAnimatedMapName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl18getAnimatedMapNameENSt8uint16_tE","dna::ReaderImpl::getAnimatedMapName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl27getAnimatedMapOutputIndicesEv","dna::ReaderImpl::getAnimatedMapOutputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getAnimatedMapSlopeValuesEv","dna::ReaderImpl::getAnimatedMapSlopeValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl22getAnimatedMapToValuesEv","dna::ReaderImpl::getAnimatedMapToValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl12getArchetypeEv","dna::ReaderImpl::getArchetype"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getBlendShapeChannelCountEv","dna::ReaderImpl::getBlendShapeChannelCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelIndex::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelIndex::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl34getBlendShapeChannelIndexListCountEv","dna::ReaderImpl::getBlendShapeChannelIndexListCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelIndicesForLOD"],[0,2,1,"_CPPv4NK3dna10ReaderImpl33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl32getBlendShapeChannelInputIndicesEv","dna::ReaderImpl::getBlendShapeChannelInputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeChannelLODsEv","dna::ReaderImpl::getBlendShapeChannelLODs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeChannelNameENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeChannelNameENSt8uint16_tE","dna::ReaderImpl::getBlendShapeChannelName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl33getBlendShapeChannelOutputIndicesEv","dna::ReaderImpl::getBlendShapeChannelOutputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetCountENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetCountENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getBlendShapeTargetDelta"],[0,2,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getBlendShapeTargetDelta::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getBlendShapeTargetDelta::deltaIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getBlendShapeTargetDelta::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaCount::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaXs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaXs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaXs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaYs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaYs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaYs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaZs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaZs::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetDeltaZs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetVertexIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dna::ReaderImpl::getBlendShapeTargetVertexIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getCoordinateSystemEv","dna::ReaderImpl::getCoordinateSystem"],[0,1,1,"_CPPv4NK3dna10ReaderImpl15getDBComplexityEv","dna::ReaderImpl::getDBComplexity"],[0,1,1,"_CPPv4NK3dna10ReaderImpl11getDBMaxLODEv","dna::ReaderImpl::getDBMaxLOD"],[0,1,1,"_CPPv4NK3dna10ReaderImpl9getDBNameEv","dna::ReaderImpl::getDBName"],[0,1,1,"_CPPv4NK3dna10ReaderImpl12getFaceCountENSt8uint16_tE","dna::ReaderImpl::getFaceCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl12getFaceCountENSt8uint16_tE","dna::ReaderImpl::getFaceCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getFaceVertexLayoutIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getFaceVertexLayoutIndices::faceIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getGUIControlCountEv","dna::ReaderImpl::getGUIControlCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getGUIControlNameENSt8uint16_tE","dna::ReaderImpl::getGUIControlName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getGUIControlNameENSt8uint16_tE","dna::ReaderImpl::getGUIControlName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl20getGUIToRawCutValuesEv","dna::ReaderImpl::getGUIToRawCutValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl21getGUIToRawFromValuesEv","dna::ReaderImpl::getGUIToRawFromValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl23getGUIToRawInputIndicesEv","dna::ReaderImpl::getGUIToRawInputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl24getGUIToRawOutputIndicesEv","dna::ReaderImpl::getGUIToRawOutputIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl22getGUIToRawSlopeValuesEv","dna::ReaderImpl::getGUIToRawSlopeValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getGUIToRawToValuesEv","dna::ReaderImpl::getGUIToRawToValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl9getGenderEv","dna::ReaderImpl::getGender"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getJointColumnCountEv","dna::ReaderImpl::getJointColumnCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl13getJointCountEv","dna::ReaderImpl::getJointCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getJointGroupCountEv","dna::ReaderImpl::getJointGroupCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getJointGroupInputIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupInputIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl25getJointGroupInputIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupInputIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getJointGroupJointIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupJointIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl25getJointGroupJointIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupJointIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getJointGroupLODsENSt8uint16_tE","dna::ReaderImpl::getJointGroupLODs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getJointGroupLODsENSt8uint16_tE","dna::ReaderImpl::getJointGroupLODs::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getJointGroupOutputIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupOutputIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getJointGroupOutputIndicesENSt8uint16_tE","dna::ReaderImpl::getJointGroupOutputIndices::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getJointGroupValuesENSt8uint16_tE","dna::ReaderImpl::getJointGroupValues"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getJointGroupValuesENSt8uint16_tE","dna::ReaderImpl::getJointGroupValues::jointGroupIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl22getJointIndexListCountEv","dna::ReaderImpl::getJointIndexListCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl21getJointIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getJointIndicesForLOD"],[0,2,1,"_CPPv4NK3dna10ReaderImpl21getJointIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getJointIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl12getJointNameENSt8uint16_tE","dna::ReaderImpl::getJointName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl12getJointNameENSt8uint16_tE","dna::ReaderImpl::getJointName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getJointParentIndexENSt8uint16_tE","dna::ReaderImpl::getJointParentIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getJointParentIndexENSt8uint16_tE","dna::ReaderImpl::getJointParentIndex::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl16getJointRowCountEv","dna::ReaderImpl::getJointRowCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl32getJointVariableAttributeIndicesENSt8uint16_tE","dna::ReaderImpl::getJointVariableAttributeIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl32getJointVariableAttributeIndicesENSt8uint16_tE","dna::ReaderImpl::getJointVariableAttributeIndices::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl11getLODCountEv","dna::ReaderImpl::getLODCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getMaximumInfluencePerVertexENSt8uint16_tE","dna::ReaderImpl::getMaximumInfluencePerVertex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl28getMaximumInfluencePerVertexENSt8uint16_tE","dna::ReaderImpl::getMaximumInfluencePerVertex::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl31getMeshBlendShapeChannelMappingENSt8uint16_tE","dna::ReaderImpl::getMeshBlendShapeChannelMapping"],[0,2,1,"_CPPv4NK3dna10ReaderImpl31getMeshBlendShapeChannelMappingENSt8uint16_tE","dna::ReaderImpl::getMeshBlendShapeChannelMapping::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl36getMeshBlendShapeChannelMappingCountEv","dna::ReaderImpl::getMeshBlendShapeChannelMappingCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getMeshBlendShapeChannelMappingIndicesForLOD"],[0,2,1,"_CPPv4NK3dna10ReaderImpl44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getMeshBlendShapeChannelMappingIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl12getMeshCountEv","dna::ReaderImpl::getMeshCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl21getMeshIndexListCountEv","dna::ReaderImpl::getMeshIndexListCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl20getMeshIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getMeshIndicesForLOD"],[0,2,1,"_CPPv4NK3dna10ReaderImpl20getMeshIndicesForLODENSt8uint16_tE","dna::ReaderImpl::getMeshIndicesForLOD::lod"],[0,1,1,"_CPPv4NK3dna10ReaderImpl11getMeshNameENSt8uint16_tE","dna::ReaderImpl::getMeshName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl11getMeshNameENSt8uint16_tE","dna::ReaderImpl::getMeshName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl16getMetaDataCountEv","dna::ReaderImpl::getMetaDataCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl14getMetaDataKeyENSt8uint32_tE","dna::ReaderImpl::getMetaDataKey"],[0,2,1,"_CPPv4NK3dna10ReaderImpl14getMetaDataKeyENSt8uint32_tE","dna::ReaderImpl::getMetaDataKey::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl16getMetaDataValueEPKc","dna::ReaderImpl::getMetaDataValue"],[0,2,1,"_CPPv4NK3dna10ReaderImpl16getMetaDataValueEPKc","dna::ReaderImpl::getMetaDataValue::key"],[0,1,1,"_CPPv4NK3dna10ReaderImpl7getNameEv","dna::ReaderImpl::getName"],[0,1,1,"_CPPv4NK3dna10ReaderImpl23getNeutralJointRotationENSt8uint16_tE","dna::ReaderImpl::getNeutralJointRotation"],[0,2,1,"_CPPv4NK3dna10ReaderImpl23getNeutralJointRotationENSt8uint16_tE","dna::ReaderImpl::getNeutralJointRotation::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getNeutralJointRotationXsEv","dna::ReaderImpl::getNeutralJointRotationXs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getNeutralJointRotationYsEv","dna::ReaderImpl::getNeutralJointRotationYs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl25getNeutralJointRotationZsEv","dna::ReaderImpl::getNeutralJointRotationZs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getNeutralJointTranslationENSt8uint16_tE","dna::ReaderImpl::getNeutralJointTranslation"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getNeutralJointTranslationENSt8uint16_tE","dna::ReaderImpl::getNeutralJointTranslation::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getNeutralJointTranslationXsEv","dna::ReaderImpl::getNeutralJointTranslationXs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getNeutralJointTranslationYsEv","dna::ReaderImpl::getNeutralJointTranslationYs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getNeutralJointTranslationZsEv","dna::ReaderImpl::getNeutralJointTranslationZs"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getPSDColumnIndicesEv","dna::ReaderImpl::getPSDColumnIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl11getPSDCountEv","dna::ReaderImpl::getPSDCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl16getPSDRowIndicesEv","dna::ReaderImpl::getPSDRowIndices"],[0,1,1,"_CPPv4NK3dna10ReaderImpl12getPSDValuesEv","dna::ReaderImpl::getPSDValues"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getRawControlCountEv","dna::ReaderImpl::getRawControlCount"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getRawControlNameENSt8uint16_tE","dna::ReaderImpl::getRawControlName"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getRawControlNameENSt8uint16_tE","dna::ReaderImpl::getRawControlName::index"],[0,1,1,"_CPPv4NK3dna10ReaderImpl15getRotationUnitEv","dna::ReaderImpl::getRotationUnit"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getSkinWeightsCountENSt8uint16_tE","dna::ReaderImpl::getSkinWeightsCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getSkinWeightsCountENSt8uint16_tE","dna::ReaderImpl::getSkinWeightsCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsJointIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsJointIndices::meshIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsJointIndices::vertexIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsValues"],[0,2,1,"_CPPv4NK3dna10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsValues::meshIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getSkinWeightsValues::vertexIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl18getTranslationUnitEv","dna::ReaderImpl::getTranslationUnit"],[0,1,1,"_CPPv4NK3dna10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexLayout"],[0,2,1,"_CPPv4NK3dna10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexLayout::layoutIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexLayout::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl20getVertexLayoutCountENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl20getVertexLayoutCountENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getVertexLayoutNormalIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutNormalIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl28getVertexLayoutNormalIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutNormalIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl30getVertexLayoutPositionIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutPositionIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl30getVertexLayoutPositionIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutPositionIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutTextureCoordinateIndices"],[0,2,1,"_CPPv4NK3dna10ReaderImpl39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dna::ReaderImpl::getVertexLayoutTextureCoordinateIndices::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexNormal"],[0,2,1,"_CPPv4NK3dna10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexNormal::meshIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexNormal::normalIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl20getVertexNormalCountENSt8uint16_tE","dna::ReaderImpl::getVertexNormalCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl20getVertexNormalCountENSt8uint16_tE","dna::ReaderImpl::getVertexNormalCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalXsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalXs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalXsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalXs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalYsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalYs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalYsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalYs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalZsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalZs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getVertexNormalZsENSt8uint16_tE","dna::ReaderImpl::getVertexNormalZs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexPosition"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexPosition::meshIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexPosition::vertexIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl22getVertexPositionCountENSt8uint16_tE","dna::ReaderImpl::getVertexPositionCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl22getVertexPositionCountENSt8uint16_tE","dna::ReaderImpl::getVertexPositionCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionXsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionXs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionXsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionXs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionYsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionYs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionYsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionYs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionZsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionZs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl19getVertexPositionZsENSt8uint16_tE","dna::ReaderImpl::getVertexPositionZs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexTextureCoordinate"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexTextureCoordinate::meshIndex"],[0,2,1,"_CPPv4NK3dna10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dna::ReaderImpl::getVertexTextureCoordinate::textureCoordinateIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl31getVertexTextureCoordinateCountENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateCount"],[0,2,1,"_CPPv4NK3dna10ReaderImpl31getVertexTextureCoordinateCountENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateCount::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getVertexTextureCoordinateUsENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateUs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl28getVertexTextureCoordinateUsENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateUs::meshIndex"],[0,1,1,"_CPPv4NK3dna10ReaderImpl28getVertexTextureCoordinateVsENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateVs"],[0,2,1,"_CPPv4NK3dna10ReaderImpl28getVertexTextureCoordinateVsENSt8uint16_tE","dna::ReaderImpl::getVertexTextureCoordinateVs::meshIndex"],[0,0,1,"_CPPv4N3dna12StreamReaderE","dna::StreamReader"],[0,3,1,"_CPPv4N3dna12StreamReader16InvalidDataErrorE","dna::StreamReader::InvalidDataError"],[0,3,1,"_CPPv4N3dna12StreamReader22SignatureMismatchErrorE","dna::StreamReader::SignatureMismatchError"],[0,3,1,"_CPPv4N3dna12StreamReader20VersionMismatchErrorE","dna::StreamReader::VersionMismatchError"],[0,1,1,"_CPPv4N3dna12StreamReader4readEv","dna::StreamReader::read"],[0,1,1,"_CPPv4N3dna12StreamReaderD0Ev","dna::StreamReader::~StreamReader"],[0,0,1,"_CPPv4N3dna12StreamWriterE","dna::StreamWriter"],[0,1,1,"_CPPv4N3dna12StreamWriter5writeEv","dna::StreamWriter::write"],[0,1,1,"_CPPv4N3dna12StreamWriterD0Ev","dna::StreamWriter::~StreamWriter"],[0,0,1,"_CPPv4N3dna10StringViewE","dna::StringView"],[0,1,1,"_CPPv4I0EN3dna10StringView9ArrayViewER9ArrayViewI1UE","dna::StringView::ArrayView"],[0,1,1,"_CPPv4I0EN3dna10StringView9ArrayViewERK9ArrayViewI1UE","dna::StringView::ArrayView"],[0,1,1,"_CPPv4I0EN3dna10StringView9ArrayViewERR9ArrayViewI1UE","dna::StringView::ArrayView"],[0,1,1,"_CPPv4I0_NSt9enable_ifIXntNSt19is_rvalue_referenceIRR1UE5valueEEiE4typeEEN3dna10StringView9ArrayViewERR1U","dna::StringView::ArrayView"],[0,1,1,"_CPPv4N3dna10StringView9ArrayViewE7pointer9size_type","dna::StringView::ArrayView"],[0,1,1,"_CPPv4N3dna10StringView9ArrayViewENSt9nullptr_tE9size_type","dna::StringView::ArrayView"],[0,1,1,"_CPPv4N3dna10StringView9ArrayViewERK9ArrayView","dna::StringView::ArrayView"],[0,1,1,"_CPPv4N3dna10StringView9ArrayViewERR9ArrayView","dna::StringView::ArrayView"],[0,1,1,"_CPPv4N3dna10StringView9ArrayViewEv","dna::StringView::ArrayView"],[0,5,1,"_CPPv4I0EN3dna10StringView9ArrayViewER9ArrayViewI1UE","dna::StringView::ArrayView::U"],[0,5,1,"_CPPv4I0EN3dna10StringView9ArrayViewERK9ArrayViewI1UE","dna::StringView::ArrayView::U"],[0,5,1,"_CPPv4I0EN3dna10StringView9ArrayViewERR9ArrayViewI1UE","dna::StringView::ArrayView::U"],[0,5,1,"_CPPv4I0_NSt9enable_ifIXntNSt19is_rvalue_referenceIRR1UE5valueEEiE4typeEEN3dna10StringView9ArrayViewERR1U","dna::StringView::ArrayView::U"],[0,2,1,"_CPPv4N3dna10StringView9ArrayViewE7pointer9size_type","dna::StringView::ArrayView::size"],[0,2,1,"_CPPv4I0EN3dna10StringView9ArrayViewER9ArrayViewI1UE","dna::StringView::ArrayView::src"],[0,2,1,"_CPPv4I0EN3dna10StringView9ArrayViewERK9ArrayViewI1UE","dna::StringView::ArrayView::src"],[0,2,1,"_CPPv4I0EN3dna10StringView9ArrayViewERR9ArrayViewI1UE","dna::StringView::ArrayView::src"],[0,2,1,"_CPPv4I0_NSt9enable_ifIXntNSt19is_rvalue_referenceIRR1UE5valueEEiE4typeEEN3dna10StringView9ArrayViewERR1U","dna::StringView::ArrayView::src"],[0,2,1,"_CPPv4N3dna10StringView9ArrayViewE7pointer9size_type","dna::StringView::ArrayView::src"],[0,4,1,"_CPPv4N3dna10StringView4BaseE","dna::StringView::Base"],[0,1,1,"_CPPv4NK3dna10StringView5c_strEv","dna::StringView::c_str"],[0,1,1,"_CPPv4NK3dna10StringView11dataOrEmptyEv","dna::StringView::dataOrEmpty"],[0,1,1,"_CPPv4NK3dna10StringViewcvPKcEv","dna::StringView::operator const char*"],[0,1,1,"_CPPv4NK3dna10StringViewmlEv","dna::StringView::operator*"],[0,0,1,"_CPPv4N3dna6WriterE","dna::Writer"],[0,1,1,"_CPPv4N3dna6Writer7setFromEPK6Reader9DataLayerP14MemoryResource","dna::Writer::setFrom"],[0,2,1,"_CPPv4N3dna6Writer7setFromEPK6Reader9DataLayerP14MemoryResource","dna::Writer::setFrom::layer"],[0,2,1,"_CPPv4N3dna6Writer7setFromEPK6Reader9DataLayerP14MemoryResource","dna::Writer::setFrom::memRes"],[0,2,1,"_CPPv4N3dna6Writer7setFromEPK6Reader9DataLayerP14MemoryResource","dna::Writer::setFrom::source"],[0,1,1,"_CPPv4N3dna6WriterD0Ev","dna::Writer::~Writer"],[0,0,1,"_CPPv4I0EN3dna10WriterImplE","dna::WriterImpl"],[0,5,1,"_CPPv4I0EN3dna10WriterImplE","dna::WriterImpl::TWriterBase"],[0,1,1,"_CPPv4N3dna10WriterImpl10WriterImplEP14MemoryResource","dna::WriterImpl::WriterImpl"],[0,2,1,"_CPPv4N3dna10WriterImpl10WriterImplEP14MemoryResource","dna::WriterImpl::WriterImpl::memRes_"],[0,1,1,"_CPPv4N3dna10WriterImpl23clearAnimatedMapIndicesEv","dna::WriterImpl::clearAnimatedMapIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl21clearAnimatedMapNamesEv","dna::WriterImpl::clearAnimatedMapNames"],[0,1,1,"_CPPv4N3dna10WriterImpl29clearBlendShapeChannelIndicesEv","dna::WriterImpl::clearBlendShapeChannelIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl27clearBlendShapeChannelNamesEv","dna::WriterImpl::clearBlendShapeChannelNames"],[0,1,1,"_CPPv4N3dna10WriterImpl22clearBlendShapeTargetsENSt8uint16_tE","dna::WriterImpl::clearBlendShapeTargets"],[0,2,1,"_CPPv4N3dna10WriterImpl22clearBlendShapeTargetsENSt8uint16_tE","dna::WriterImpl::clearBlendShapeTargets::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl28clearFaceVertexLayoutIndicesENSt8uint16_tE","dna::WriterImpl::clearFaceVertexLayoutIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl28clearFaceVertexLayoutIndicesENSt8uint16_tE","dna::WriterImpl::clearFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl20clearGUIControlNamesEv","dna::WriterImpl::clearGUIControlNames"],[0,1,1,"_CPPv4N3dna10WriterImpl16clearJointGroupsEv","dna::WriterImpl::clearJointGroups"],[0,1,1,"_CPPv4N3dna10WriterImpl17clearJointIndicesEv","dna::WriterImpl::clearJointIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl15clearJointNamesEv","dna::WriterImpl::clearJointNames"],[0,1,1,"_CPPv4N3dna10WriterImpl27clearLODAnimatedMapMappingsEv","dna::WriterImpl::clearLODAnimatedMapMappings"],[0,1,1,"_CPPv4N3dna10WriterImpl33clearLODBlendShapeChannelMappingsEv","dna::WriterImpl::clearLODBlendShapeChannelMappings"],[0,1,1,"_CPPv4N3dna10WriterImpl21clearLODJointMappingsEv","dna::WriterImpl::clearLODJointMappings"],[0,1,1,"_CPPv4N3dna10WriterImpl20clearLODMeshMappingsEv","dna::WriterImpl::clearLODMeshMappings"],[0,1,1,"_CPPv4N3dna10WriterImpl34clearMeshBlendShapeChannelMappingsEv","dna::WriterImpl::clearMeshBlendShapeChannelMappings"],[0,1,1,"_CPPv4N3dna10WriterImpl16clearMeshIndicesEv","dna::WriterImpl::clearMeshIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl14clearMeshNamesEv","dna::WriterImpl::clearMeshNames"],[0,1,1,"_CPPv4N3dna10WriterImpl11clearMeshesEv","dna::WriterImpl::clearMeshes"],[0,1,1,"_CPPv4N3dna10WriterImpl13clearMetaDataEv","dna::WriterImpl::clearMetaData"],[0,1,1,"_CPPv4N3dna10WriterImpl20clearRawControlNamesEv","dna::WriterImpl::clearRawControlNames"],[0,1,1,"_CPPv4N3dna10WriterImpl16clearSkinWeightsENSt8uint16_tE","dna::WriterImpl::clearSkinWeights"],[0,2,1,"_CPPv4N3dna10WriterImpl16clearSkinWeightsENSt8uint16_tE","dna::WriterImpl::clearSkinWeights::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl16deleteJointGroupENSt8uint16_tE","dna::WriterImpl::deleteJointGroup"],[0,2,1,"_CPPv4N3dna10WriterImpl16deleteJointGroupENSt8uint16_tE","dna::WriterImpl::deleteJointGroup::jointGroupIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl10deleteMeshENSt8uint16_tE","dna::WriterImpl::deleteMesh"],[0,2,1,"_CPPv4N3dna10WriterImpl10deleteMeshENSt8uint16_tE","dna::WriterImpl::deleteMesh::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl6setAgeENSt8uint16_tE","dna::WriterImpl::setAge"],[0,2,1,"_CPPv4N3dna10WriterImpl6setAgeENSt8uint16_tE","dna::WriterImpl::setAge::age"],[0,1,1,"_CPPv4N3dna10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapCutValues"],[0,2,1,"_CPPv4N3dna10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapCutValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapCutValues::cutValues"],[0,1,1,"_CPPv4N3dna10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapFromValues"],[0,2,1,"_CPPv4N3dna10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapFromValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapFromValues::fromValues"],[0,1,1,"_CPPv4N3dna10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapIndices::animatedMapIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapIndices::index"],[0,1,1,"_CPPv4N3dna10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapInputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapInputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapLODs"],[0,2,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapLODs::count"],[0,2,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapLODs::lods"],[0,1,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dna::WriterImpl::setAnimatedMapName"],[0,2,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dna::WriterImpl::setAnimatedMapName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dna::WriterImpl::setAnimatedMapName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapOutputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapOutputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setAnimatedMapOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapSlopeValues"],[0,2,1,"_CPPv4N3dna10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapSlopeValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapSlopeValues::slopeValues"],[0,1,1,"_CPPv4N3dna10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapToValues"],[0,2,1,"_CPPv4N3dna10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapToValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setAnimatedMapToValues::toValues"],[0,1,1,"_CPPv4N3dna10WriterImpl12setArchetypeE9Archetype","dna::WriterImpl::setArchetype"],[0,2,1,"_CPPv4N3dna10WriterImpl12setArchetypeE9Archetype","dna::WriterImpl::setArchetype::archetype"],[0,1,1,"_CPPv4N3dna10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndex::blendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndex::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndex::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndices::blendShapeChannelIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelIndices::index"],[0,1,1,"_CPPv4N3dna10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelInputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelInputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelLODs"],[0,2,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelLODs::count"],[0,2,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelLODs::lods"],[0,1,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::WriterImpl::setBlendShapeChannelName"],[0,2,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::WriterImpl::setBlendShapeChannelName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dna::WriterImpl::setBlendShapeChannelName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelOutputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelOutputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setBlendShapeChannelOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetDeltas"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetDeltas::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetDeltas::count"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetDeltas::deltas"],[0,2,1,"_CPPv4N3dna10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetDeltas::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetVertexIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetVertexIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetVertexIndices::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setBlendShapeTargetVertexIndices::vertexIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl19setCoordinateSystemE16CoordinateSystem","dna::WriterImpl::setCoordinateSystem"],[0,2,1,"_CPPv4N3dna10WriterImpl19setCoordinateSystemE16CoordinateSystem","dna::WriterImpl::setCoordinateSystem::system"],[0,1,1,"_CPPv4N3dna10WriterImpl15setDBComplexityEPKc","dna::WriterImpl::setDBComplexity"],[0,2,1,"_CPPv4N3dna10WriterImpl15setDBComplexityEPKc","dna::WriterImpl::setDBComplexity::name"],[0,1,1,"_CPPv4N3dna10WriterImpl11setDBMaxLODENSt8uint16_tE","dna::WriterImpl::setDBMaxLOD"],[0,2,1,"_CPPv4N3dna10WriterImpl11setDBMaxLODENSt8uint16_tE","dna::WriterImpl::setDBMaxLOD::lod"],[0,1,1,"_CPPv4N3dna10WriterImpl9setDBNameEPKc","dna::WriterImpl::setDBName"],[0,2,1,"_CPPv4N3dna10WriterImpl9setDBNameEPKc","dna::WriterImpl::setDBName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setFaceVertexLayoutIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setFaceVertexLayoutIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setFaceVertexLayoutIndices::faceIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setFaceVertexLayoutIndices::layoutIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dna::WriterImpl::setFaceVertexLayoutIndices::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dna::WriterImpl::setGUIControlName"],[0,2,1,"_CPPv4N3dna10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dna::WriterImpl::setGUIControlName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dna::WriterImpl::setGUIControlName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawCutValues"],[0,2,1,"_CPPv4N3dna10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawCutValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawCutValues::cutValues"],[0,1,1,"_CPPv4N3dna10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawFromValues"],[0,2,1,"_CPPv4N3dna10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawFromValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawFromValues::fromValues"],[0,1,1,"_CPPv4N3dna10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawInputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawInputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawInputIndices::inputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawOutputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawOutputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setGUIToRawOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawSlopeValues"],[0,2,1,"_CPPv4N3dna10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawSlopeValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawSlopeValues::slopeValues"],[0,1,1,"_CPPv4N3dna10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawToValues"],[0,2,1,"_CPPv4N3dna10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawToValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dna::WriterImpl::setGUIToRawToValues::toValues"],[0,1,1,"_CPPv4N3dna10WriterImpl9setGenderE6Gender","dna::WriterImpl::setGender"],[0,2,1,"_CPPv4N3dna10WriterImpl9setGenderE6Gender","dna::WriterImpl::setGender::gender"],[0,1,1,"_CPPv4N3dna10WriterImpl19setJointColumnCountENSt8uint16_tE","dna::WriterImpl::setJointColumnCount"],[0,2,1,"_CPPv4N3dna10WriterImpl19setJointColumnCountENSt8uint16_tE","dna::WriterImpl::setJointColumnCount::columnCount"],[0,1,1,"_CPPv4N3dna10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupInputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupInputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupInputIndices::inputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupInputIndices::jointGroupIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupJointIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupJointIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupJointIndices::jointGroupIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupJointIndices::jointIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupLODs"],[0,2,1,"_CPPv4N3dna10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupLODs::count"],[0,2,1,"_CPPv4N3dna10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupLODs::jointGroupIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupLODs::lods"],[0,1,1,"_CPPv4N3dna10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupOutputIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupOutputIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupOutputIndices::jointGroupIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointGroupOutputIndices::outputIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::WriterImpl::setJointGroupValues"],[0,2,1,"_CPPv4N3dna10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::WriterImpl::setJointGroupValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::WriterImpl::setJointGroupValues::jointGroupIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dna::WriterImpl::setJointGroupValues::values"],[0,1,1,"_CPPv4N3dna10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointHierarchy"],[0,2,1,"_CPPv4N3dna10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointHierarchy::count"],[0,2,1,"_CPPv4N3dna10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointHierarchy::jointIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointIndices::index"],[0,2,1,"_CPPv4N3dna10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setJointIndices::jointIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl12setJointNameENSt8uint16_tEPKc","dna::WriterImpl::setJointName"],[0,2,1,"_CPPv4N3dna10WriterImpl12setJointNameENSt8uint16_tEPKc","dna::WriterImpl::setJointName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl12setJointNameENSt8uint16_tEPKc","dna::WriterImpl::setJointName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl16setJointRowCountENSt8uint16_tE","dna::WriterImpl::setJointRowCount"],[0,2,1,"_CPPv4N3dna10WriterImpl16setJointRowCountENSt8uint16_tE","dna::WriterImpl::setJointRowCount::rowCount"],[0,1,1,"_CPPv4N3dna10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODAnimatedMapMapping"],[0,2,1,"_CPPv4N3dna10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODAnimatedMapMapping::index"],[0,2,1,"_CPPv4N3dna10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODAnimatedMapMapping::lod"],[0,1,1,"_CPPv4N3dna10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODBlendShapeChannelMapping"],[0,2,1,"_CPPv4N3dna10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODBlendShapeChannelMapping::index"],[0,2,1,"_CPPv4N3dna10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODBlendShapeChannelMapping::lod"],[0,1,1,"_CPPv4N3dna10WriterImpl11setLODCountENSt8uint16_tE","dna::WriterImpl::setLODCount"],[0,2,1,"_CPPv4N3dna10WriterImpl11setLODCountENSt8uint16_tE","dna::WriterImpl::setLODCount::lodCount"],[0,1,1,"_CPPv4N3dna10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODJointMapping"],[0,2,1,"_CPPv4N3dna10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODJointMapping::index"],[0,2,1,"_CPPv4N3dna10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODJointMapping::lod"],[0,1,1,"_CPPv4N3dna10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODMeshMapping"],[0,2,1,"_CPPv4N3dna10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODMeshMapping::index"],[0,2,1,"_CPPv4N3dna10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setLODMeshMapping::lod"],[0,1,1,"_CPPv4N3dna10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMaximumInfluencePerVertex"],[0,2,1,"_CPPv4N3dna10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMaximumInfluencePerVertex::maxInfluenceCount"],[0,2,1,"_CPPv4N3dna10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMaximumInfluencePerVertex::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshBlendShapeChannelMapping"],[0,2,1,"_CPPv4N3dna10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshBlendShapeChannelMapping::blendShapeChannelIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshBlendShapeChannelMapping::index"],[0,2,1,"_CPPv4N3dna10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshBlendShapeChannelMapping::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshIndices::index"],[0,2,1,"_CPPv4N3dna10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setMeshIndices::meshIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl11setMeshNameENSt8uint16_tEPKc","dna::WriterImpl::setMeshName"],[0,2,1,"_CPPv4N3dna10WriterImpl11setMeshNameENSt8uint16_tEPKc","dna::WriterImpl::setMeshName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl11setMeshNameENSt8uint16_tEPKc","dna::WriterImpl::setMeshName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl11setMetaDataEPKcPKc","dna::WriterImpl::setMetaData"],[0,2,1,"_CPPv4N3dna10WriterImpl11setMetaDataEPKcPKc","dna::WriterImpl::setMetaData::key"],[0,2,1,"_CPPv4N3dna10WriterImpl11setMetaDataEPKcPKc","dna::WriterImpl::setMetaData::value"],[0,1,1,"_CPPv4N3dna10WriterImpl7setNameEPKc","dna::WriterImpl::setName"],[0,2,1,"_CPPv4N3dna10WriterImpl7setNameEPKc","dna::WriterImpl::setName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointRotations"],[0,2,1,"_CPPv4N3dna10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointRotations::count"],[0,2,1,"_CPPv4N3dna10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointRotations::rotations"],[0,1,1,"_CPPv4N3dna10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointTranslations"],[0,2,1,"_CPPv4N3dna10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointTranslations::count"],[0,2,1,"_CPPv4N3dna10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dna::WriterImpl::setNeutralJointTranslations::translations"],[0,1,1,"_CPPv4N3dna10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDColumnIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDColumnIndices::columnIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDColumnIndices::count"],[0,1,1,"_CPPv4N3dna10WriterImpl11setPSDCountENSt8uint16_tE","dna::WriterImpl::setPSDCount"],[0,2,1,"_CPPv4N3dna10WriterImpl11setPSDCountENSt8uint16_tE","dna::WriterImpl::setPSDCount::count"],[0,1,1,"_CPPv4N3dna10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDRowIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDRowIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setPSDRowIndices::rowIndices"],[0,1,1,"_CPPv4N3dna10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dna::WriterImpl::setPSDValues"],[0,2,1,"_CPPv4N3dna10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dna::WriterImpl::setPSDValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dna::WriterImpl::setPSDValues::weights"],[0,1,1,"_CPPv4N3dna10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dna::WriterImpl::setRawControlName"],[0,2,1,"_CPPv4N3dna10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dna::WriterImpl::setRawControlName::index"],[0,2,1,"_CPPv4N3dna10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dna::WriterImpl::setRawControlName::name"],[0,1,1,"_CPPv4N3dna10WriterImpl15setRotationUnitE12RotationUnit","dna::WriterImpl::setRotationUnit"],[0,2,1,"_CPPv4N3dna10WriterImpl15setRotationUnitE12RotationUnit","dna::WriterImpl::setRotationUnit::unit"],[0,1,1,"_CPPv4N3dna10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setSkinWeightsJointIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setSkinWeightsJointIndices::count"],[0,2,1,"_CPPv4N3dna10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setSkinWeightsJointIndices::jointIndices"],[0,2,1,"_CPPv4N3dna10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setSkinWeightsJointIndices::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dna::WriterImpl::setSkinWeightsJointIndices::vertexIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::WriterImpl::setSkinWeightsValues"],[0,2,1,"_CPPv4N3dna10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::WriterImpl::setSkinWeightsValues::count"],[0,2,1,"_CPPv4N3dna10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::WriterImpl::setSkinWeightsValues::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::WriterImpl::setSkinWeightsValues::vertexIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dna::WriterImpl::setSkinWeightsValues::weights"],[0,1,1,"_CPPv4N3dna10WriterImpl18setTranslationUnitE15TranslationUnit","dna::WriterImpl::setTranslationUnit"],[0,2,1,"_CPPv4N3dna10WriterImpl18setTranslationUnitE15TranslationUnit","dna::WriterImpl::setTranslationUnit::unit"],[0,1,1,"_CPPv4N3dna10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::WriterImpl::setVertexLayouts"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::WriterImpl::setVertexLayouts::count"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::WriterImpl::setVertexLayouts::layouts"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dna::WriterImpl::setVertexLayouts::meshIndex"],[0,1,1,"_CPPv4N3dna10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::WriterImpl::setVertexNormals"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::WriterImpl::setVertexNormals::count"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::WriterImpl::setVertexNormals::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dna::WriterImpl::setVertexNormals::normals"],[0,1,1,"_CPPv4N3dna10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::WriterImpl::setVertexPositions"],[0,2,1,"_CPPv4N3dna10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::WriterImpl::setVertexPositions::count"],[0,2,1,"_CPPv4N3dna10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::WriterImpl::setVertexPositions::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dna::WriterImpl::setVertexPositions::positions"],[0,1,1,"_CPPv4N3dna10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::WriterImpl::setVertexTextureCoordinates"],[0,2,1,"_CPPv4N3dna10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::WriterImpl::setVertexTextureCoordinates::count"],[0,2,1,"_CPPv4N3dna10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::WriterImpl::setVertexTextureCoordinates::meshIndex"],[0,2,1,"_CPPv4N3dna10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dna::WriterImpl::setVertexTextureCoordinates::textureCoordinates"],[12,0,1,"_CPPv4N4dnac17AnimatedMapFilterE","dnac::AnimatedMapFilter"],[12,1,1,"_CPPv4N4dnac17AnimatedMapFilter17AnimatedMapFilterEP14MemoryResource","dnac::AnimatedMapFilter::AnimatedMapFilter"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter17AnimatedMapFilterEP14MemoryResource","dnac::AnimatedMapFilter::AnimatedMapFilter::memRes_"],[12,3,1,"_CPPv4N4dnac17AnimatedMapFilter21animatedMapLODIndicesE","dnac::AnimatedMapFilter::animatedMapLODIndices"],[12,1,1,"_CPPv4N4dnac17AnimatedMapFilter5applyER11RawBehavior","dnac::AnimatedMapFilter::apply"],[12,1,1,"_CPPv4N4dnac17AnimatedMapFilter5applyER13RawDefinition","dnac::AnimatedMapFilter::apply"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter5applyER11RawBehavior","dnac::AnimatedMapFilter::apply::dest"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter5applyER13RawDefinition","dnac::AnimatedMapFilter::apply::dest"],[12,1,1,"_CPPv4N4dnac17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6MatrixINSt8uint16_tEE","dnac::AnimatedMapFilter::configure"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6MatrixINSt8uint16_tEE","dnac::AnimatedMapFilter::configure::allowedAnimatedMapIndices"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6MatrixINSt8uint16_tEE","dnac::AnimatedMapFilter::configure::animatedMapCount"],[12,2,1,"_CPPv4N4dnac17AnimatedMapFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6MatrixINSt8uint16_tEE","dnac::AnimatedMapFilter::configure::lodIndices"],[12,3,1,"_CPPv4N4dnac17AnimatedMapFilter6memResE","dnac::AnimatedMapFilter::memRes"],[12,1,1,"_CPPv4NK4dnac17AnimatedMapFilter6passesENSt8uint16_tE","dnac::AnimatedMapFilter::passes"],[12,2,1,"_CPPv4NK4dnac17AnimatedMapFilter6passesENSt8uint16_tE","dnac::AnimatedMapFilter::passes::index"],[12,3,1,"_CPPv4N4dnac17AnimatedMapFilter14passingIndicesE","dnac::AnimatedMapFilter::passingIndices"],[12,3,1,"_CPPv4N4dnac17AnimatedMapFilter15remappedIndicesE","dnac::AnimatedMapFilter::remappedIndices"],[12,0,1,"_CPPv4N4dnac8BaseImplE","dnac::BaseImpl"],[12,1,1,"_CPPv4N4dnac8BaseImpl8BaseImplEP14MemoryResource","dnac::BaseImpl::BaseImpl"],[12,1,1,"_CPPv4N4dnac8BaseImpl8BaseImplERK8BaseImpl","dnac::BaseImpl::BaseImpl"],[12,1,1,"_CPPv4N4dnac8BaseImpl8BaseImplERR8BaseImpl","dnac::BaseImpl::BaseImpl"],[12,2,1,"_CPPv4N4dnac8BaseImpl8BaseImplEP14MemoryResource","dnac::BaseImpl::BaseImpl::memRes_"],[12,2,1,"_CPPv4N4dnac8BaseImpl8BaseImplERR8BaseImpl","dnac::BaseImpl::BaseImpl::rhs"],[12,3,1,"_CPPv4N4dnac8BaseImpl3dnaE","dnac::BaseImpl::dna"],[12,1,1,"_CPPv4N4dnac8BaseImpl17getMemoryResourceEv","dnac::BaseImpl::getMemoryResource"],[12,3,1,"_CPPv4N4dnac8BaseImpl6memResE","dnac::BaseImpl::memRes"],[12,1,1,"_CPPv4N4dnac8BaseImplaSERK8BaseImpl","dnac::BaseImpl::operator="],[12,1,1,"_CPPv4N4dnac8BaseImplaSERR8BaseImpl","dnac::BaseImpl::operator="],[12,1,1,"_CPPv4N4dnac8BaseImplD0Ev","dnac::BaseImpl::~BaseImpl"],[12,0,1,"_CPPv4N4dnac16BlendShapeFilterE","dnac::BlendShapeFilter"],[12,1,1,"_CPPv4N4dnac16BlendShapeFilter16BlendShapeFilterEP14MemoryResource","dnac::BlendShapeFilter::BlendShapeFilter"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter16BlendShapeFilterEP14MemoryResource","dnac::BlendShapeFilter::BlendShapeFilter::memRes_"],[12,1,1,"_CPPv4N4dnac16BlendShapeFilter5applyER11RawBehavior","dnac::BlendShapeFilter::apply"],[12,1,1,"_CPPv4N4dnac16BlendShapeFilter5applyER13RawDefinition","dnac::BlendShapeFilter::apply"],[12,1,1,"_CPPv4N4dnac16BlendShapeFilter5applyER7RawMesh","dnac::BlendShapeFilter::apply"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter5applyER11RawBehavior","dnac::BlendShapeFilter::apply::dest"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter5applyER13RawDefinition","dnac::BlendShapeFilter::apply::dest"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter5applyER7RawMesh","dnac::BlendShapeFilter::apply::dest"],[12,1,1,"_CPPv4N4dnac16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6VectorINSt8uint16_tEE","dnac::BlendShapeFilter::configure"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6VectorINSt8uint16_tEE","dnac::BlendShapeFilter::configure::allowedBlendShapeIndices"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6VectorINSt8uint16_tEE","dnac::BlendShapeFilter::configure::blendShapeCount"],[12,2,1,"_CPPv4N4dnac16BlendShapeFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6VectorINSt8uint16_tEE","dnac::BlendShapeFilter::configure::blendShapeLODs"],[12,3,1,"_CPPv4N4dnac16BlendShapeFilter6memResE","dnac::BlendShapeFilter::memRes"],[12,3,1,"_CPPv4N4dnac16BlendShapeFilter17newBlendShapeLODsE","dnac::BlendShapeFilter::newBlendShapeLODs"],[12,1,1,"_CPPv4NK4dnac16BlendShapeFilter6passesENSt8uint16_tE","dnac::BlendShapeFilter::passes"],[12,2,1,"_CPPv4NK4dnac16BlendShapeFilter6passesENSt8uint16_tE","dnac::BlendShapeFilter::passes::index"],[12,3,1,"_CPPv4N4dnac16BlendShapeFilter14passingIndicesE","dnac::BlendShapeFilter::passingIndices"],[12,3,1,"_CPPv4N4dnac16BlendShapeFilter15remappedIndicesE","dnac::BlendShapeFilter::remappedIndices"],[12,0,1,"_CPPv4N4dnac11BoundingBoxE","dnac::BoundingBox"],[12,1,1,"_CPPv4I0EN4dnac11BoundingBox11BoundingBoxE10TContainerf","dnac::BoundingBox::BoundingBox"],[12,1,1,"_CPPv4I0_PNSt9enable_ifINSt7is_sameI27unqualified_iter_value_typeI5TIterE5fvec2E5valueEvE4typeEEN4dnac11BoundingBox11BoundingBoxE5TIter5TIterf","dnac::BoundingBox::BoundingBox"],[12,5,1,"_CPPv4I0EN4dnac11BoundingBox11BoundingBoxE10TContainerf","dnac::BoundingBox::BoundingBox::TContainer"],[12,5,1,"_CPPv4I0_PNSt9enable_ifINSt7is_sameI27unqualified_iter_value_typeI5TIterE5fvec2E5valueEvE4typeEEN4dnac11BoundingBox11BoundingBoxE5TIter5TIterf","dnac::BoundingBox::BoundingBox::TIter"],[12,2,1,"_CPPv4I0EN4dnac11BoundingBox11BoundingBoxE10TContainerf","dnac::BoundingBox::BoundingBox::alpha"],[12,2,1,"_CPPv4I0_PNSt9enable_ifINSt7is_sameI27unqualified_iter_value_typeI5TIterE5fvec2E5valueEvE4typeEEN4dnac11BoundingBox11BoundingBoxE5TIter5TIterf","dnac::BoundingBox::BoundingBox::alpha"],[12,2,1,"_CPPv4I0_PNSt9enable_ifINSt7is_sameI27unqualified_iter_value_typeI5TIterE5fvec2E5valueEvE4typeEEN4dnac11BoundingBox11BoundingBoxE5TIter5TIterf","dnac::BoundingBox::BoundingBox::begin"],[12,2,1,"_CPPv4I0EN4dnac11BoundingBox11BoundingBoxE10TContainerf","dnac::BoundingBox::BoundingBox::container"],[12,2,1,"_CPPv4I0_PNSt9enable_ifINSt7is_sameI27unqualified_iter_value_typeI5TIterE5fvec2E5valueEvE4typeEEN4dnac11BoundingBox11BoundingBoxE5TIter5TIterf","dnac::BoundingBox::BoundingBox::end"],[12,1,1,"_CPPv4NK4dnac11BoundingBox8containsERK5fvec2","dnac::BoundingBox::contains"],[12,2,1,"_CPPv4NK4dnac11BoundingBox8containsERK5fvec2","dnac::BoundingBox::contains::point"],[12,3,1,"_CPPv4N4dnac11BoundingBox12defaultAlphaE","dnac::BoundingBox::defaultAlpha"],[12,1,1,"_CPPv4NK4dnac11BoundingBox6getMaxEv","dnac::BoundingBox::getMax"],[12,1,1,"_CPPv4NK4dnac11BoundingBox6getMinEv","dnac::BoundingBox::getMin"],[12,3,1,"_CPPv4N4dnac11BoundingBox3maxE","dnac::BoundingBox::max"],[12,3,1,"_CPPv4N4dnac11BoundingBox3minE","dnac::BoundingBox::min"],[12,4,1,"_CPPv4I0EN4dnac11BoundingBox27unqualified_iter_value_typeE","dnac::BoundingBox::unqualified_iter_value_type"],[12,5,1,"_CPPv4I0EN4dnac11BoundingBox27unqualified_iter_value_typeE","dnac::BoundingBox::unqualified_iter_value_type::TIter"],[12,0,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommandE","dnac::CalculateMeshLowerLODsCommand"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandENSt8uint16_tEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandERK29CalculateMeshLowerLODsCommand","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandERR29CalculateMeshLowerLODsCommand","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandENSt8uint16_tEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand::memRes"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand::memRes"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand29CalculateMeshLowerLODsCommandENSt8uint16_tEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::CalculateMeshLowerLODsCommand::meshIndex"],[12,0,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4ImplE","dnac::CalculateMeshLowerLODsCommand::Impl"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl4ImplEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl4ImplEP14MemoryResource","dnac::CalculateMeshLowerLODsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl5SuperE","dnac::CalculateMeshLowerLODsCommand::Impl::Super"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl26findIndicesOfMeshLowerLODsEP21DNACalibDNAReaderImpl","dnac::CalculateMeshLowerLODsCommand::Impl::findIndicesOfMeshLowerLODs"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl26findIndicesOfMeshLowerLODsEP21DNACalibDNAReaderImpl","dnac::CalculateMeshLowerLODsCommand::Impl::findIndicesOfMeshLowerLODs::output"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl11getMeshNameEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::Impl::getMeshName"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl11getMeshNameEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::Impl::getMeshName::mi"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl11getMeshNameEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::Impl::getMeshName::output"],[12,3,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl9meshIndexE","dnac::CalculateMeshLowerLODsCommand::Impl::meshIndex"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::CalculateMeshLowerLODsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::CalculateMeshLowerLODsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::Impl::setMeshIndex"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::Impl::setMeshIndex::meshIndex_"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommandaSERK29CalculateMeshLowerLODsCommand","dnac::CalculateMeshLowerLODsCommand::operator="],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommandaSERR29CalculateMeshLowerLODsCommand","dnac::CalculateMeshLowerLODsCommand::operator="],[12,3,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand5pImplE","dnac::CalculateMeshLowerLODsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand3runEP17DNACalibDNAReader","dnac::CalculateMeshLowerLODsCommand::run"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand3runEP17DNACalibDNAReader","dnac::CalculateMeshLowerLODsCommand::run::output"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand12setMeshIndexENSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::setMeshIndex"],[12,2,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommand12setMeshIndexENSt8uint16_tE","dnac::CalculateMeshLowerLODsCommand::setMeshIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac29CalculateMeshLowerLODsCommandD0Ev","dnac::CalculateMeshLowerLODsCommand::~CalculateMeshLowerLODsCommand"],[12,0,1,"_CPPv4N4dnac23ClearBlendShapesCommandE","dnac::ClearBlendShapesCommand"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand23ClearBlendShapesCommandEP14MemoryResource","dnac::ClearBlendShapesCommand::ClearBlendShapesCommand"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand23ClearBlendShapesCommandERK23ClearBlendShapesCommand","dnac::ClearBlendShapesCommand::ClearBlendShapesCommand"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand23ClearBlendShapesCommandERR23ClearBlendShapesCommand","dnac::ClearBlendShapesCommand::ClearBlendShapesCommand"],[12,2,1,"_CPPv4N4dnac23ClearBlendShapesCommand23ClearBlendShapesCommandEP14MemoryResource","dnac::ClearBlendShapesCommand::ClearBlendShapesCommand::memRes"],[12,0,1,"_CPPv4N4dnac23ClearBlendShapesCommand4ImplE","dnac::ClearBlendShapesCommand::Impl"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand4Impl4ImplEP14MemoryResource","dnac::ClearBlendShapesCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac23ClearBlendShapesCommand4Impl4ImplEP14MemoryResource","dnac::ClearBlendShapesCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac23ClearBlendShapesCommand4Impl5SuperE","dnac::ClearBlendShapesCommand::Impl::Super"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::ClearBlendShapesCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac23ClearBlendShapesCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::ClearBlendShapesCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommandaSERK23ClearBlendShapesCommand","dnac::ClearBlendShapesCommand::operator="],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommandaSERR23ClearBlendShapesCommand","dnac::ClearBlendShapesCommand::operator="],[12,3,1,"_CPPv4N4dnac23ClearBlendShapesCommand5pImplE","dnac::ClearBlendShapesCommand::pImpl"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommand3runEP17DNACalibDNAReader","dnac::ClearBlendShapesCommand::run"],[12,2,1,"_CPPv4N4dnac23ClearBlendShapesCommand3runEP17DNACalibDNAReader","dnac::ClearBlendShapesCommand::run::output"],[12,1,1,"_CPPv4N4dnac23ClearBlendShapesCommandD0Ev","dnac::ClearBlendShapesCommand::~ClearBlendShapesCommand"],[12,0,1,"_CPPv4N4dnac7CommandE","dnac::Command"],[12,1,1,"_CPPv4N4dnac7Command3runEP17DNACalibDNAReader","dnac::Command::run"],[12,2,1,"_CPPv4N4dnac7Command3runEP17DNACalibDNAReader","dnac::Command::run::output"],[12,1,1,"_CPPv4N4dnac7CommandD0Ev","dnac::Command::~Command"],[12,0,1,"_CPPv4I0EN4dnac15CommandImplBaseE","dnac::CommandImplBase"],[12,1,1,"_CPPv4N4dnac15CommandImplBase15CommandImplBaseEP14MemoryResource","dnac::CommandImplBase::CommandImplBase"],[12,2,1,"_CPPv4N4dnac15CommandImplBase15CommandImplBaseEP14MemoryResource","dnac::CommandImplBase::CommandImplBase::memRes_"],[12,5,1,"_CPPv4I0EN4dnac15CommandImplBaseE","dnac::CommandImplBase::TCommand"],[12,1,1,"_CPPv4N4dnac15CommandImplBase6createEP14MemoryResource","dnac::CommandImplBase::create"],[12,2,1,"_CPPv4N4dnac15CommandImplBase6createEP14MemoryResource","dnac::CommandImplBase::create::memRes"],[12,1,1,"_CPPv4N4dnac15CommandImplBase7destroyEP8TCommand","dnac::CommandImplBase::destroy"],[12,2,1,"_CPPv4N4dnac15CommandImplBase7destroyEP8TCommand","dnac::CommandImplBase::destroy::instance"],[12,1,1,"_CPPv4N4dnac15CommandImplBase17getMemoryResourceEv","dnac::CommandImplBase::getMemoryResource"],[12,3,1,"_CPPv4N4dnac15CommandImplBase6memResE","dnac::CommandImplBase::memRes"],[12,0,1,"_CPPv4N4dnac15CommandSequenceE","dnac::CommandSequence"],[12,1,1,"_CPPv4N4dnac15CommandSequence15CommandSequenceEP14MemoryResource","dnac::CommandSequence::CommandSequence"],[12,1,1,"_CPPv4N4dnac15CommandSequence15CommandSequenceERK15CommandSequence","dnac::CommandSequence::CommandSequence"],[12,1,1,"_CPPv4N4dnac15CommandSequence15CommandSequenceERR15CommandSequence","dnac::CommandSequence::CommandSequence"],[12,2,1,"_CPPv4N4dnac15CommandSequence15CommandSequenceEP14MemoryResource","dnac::CommandSequence::CommandSequence::memRes"],[12,0,1,"_CPPv4N4dnac15CommandSequence4ImplE","dnac::CommandSequence::Impl"],[12,1,1,"_CPPv4N4dnac15CommandSequence4Impl4ImplEP14MemoryResource","dnac::CommandSequence::Impl::Impl"],[12,2,1,"_CPPv4N4dnac15CommandSequence4Impl4ImplEP14MemoryResource","dnac::CommandSequence::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac15CommandSequence4Impl5SuperE","dnac::CommandSequence::Impl::Super"],[12,1,1,"_CPPv4N4dnac15CommandSequence4Impl3addEP7Command","dnac::CommandSequence::Impl::add"],[12,2,1,"_CPPv4N4dnac15CommandSequence4Impl3addEP7Command","dnac::CommandSequence::Impl::add::command"],[12,3,1,"_CPPv4N4dnac15CommandSequence4Impl8commandsE","dnac::CommandSequence::Impl::commands"],[12,1,1,"_CPPv4NK4dnac15CommandSequence4Impl8containsEP7Command","dnac::CommandSequence::Impl::contains"],[12,2,1,"_CPPv4NK4dnac15CommandSequence4Impl8containsEP7Command","dnac::CommandSequence::Impl::contains::command"],[12,1,1,"_CPPv4N4dnac15CommandSequence4Impl6removeEP7Command","dnac::CommandSequence::Impl::remove"],[12,2,1,"_CPPv4N4dnac15CommandSequence4Impl6removeEP7Command","dnac::CommandSequence::Impl::remove::command"],[12,1,1,"_CPPv4N4dnac15CommandSequence4Impl3runEP17DNACalibDNAReader","dnac::CommandSequence::Impl::run"],[12,2,1,"_CPPv4N4dnac15CommandSequence4Impl3runEP17DNACalibDNAReader","dnac::CommandSequence::Impl::run::output"],[12,1,1,"_CPPv4NK4dnac15CommandSequence4Impl4sizeEv","dnac::CommandSequence::Impl::size"],[12,1,1,"_CPPv4IDpEN4dnac15CommandSequence3addEvDp8Commands","dnac::CommandSequence::add"],[12,1,1,"_CPPv4N4dnac15CommandSequence3addE9ArrayViewI7CommandE","dnac::CommandSequence::add"],[12,1,1,"_CPPv4N4dnac15CommandSequence3addEP7Command","dnac::CommandSequence::add"],[12,5,1,"_CPPv4IDpEN4dnac15CommandSequence3addEvDp8Commands","dnac::CommandSequence::add::Commands"],[12,2,1,"_CPPv4N4dnac15CommandSequence3addEP7Command","dnac::CommandSequence::add::command"],[12,2,1,"_CPPv4IDpEN4dnac15CommandSequence3addEvDp8Commands","dnac::CommandSequence::add::commands"],[12,2,1,"_CPPv4N4dnac15CommandSequence3addE9ArrayViewI7CommandE","dnac::CommandSequence::add::commands"],[12,1,1,"_CPPv4NK4dnac15CommandSequence8containsEP7Command","dnac::CommandSequence::contains"],[12,2,1,"_CPPv4NK4dnac15CommandSequence8containsEP7Command","dnac::CommandSequence::contains::command"],[12,1,1,"_CPPv4N4dnac15CommandSequenceaSERK15CommandSequence","dnac::CommandSequence::operator="],[12,1,1,"_CPPv4N4dnac15CommandSequenceaSERR15CommandSequence","dnac::CommandSequence::operator="],[12,3,1,"_CPPv4N4dnac15CommandSequence5pImplE","dnac::CommandSequence::pImpl"],[12,1,1,"_CPPv4IDpEN4dnac15CommandSequence6removeEvDp8Commands","dnac::CommandSequence::remove"],[12,1,1,"_CPPv4N4dnac15CommandSequence6removeE9ArrayViewI7CommandE","dnac::CommandSequence::remove"],[12,1,1,"_CPPv4N4dnac15CommandSequence6removeEP7Command","dnac::CommandSequence::remove"],[12,5,1,"_CPPv4IDpEN4dnac15CommandSequence6removeEvDp8Commands","dnac::CommandSequence::remove::Commands"],[12,2,1,"_CPPv4N4dnac15CommandSequence6removeEP7Command","dnac::CommandSequence::remove::command"],[12,2,1,"_CPPv4IDpEN4dnac15CommandSequence6removeEvDp8Commands","dnac::CommandSequence::remove::commands"],[12,2,1,"_CPPv4N4dnac15CommandSequence6removeE9ArrayViewI7CommandE","dnac::CommandSequence::remove::commands"],[12,1,1,"_CPPv4N4dnac15CommandSequence3runEP17DNACalibDNAReader","dnac::CommandSequence::run"],[12,2,1,"_CPPv4N4dnac15CommandSequence3runEP17DNACalibDNAReader","dnac::CommandSequence::run::output"],[12,1,1,"_CPPv4NK4dnac15CommandSequence4sizeEv","dnac::CommandSequence::size"],[12,1,1,"_CPPv4N4dnac15CommandSequenceD0Ev","dnac::CommandSequence::~CommandSequence"],[12,0,1,"_CPPv4I00EN4dnac18ConditionalCommandE","dnac::ConditionalCommand"],[12,4,1,"_CPPv4N4dnac18ConditionalCommand11CommandTypeE","dnac::ConditionalCommand::CommandType"],[12,4,1,"_CPPv4N4dnac18ConditionalCommand13ConditionTypeE","dnac::ConditionalCommand::ConditionType"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandEP11CommandType13ConditionType","dnac::ConditionalCommand::ConditionalCommand"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandERK18ConditionalCommand","dnac::ConditionalCommand::ConditionalCommand"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandERR18ConditionalCommand","dnac::ConditionalCommand::ConditionalCommand"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandEv","dnac::ConditionalCommand::ConditionalCommand"],[12,2,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandEP11CommandType13ConditionType","dnac::ConditionalCommand::ConditionalCommand::command_"],[12,2,1,"_CPPv4N4dnac18ConditionalCommand18ConditionalCommandEP11CommandType13ConditionType","dnac::ConditionalCommand::ConditionalCommand::condition_"],[12,5,1,"_CPPv4I00EN4dnac18ConditionalCommandE","dnac::ConditionalCommand::TCommand"],[12,5,1,"_CPPv4I00EN4dnac18ConditionalCommandE","dnac::ConditionalCommand::TCondition"],[12,3,1,"_CPPv4N4dnac18ConditionalCommand7commandE","dnac::ConditionalCommand::command"],[12,3,1,"_CPPv4N4dnac18ConditionalCommand9conditionE","dnac::ConditionalCommand::condition"],[12,1,1,"_CPPv4N4dnac18ConditionalCommandaSERK18ConditionalCommand","dnac::ConditionalCommand::operator="],[12,1,1,"_CPPv4N4dnac18ConditionalCommandaSERR18ConditionalCommand","dnac::ConditionalCommand::operator="],[12,1,1,"_CPPv4N4dnac18ConditionalCommand3runEP17DNACalibDNAReader","dnac::ConditionalCommand::run"],[12,2,1,"_CPPv4N4dnac18ConditionalCommand3runEP17DNACalibDNAReader","dnac::ConditionalCommand::run::output"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand10setCommandEP7Command","dnac::ConditionalCommand::setCommand"],[12,2,1,"_CPPv4N4dnac18ConditionalCommand10setCommandEP7Command","dnac::ConditionalCommand::setCommand::command_"],[12,1,1,"_CPPv4N4dnac18ConditionalCommand12setConditionE13ConditionType","dnac::ConditionalCommand::setCondition"],[12,2,1,"_CPPv4N4dnac18ConditionalCommand12setConditionE13ConditionType","dnac::ConditionalCommand::setCondition::condition_"],[12,1,1,"_CPPv4N4dnac18ConditionalCommandD0Ev","dnac::ConditionalCommand::~ConditionalCommand"],[12,0,1,"_CPPv4N4dnac3DNAE","dnac::DNA"],[12,1,1,"_CPPv4N4dnac3DNA3DNAEP14MemoryResource","dnac::DNA::DNA"],[12,2,1,"_CPPv4N4dnac3DNA3DNAEP14MemoryResource","dnac::DNA::DNA::memRes_"],[12,3,1,"_CPPv4N4dnac3DNA8behaviorE","dnac::DNA::behavior"],[12,3,1,"_CPPv4N4dnac3DNA10definitionE","dnac::DNA::definition"],[12,3,1,"_CPPv4N4dnac3DNA10descriptorE","dnac::DNA::descriptor"],[12,3,1,"_CPPv4N4dnac3DNA3eofE","dnac::DNA::eof"],[12,3,1,"_CPPv4N4dnac3DNA8geometryE","dnac::DNA::geometry"],[12,1,1,"_CPPv4I0EN4dnac3DNA4loadEvR7Archive","dnac::DNA::load"],[12,5,1,"_CPPv4I0EN4dnac3DNA4loadEvR7Archive","dnac::DNA::load::Archive"],[12,2,1,"_CPPv4I0EN4dnac3DNA4loadEvR7Archive","dnac::DNA::load::archive"],[12,3,1,"_CPPv4N4dnac3DNA6memResE","dnac::DNA::memRes"],[12,1,1,"_CPPv4I0EN4dnac3DNA4saveEvR7Archive","dnac::DNA::save"],[12,5,1,"_CPPv4I0EN4dnac3DNA4saveEvR7Archive","dnac::DNA::save::Archive"],[12,2,1,"_CPPv4I0EN4dnac3DNA4saveEvR7Archive","dnac::DNA::save::archive"],[12,3,1,"_CPPv4N4dnac3DNA8sectionsE","dnac::DNA::sections"],[12,3,1,"_CPPv4N4dnac3DNA9signatureE","dnac::DNA::signature"],[12,1,1,"_CPPv4N4dnac3DNA14unloadBehaviorEv","dnac::DNA::unloadBehavior"],[12,1,1,"_CPPv4N4dnac3DNA16unloadDefinitionEv","dnac::DNA::unloadDefinition"],[12,1,1,"_CPPv4N4dnac3DNA14unloadGeometryEv","dnac::DNA::unloadGeometry"],[12,3,1,"_CPPv4N4dnac3DNA7versionE","dnac::DNA::version"],[12,0,1,"_CPPv4N4dnac17DNACalibDNAReaderE","dnac::DNACalibDNAReader"],[12,1,1,"_CPPv4N4dnac17DNACalibDNAReader6createEP14MemoryResource","dnac::DNACalibDNAReader::create"],[12,1,1,"_CPPv4N4dnac17DNACalibDNAReader6createEPKN3dna6ReaderEP14MemoryResource","dnac::DNACalibDNAReader::create"],[12,2,1,"_CPPv4N4dnac17DNACalibDNAReader6createEP14MemoryResource","dnac::DNACalibDNAReader::create::memRes"],[12,2,1,"_CPPv4N4dnac17DNACalibDNAReader6createEPKN3dna6ReaderEP14MemoryResource","dnac::DNACalibDNAReader::create::memRes"],[12,2,1,"_CPPv4N4dnac17DNACalibDNAReader6createEPKN3dna6ReaderEP14MemoryResource","dnac::DNACalibDNAReader::create::reader"],[12,1,1,"_CPPv4N4dnac17DNACalibDNAReader7destroyEP17DNACalibDNAReader","dnac::DNACalibDNAReader::destroy"],[12,2,1,"_CPPv4N4dnac17DNACalibDNAReader7destroyEP17DNACalibDNAReader","dnac::DNACalibDNAReader::destroy::instance"],[12,1,1,"_CPPv4N4dnac17DNACalibDNAReaderD0Ev","dnac::DNACalibDNAReader::~DNACalibDNAReader"],[12,0,1,"_CPPv4N4dnac21DNACalibDNAReaderImplE","dnac::DNACalibDNAReaderImpl"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21DNACalibDNAReaderImplEP14MemoryResource","dnac::DNACalibDNAReaderImpl::DNACalibDNAReaderImpl"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21DNACalibDNAReaderImplERK21DNACalibDNAReaderImpl","dnac::DNACalibDNAReaderImpl::DNACalibDNAReaderImpl"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21DNACalibDNAReaderImplERR21DNACalibDNAReaderImpl","dnac::DNACalibDNAReaderImpl::DNACalibDNAReaderImpl"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21DNACalibDNAReaderImplEP14MemoryResource","dnac::DNACalibDNAReaderImpl::DNACalibDNAReaderImpl::memRes_"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImplaSERK21DNACalibDNAReaderImpl","dnac::DNACalibDNAReaderImpl::operator="],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImplaSERR21DNACalibDNAReaderImpl","dnac::DNACalibDNAReaderImpl::operator="],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl22pruneBlendShapeTargetsEf","dnac::DNACalibDNAReaderImpl::pruneBlendShapeTargets"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl22pruneBlendShapeTargetsEf","dnac::DNACalibDNAReaderImpl::pruneBlendShapeTargets::threshold"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18removeAnimatedMapsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeAnimatedMaps"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18removeAnimatedMapsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeAnimatedMaps::animatedMapIndices"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl17removeBlendShapesE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeBlendShapes"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl17removeBlendShapesE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeBlendShapes::blendShapeIndices"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21removeJointAnimationsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeJointAnimations"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl21removeJointAnimationsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeJointAnimations::jointIndex"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl12removeJointsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeJoints"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl12removeJointsE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeJoints::jointIndices"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl12removeMeshesE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeMeshes"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl12removeMeshesE14ConstArrayViewINSt8uint16_tEE","dnac::DNACalibDNAReaderImpl::removeMeshes::meshIndices"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::deltas"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::meshIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::meshIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::xs"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::ys"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetDeltas::zs"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE14ConstArrayViewINSt8uint32_tEE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetVertexIndices"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE14ConstArrayViewINSt8uint32_tEE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE14ConstArrayViewINSt8uint32_tEE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetVertexIndices::meshIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE14ConstArrayViewINSt8uint32_tEE","dnac::DNACalibDNAReaderImpl::setBlendShapeTargetVertexIndices::vertexIndices"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl19setJointGroupValuesENSt8uint16_tERR15AlignedDynArrayIfE","dnac::DNACalibDNAReaderImpl::setJointGroupValues"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl19setJointGroupValuesENSt8uint16_tERR15AlignedDynArrayIfE","dnac::DNACalibDNAReaderImpl::setJointGroupValues::jointGroupIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl19setJointGroupValuesENSt8uint16_tERR15AlignedDynArrayIfE","dnac::DNACalibDNAReaderImpl::setJointGroupValues::values"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl11setLODCountENSt8uint16_tE","dnac::DNACalibDNAReaderImpl::setLODCount"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl11setLODCountENSt8uint16_tE","dnac::DNACalibDNAReaderImpl::setLODCount::lodCount"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl23setNeutralJointRotationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointRotation"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl23setNeutralJointRotationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointRotation::index"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl23setNeutralJointRotationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointRotation::rotation"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations::rotations"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations::xs"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations::ys"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl24setNeutralJointRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointRotations::zs"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl26setNeutralJointTranslationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslation"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl26setNeutralJointTranslationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslation::index"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl26setNeutralJointTranslationENSt8uint16_tERK7Vector3","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslation::translation"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations::translations"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations::xs"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations::ys"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl27setNeutralJointTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setNeutralJointTranslations::zs"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setVertexPositions"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setVertexPositions"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setVertexPositions::meshIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setVertexPositions::meshIndex"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tERR16RawVector3Vector","dnac::DNACalibDNAReaderImpl::setVertexPositions::positions"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setVertexPositions::xs"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setVertexPositions::ys"],[12,2,1,"_CPPv4N4dnac21DNACalibDNAReaderImpl18setVertexPositionsENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::DNACalibDNAReaderImpl::setVertexPositions::zs"],[12,1,1,"_CPPv4N4dnac21DNACalibDNAReaderImplD0Ev","dnac::DNACalibDNAReaderImpl::~DNACalibDNAReaderImpl"],[12,0,1,"_CPPv4I0EN4dnac16DenormalizedDataE","dnac::DenormalizedData"],[12,1,1,"_CPPv4N4dnac16DenormalizedData16DenormalizedDataEP14MemoryResource","dnac::DenormalizedData::DenormalizedData"],[12,2,1,"_CPPv4N4dnac16DenormalizedData16DenormalizedDataEP14MemoryResource","dnac::DenormalizedData::DenormalizedData::memRes"],[12,5,1,"_CPPv4I0EN4dnac16DenormalizedDataE","dnac::DenormalizedData::Reader"],[12,3,1,"_CPPv4N4dnac16DenormalizedData29jointVariableAttributeIndicesE","dnac::DenormalizedData::jointVariableAttributeIndices"],[12,3,1,"_CPPv4N4dnac16DenormalizedData28meshBlendShapeMappingIndicesE","dnac::DenormalizedData::meshBlendShapeMappingIndices"],[12,1,1,"_CPPv4N4dnac16DenormalizedData8populateEPK6Reader","dnac::DenormalizedData::populate"],[12,2,1,"_CPPv4N4dnac16DenormalizedData8populateEPK6Reader","dnac::DenormalizedData::populate::source"],[12,1,1,"_CPPv4N4dnac16DenormalizedData37populateJointVariableAttributeIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateJointVariableAttributeIndices"],[12,2,1,"_CPPv4N4dnac16DenormalizedData37populateJointVariableAttributeIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateJointVariableAttributeIndices::destination"],[12,2,1,"_CPPv4N4dnac16DenormalizedData37populateJointVariableAttributeIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateJointVariableAttributeIndices::source"],[12,1,1,"_CPPv4N4dnac16DenormalizedData36populateMeshBlendShapeMappingIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateMeshBlendShapeMappingIndices"],[12,2,1,"_CPPv4N4dnac16DenormalizedData36populateMeshBlendShapeMappingIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateMeshBlendShapeMappingIndices::destination"],[12,2,1,"_CPPv4N4dnac16DenormalizedData36populateMeshBlendShapeMappingIndicesEPKN3dna6ReaderER10LODMapping","dnac::DenormalizedData::populateMeshBlendShapeMappingIndices::source"],[12,0,1,"_CPPv4I0EN4dnac13ExpectedValueE","dnac::ExpectedValue"],[12,1,1,"_CPPv4N4dnac13ExpectedValue13ExpectedValueERK1T","dnac::ExpectedValue::ExpectedValue"],[12,2,1,"_CPPv4N4dnac13ExpectedValue13ExpectedValueERK1T","dnac::ExpectedValue::ExpectedValue::value"],[12,5,1,"_CPPv4I0EN4dnac13ExpectedValueE","dnac::ExpectedValue::T"],[12,3,1,"_CPPv4N4dnac13ExpectedValue8expectedE","dnac::ExpectedValue::expected"],[12,3,1,"_CPPv4N4dnac13ExpectedValue3gotE","dnac::ExpectedValue::got"],[12,1,1,"_CPPv4I0EN4dnac13ExpectedValue4loadEvR7Archive","dnac::ExpectedValue::load"],[12,5,1,"_CPPv4I0EN4dnac13ExpectedValue4loadEvR7Archive","dnac::ExpectedValue::load::Archive"],[12,2,1,"_CPPv4I0EN4dnac13ExpectedValue4loadEvR7Archive","dnac::ExpectedValue::load::archive"],[12,1,1,"_CPPv4NK4dnac13ExpectedValue7matchesEv","dnac::ExpectedValue::matches"],[12,1,1,"_CPPv4I0EN4dnac13ExpectedValue4saveEvR7Archive","dnac::ExpectedValue::save"],[12,5,1,"_CPPv4I0EN4dnac13ExpectedValue4saveEvR7Archive","dnac::ExpectedValue::save::Archive"],[12,2,1,"_CPPv4I0EN4dnac13ExpectedValue4saveEvR7Archive","dnac::ExpectedValue::save::archive"],[12,0,1,"_CPPv4N4dnac11JointFilterE","dnac::JointFilter"],[12,1,1,"_CPPv4N4dnac11JointFilter11JointFilterEP14MemoryResource","dnac::JointFilter::JointFilter"],[12,2,1,"_CPPv4N4dnac11JointFilter11JointFilterEP14MemoryResource","dnac::JointFilter::JointFilter::memRes_"],[12,6,1,"_CPPv4N4dnac11JointFilter6OptionE","dnac::JointFilter::Option"],[12,7,1,"_CPPv4N4dnac11JointFilter6Option3AllE","dnac::JointFilter::Option::All"],[12,7,1,"_CPPv4N4dnac11JointFilter6Option13AnimationOnlyE","dnac::JointFilter::Option::AnimationOnly"],[12,1,1,"_CPPv4N4dnac11JointFilter5applyER11RawBehavior","dnac::JointFilter::apply"],[12,1,1,"_CPPv4N4dnac11JointFilter5applyER13RawDefinition","dnac::JointFilter::apply"],[12,1,1,"_CPPv4N4dnac11JointFilter5applyER20RawVertexSkinWeights","dnac::JointFilter::apply"],[12,2,1,"_CPPv4N4dnac11JointFilter5applyER11RawBehavior","dnac::JointFilter::apply::dest"],[12,2,1,"_CPPv4N4dnac11JointFilter5applyER13RawDefinition","dnac::JointFilter::apply::dest"],[12,2,1,"_CPPv4N4dnac11JointFilter5applyER20RawVertexSkinWeights","dnac::JointFilter::apply::dest"],[12,1,1,"_CPPv4N4dnac11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dnac::JointFilter::configure"],[12,2,1,"_CPPv4N4dnac11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dnac::JointFilter::configure::allowedJointIndices"],[12,2,1,"_CPPv4N4dnac11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dnac::JointFilter::configure::jointCount"],[12,2,1,"_CPPv4N4dnac11JointFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE6Option","dnac::JointFilter::configure::option_"],[12,1,1,"_CPPv4NK4dnac11JointFilter16maxRemappedIndexEv","dnac::JointFilter::maxRemappedIndex"],[12,3,1,"_CPPv4N4dnac11JointFilter6memResE","dnac::JointFilter::memRes"],[12,3,1,"_CPPv4N4dnac11JointFilter6optionE","dnac::JointFilter::option"],[12,1,1,"_CPPv4NK4dnac11JointFilter6passesENSt8uint16_tE","dnac::JointFilter::passes"],[12,2,1,"_CPPv4NK4dnac11JointFilter6passesENSt8uint16_tE","dnac::JointFilter::passes::index"],[12,3,1,"_CPPv4N4dnac11JointFilter14passingIndicesE","dnac::JointFilter::passingIndices"],[12,1,1,"_CPPv4NK4dnac11JointFilter8remappedENSt8uint16_tE","dnac::JointFilter::remapped"],[12,2,1,"_CPPv4NK4dnac11JointFilter8remappedENSt8uint16_tE","dnac::JointFilter::remapped::oldIndex"],[12,3,1,"_CPPv4N4dnac11JointFilter15remappedIndicesE","dnac::JointFilter::remappedIndices"],[12,3,1,"_CPPv4N4dnac11JointFilter14rootJointIndexE","dnac::JointFilter::rootJointIndex"],[12,0,1,"_CPPv4N4dnac13LODConstraintE","dnac::LODConstraint"],[12,1,1,"_CPPv4N4dnac13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::LODConstraint::LODConstraint"],[12,1,1,"_CPPv4N4dnac13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dnac::LODConstraint::LODConstraint"],[12,2,1,"_CPPv4N4dnac13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::LODConstraint::LODConstraint::lods"],[12,2,1,"_CPPv4N4dnac13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dnac::LODConstraint::LODConstraint::maxLOD"],[12,2,1,"_CPPv4N4dnac13LODConstraint13LODConstraintE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::LODConstraint::LODConstraint::memRes"],[12,2,1,"_CPPv4N4dnac13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dnac::LODConstraint::LODConstraint::memRes"],[12,2,1,"_CPPv4N4dnac13LODConstraint13LODConstraintENSt8uint16_tENSt8uint16_tEP14MemoryResource","dnac::LODConstraint::LODConstraint::minLOD"],[12,1,1,"_CPPv4NK4dnac13LODConstraint7applyToER6VectorINSt8uint16_tEE","dnac::LODConstraint::applyTo"],[12,1,1,"_CPPv4NK4dnac13LODConstraint7applyToER8DynArrayINSt8uint16_tEE","dnac::LODConstraint::applyTo"],[12,2,1,"_CPPv4NK4dnac13LODConstraint7applyToER6VectorINSt8uint16_tEE","dnac::LODConstraint::applyTo::unconstrainedLODs"],[12,2,1,"_CPPv4NK4dnac13LODConstraint7applyToER8DynArrayINSt8uint16_tEE","dnac::LODConstraint::applyTo::unconstrainedLODs"],[12,1,1,"_CPPv4N4dnac13LODConstraint7clampToENSt8uint16_tE","dnac::LODConstraint::clampTo"],[12,2,1,"_CPPv4N4dnac13LODConstraint7clampToENSt8uint16_tE","dnac::LODConstraint::clampTo::lodCount"],[12,1,1,"_CPPv4NK4dnac13LODConstraint11getLODCountEv","dnac::LODConstraint::getLODCount"],[12,1,1,"_CPPv4NK4dnac13LODConstraint9getMaxLODEv","dnac::LODConstraint::getMaxLOD"],[12,1,1,"_CPPv4NK4dnac13LODConstraint9getMinLODEv","dnac::LODConstraint::getMinLOD"],[12,1,1,"_CPPv4NK4dnac13LODConstraint11hasImpactOnENSt8uint16_tE","dnac::LODConstraint::hasImpactOn"],[12,2,1,"_CPPv4NK4dnac13LODConstraint11hasImpactOnENSt8uint16_tE","dnac::LODConstraint::hasImpactOn::lodCount"],[12,3,1,"_CPPv4N4dnac13LODConstraint4lodsE","dnac::LODConstraint::lods"],[12,0,1,"_CPPv4N4dnac10LODMappingE","dnac::LODMapping"],[12,1,1,"_CPPv4N4dnac10LODMapping10LODMappingEP14MemoryResource","dnac::LODMapping::LODMapping"],[12,2,1,"_CPPv4N4dnac10LODMapping10LODMappingEP14MemoryResource","dnac::LODMapping::LODMapping::memRes_"],[12,1,1,"_CPPv4N4dnac10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::LODMapping::addIndices"],[12,2,1,"_CPPv4N4dnac10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::LODMapping::addIndices::count"],[12,2,1,"_CPPv4N4dnac10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::LODMapping::addIndices::index"],[12,2,1,"_CPPv4N4dnac10LODMapping10addIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::LODMapping::addIndices::source"],[12,1,1,"_CPPv4N4dnac10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dnac::LODMapping::associateLODWithIndices"],[12,2,1,"_CPPv4N4dnac10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dnac::LODMapping::associateLODWithIndices::index"],[12,2,1,"_CPPv4N4dnac10LODMapping23associateLODWithIndicesENSt8uint16_tENSt8uint16_tE","dnac::LODMapping::associateLODWithIndices::lod"],[12,1,1,"_CPPv4N4dnac10LODMapping14cleanupIndicesEv","dnac::LODMapping::cleanupIndices"],[12,1,1,"_CPPv4N4dnac10LODMapping12clearIndicesENSt8uint16_tE","dnac::LODMapping::clearIndices"],[12,2,1,"_CPPv4N4dnac10LODMapping12clearIndicesENSt8uint16_tE","dnac::LODMapping::clearIndices::index"],[12,1,1,"_CPPv4N4dnac10LODMapping11discardLODsERK13LODConstraint","dnac::LODMapping::discardLODs"],[12,2,1,"_CPPv4N4dnac10LODMapping11discardLODsERK13LODConstraint","dnac::LODMapping::discardLODs::lodConstraint"],[12,1,1,"_CPPv4N4dnac10LODMapping13filterIndicesENSt8functionIFbNSt8uint16_tEEEE","dnac::LODMapping::filterIndices"],[12,2,1,"_CPPv4N4dnac10LODMapping13filterIndicesENSt8functionIFbNSt8uint16_tEEEE","dnac::LODMapping::filterIndices::filterer"],[12,1,1,"_CPPv4NK4dnac10LODMapping26getCombinedDistinctIndicesEP14MemoryResource","dnac::LODMapping::getCombinedDistinctIndices"],[12,2,1,"_CPPv4NK4dnac10LODMapping26getCombinedDistinctIndicesEP14MemoryResource","dnac::LODMapping::getCombinedDistinctIndices::memRes"],[12,1,1,"_CPPv4NK4dnac10LODMapping17getIndexListCountEv","dnac::LODMapping::getIndexListCount"],[12,1,1,"_CPPv4NK4dnac10LODMapping10getIndicesENSt8uint16_tE","dnac::LODMapping::getIndices"],[12,2,1,"_CPPv4NK4dnac10LODMapping10getIndicesENSt8uint16_tE","dnac::LODMapping::getIndices::lod"],[12,1,1,"_CPPv4NK4dnac10LODMapping11getLODCountEv","dnac::LODMapping::getLODCount"],[12,3,1,"_CPPv4N4dnac10LODMapping7indicesE","dnac::LODMapping::indices"],[12,3,1,"_CPPv4N4dnac10LODMapping4lodsE","dnac::LODMapping::lods"],[12,1,1,"_CPPv4N4dnac10LODMapping10mapIndicesENSt8functionIFNSt8uint16_tENSt8uint16_tEEEE","dnac::LODMapping::mapIndices"],[12,2,1,"_CPPv4N4dnac10LODMapping10mapIndicesENSt8functionIFNSt8uint16_tENSt8uint16_tEEEE","dnac::LODMapping::mapIndices::mapper"],[12,1,1,"_CPPv4N4dnac10LODMapping5resetEv","dnac::LODMapping::reset"],[12,1,1,"_CPPv4N4dnac10LODMapping12resetIndicesEv","dnac::LODMapping::resetIndices"],[12,1,1,"_CPPv4N4dnac10LODMapping9resetLODsEv","dnac::LODMapping::resetLODs"],[12,1,1,"_CPPv4N4dnac10LODMapping11setLODCountENSt8uint16_tE","dnac::LODMapping::setLODCount"],[12,2,1,"_CPPv4N4dnac10LODMapping11setLODCountENSt8uint16_tE","dnac::LODMapping::setLODCount::lodCount"],[12,0,1,"_CPPv4N4dnac10MeshFilterE","dnac::MeshFilter"],[12,1,1,"_CPPv4N4dnac10MeshFilter10MeshFilterEP14MemoryResource","dnac::MeshFilter::MeshFilter"],[12,2,1,"_CPPv4N4dnac10MeshFilter10MeshFilterEP14MemoryResource","dnac::MeshFilter::MeshFilter::memRes_"],[12,1,1,"_CPPv4N4dnac10MeshFilter5applyER13RawDefinition","dnac::MeshFilter::apply"],[12,2,1,"_CPPv4N4dnac10MeshFilter5applyER13RawDefinition","dnac::MeshFilter::apply::dest"],[12,1,1,"_CPPv4N4dnac10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dnac::MeshFilter::configure"],[12,2,1,"_CPPv4N4dnac10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dnac::MeshFilter::configure::allowedMeshIndices"],[12,2,1,"_CPPv4N4dnac10MeshFilter9configureENSt8uint16_tE12UnorderedSetINSt8uint16_tEE","dnac::MeshFilter::configure::meshCount"],[12,3,1,"_CPPv4N4dnac10MeshFilter6memResE","dnac::MeshFilter::memRes"],[12,1,1,"_CPPv4NK4dnac10MeshFilter6passesENSt8uint16_tE","dnac::MeshFilter::passes"],[12,2,1,"_CPPv4NK4dnac10MeshFilter6passesENSt8uint16_tE","dnac::MeshFilter::passes::index"],[12,3,1,"_CPPv4N4dnac10MeshFilter14passingIndicesE","dnac::MeshFilter::passingIndices"],[12,3,1,"_CPPv4N4dnac10MeshFilter15remappedIndicesE","dnac::MeshFilter::remappedIndices"],[12,0,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommandE","dnac::PruneBlendShapeTargetsCommand"],[12,0,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4ImplE","dnac::PruneBlendShapeTargetsCommand::Impl"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl4ImplEP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl4ImplEP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl5SuperE","dnac::PruneBlendShapeTargetsCommand::Impl::Super"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::PruneBlendShapeTargetsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::PruneBlendShapeTargetsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl12setThresholdEf","dnac::PruneBlendShapeTargetsCommand::Impl::setThreshold"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl12setThresholdEf","dnac::PruneBlendShapeTargetsCommand::Impl::setThreshold::threshold_"],[12,3,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand4Impl9thresholdE","dnac::PruneBlendShapeTargetsCommand::Impl::threshold"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandEP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandERK29PruneBlendShapeTargetsCommand","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandERR29PruneBlendShapeTargetsCommand","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandEfP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandEP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand::memRes"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandEfP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand::memRes"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand29PruneBlendShapeTargetsCommandEfP14MemoryResource","dnac::PruneBlendShapeTargetsCommand::PruneBlendShapeTargetsCommand::threshold"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommandaSERK29PruneBlendShapeTargetsCommand","dnac::PruneBlendShapeTargetsCommand::operator="],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommandaSERR29PruneBlendShapeTargetsCommand","dnac::PruneBlendShapeTargetsCommand::operator="],[12,3,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand5pImplE","dnac::PruneBlendShapeTargetsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand3runEP17DNACalibDNAReader","dnac::PruneBlendShapeTargetsCommand::run"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand3runEP17DNACalibDNAReader","dnac::PruneBlendShapeTargetsCommand::run::output"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand12setThresholdEf","dnac::PruneBlendShapeTargetsCommand::setThreshold"],[12,2,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommand12setThresholdEf","dnac::PruneBlendShapeTargetsCommand::setThreshold::threshold"],[12,1,1,"_CPPv4N4dnac29PruneBlendShapeTargetsCommandD0Ev","dnac::PruneBlendShapeTargetsCommand::~PruneBlendShapeTargetsCommand"],[12,0,1,"_CPPv4N4dnac15RawAnimatedMapsE","dnac::RawAnimatedMaps"],[12,1,1,"_CPPv4N4dnac15RawAnimatedMaps15RawAnimatedMapsEP14MemoryResource","dnac::RawAnimatedMaps::RawAnimatedMaps"],[12,2,1,"_CPPv4N4dnac15RawAnimatedMaps15RawAnimatedMapsEP14MemoryResource","dnac::RawAnimatedMaps::RawAnimatedMaps::memRes"],[12,3,1,"_CPPv4N4dnac15RawAnimatedMaps12conditionalsE","dnac::RawAnimatedMaps::conditionals"],[12,3,1,"_CPPv4N4dnac15RawAnimatedMaps4lodsE","dnac::RawAnimatedMaps::lods"],[12,1,1,"_CPPv4I0EN4dnac15RawAnimatedMaps9serializeEvR7Archive","dnac::RawAnimatedMaps::serialize"],[12,5,1,"_CPPv4I0EN4dnac15RawAnimatedMaps9serializeEvR7Archive","dnac::RawAnimatedMaps::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac15RawAnimatedMaps9serializeEvR7Archive","dnac::RawAnimatedMaps::serialize::archive"],[12,0,1,"_CPPv4N4dnac11RawBehaviorE","dnac::RawBehavior"],[12,1,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::animatedMapsMarkerTarget"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::blendShapeChannelsMarkerTarget"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::controlsMarkerTarget"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::jointsMarkerTarget"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::markerTarget"],[12,2,1,"_CPPv4N4dnac11RawBehavior11RawBehaviorERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawBehavior::RawBehavior::memRes"],[12,3,1,"_CPPv4N4dnac11RawBehavior12animatedMapsE","dnac::RawBehavior::animatedMaps"],[12,3,1,"_CPPv4N4dnac11RawBehavior18animatedMapsMarkerE","dnac::RawBehavior::animatedMapsMarker"],[12,3,1,"_CPPv4N4dnac11RawBehavior18blendShapeChannelsE","dnac::RawBehavior::blendShapeChannels"],[12,3,1,"_CPPv4N4dnac11RawBehavior24blendShapeChannelsMarkerE","dnac::RawBehavior::blendShapeChannelsMarker"],[12,3,1,"_CPPv4N4dnac11RawBehavior8controlsE","dnac::RawBehavior::controls"],[12,3,1,"_CPPv4N4dnac11RawBehavior14controlsMarkerE","dnac::RawBehavior::controlsMarker"],[12,3,1,"_CPPv4N4dnac11RawBehavior6jointsE","dnac::RawBehavior::joints"],[12,3,1,"_CPPv4N4dnac11RawBehavior12jointsMarkerE","dnac::RawBehavior::jointsMarker"],[12,3,1,"_CPPv4N4dnac11RawBehavior6markerE","dnac::RawBehavior::marker"],[12,1,1,"_CPPv4I0EN4dnac11RawBehavior9serializeEvR7Archive","dnac::RawBehavior::serialize"],[12,5,1,"_CPPv4I0EN4dnac11RawBehavior9serializeEvR7Archive","dnac::RawBehavior::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac11RawBehavior9serializeEvR7Archive","dnac::RawBehavior::serialize::archive"],[12,0,1,"_CPPv4N4dnac21RawBlendShapeChannelsE","dnac::RawBlendShapeChannels"],[12,1,1,"_CPPv4N4dnac21RawBlendShapeChannels21RawBlendShapeChannelsEP14MemoryResource","dnac::RawBlendShapeChannels::RawBlendShapeChannels"],[12,2,1,"_CPPv4N4dnac21RawBlendShapeChannels21RawBlendShapeChannelsEP14MemoryResource","dnac::RawBlendShapeChannels::RawBlendShapeChannels::memRes"],[12,3,1,"_CPPv4N4dnac21RawBlendShapeChannels12inputIndicesE","dnac::RawBlendShapeChannels::inputIndices"],[12,3,1,"_CPPv4N4dnac21RawBlendShapeChannels4lodsE","dnac::RawBlendShapeChannels::lods"],[12,3,1,"_CPPv4N4dnac21RawBlendShapeChannels13outputIndicesE","dnac::RawBlendShapeChannels::outputIndices"],[12,1,1,"_CPPv4I0EN4dnac21RawBlendShapeChannels9serializeEvR7Archive","dnac::RawBlendShapeChannels::serialize"],[12,5,1,"_CPPv4I0EN4dnac21RawBlendShapeChannels9serializeEvR7Archive","dnac::RawBlendShapeChannels::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac21RawBlendShapeChannels9serializeEvR7Archive","dnac::RawBlendShapeChannels::serialize::archive"],[12,0,1,"_CPPv4N4dnac19RawBlendShapeTargetE","dnac::RawBlendShapeTarget"],[12,1,1,"_CPPv4N4dnac19RawBlendShapeTarget19RawBlendShapeTargetEP14MemoryResource","dnac::RawBlendShapeTarget::RawBlendShapeTarget"],[12,2,1,"_CPPv4N4dnac19RawBlendShapeTarget19RawBlendShapeTargetEP14MemoryResource","dnac::RawBlendShapeTarget::RawBlendShapeTarget::memRes"],[12,3,1,"_CPPv4N4dnac19RawBlendShapeTarget22blendShapeChannelIndexE","dnac::RawBlendShapeTarget::blendShapeChannelIndex"],[12,3,1,"_CPPv4N4dnac19RawBlendShapeTarget6deltasE","dnac::RawBlendShapeTarget::deltas"],[12,1,1,"_CPPv4I0EN4dnac19RawBlendShapeTarget9serializeEvR7Archive","dnac::RawBlendShapeTarget::serialize"],[12,5,1,"_CPPv4I0EN4dnac19RawBlendShapeTarget9serializeEvR7Archive","dnac::RawBlendShapeTarget::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac19RawBlendShapeTarget9serializeEvR7Archive","dnac::RawBlendShapeTarget::serialize::archive"],[12,3,1,"_CPPv4N4dnac19RawBlendShapeTarget13vertexIndicesE","dnac::RawBlendShapeTarget::vertexIndices"],[12,0,1,"_CPPv4N4dnac19RawConditionalTableE","dnac::RawConditionalTable"],[12,1,1,"_CPPv4N4dnac19RawConditionalTable19RawConditionalTableEP14MemoryResource","dnac::RawConditionalTable::RawConditionalTable"],[12,2,1,"_CPPv4N4dnac19RawConditionalTable19RawConditionalTableEP14MemoryResource","dnac::RawConditionalTable::RawConditionalTable::memRes"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable9cutValuesE","dnac::RawConditionalTable::cutValues"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable10fromValuesE","dnac::RawConditionalTable::fromValues"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable12inputIndicesE","dnac::RawConditionalTable::inputIndices"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable13outputIndicesE","dnac::RawConditionalTable::outputIndices"],[12,1,1,"_CPPv4I0EN4dnac19RawConditionalTable9serializeEvR7Archive","dnac::RawConditionalTable::serialize"],[12,5,1,"_CPPv4I0EN4dnac19RawConditionalTable9serializeEvR7Archive","dnac::RawConditionalTable::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac19RawConditionalTable9serializeEvR7Archive","dnac::RawConditionalTable::serialize::archive"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable11slopeValuesE","dnac::RawConditionalTable::slopeValues"],[12,3,1,"_CPPv4N4dnac19RawConditionalTable8toValuesE","dnac::RawConditionalTable::toValues"],[12,0,1,"_CPPv4N4dnac11RawControlsE","dnac::RawControls"],[12,1,1,"_CPPv4N4dnac11RawControls11RawControlsEP14MemoryResource","dnac::RawControls::RawControls"],[12,2,1,"_CPPv4N4dnac11RawControls11RawControlsEP14MemoryResource","dnac::RawControls::RawControls::memRes"],[12,3,1,"_CPPv4N4dnac11RawControls12conditionalsE","dnac::RawControls::conditionals"],[12,3,1,"_CPPv4N4dnac11RawControls8psdCountE","dnac::RawControls::psdCount"],[12,3,1,"_CPPv4N4dnac11RawControls4psdsE","dnac::RawControls::psds"],[12,1,1,"_CPPv4I0EN4dnac11RawControls9serializeEvR7Archive","dnac::RawControls::serialize"],[12,5,1,"_CPPv4I0EN4dnac11RawControls9serializeEvR7Archive","dnac::RawControls::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac11RawControls9serializeEvR7Archive","dnac::RawControls::serialize::archive"],[12,0,1,"_CPPv4N4dnac19RawCoordinateSystemE","dnac::RawCoordinateSystem"],[12,1,1,"_CPPv4I0EN4dnac19RawCoordinateSystem9serializeEvR7Archive","dnac::RawCoordinateSystem::serialize"],[12,5,1,"_CPPv4I0EN4dnac19RawCoordinateSystem9serializeEvR7Archive","dnac::RawCoordinateSystem::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac19RawCoordinateSystem9serializeEvR7Archive","dnac::RawCoordinateSystem::serialize::archive"],[12,3,1,"_CPPv4N4dnac19RawCoordinateSystem5xAxisE","dnac::RawCoordinateSystem::xAxis"],[12,3,1,"_CPPv4N4dnac19RawCoordinateSystem5yAxisE","dnac::RawCoordinateSystem::yAxis"],[12,3,1,"_CPPv4N4dnac19RawCoordinateSystem5zAxisE","dnac::RawCoordinateSystem::zAxis"],[12,0,1,"_CPPv4N4dnac13RawDefinitionE","dnac::RawDefinition"],[12,1,1,"_CPPv4N4dnac13RawDefinition13RawDefinitionERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDefinition::RawDefinition"],[12,2,1,"_CPPv4N4dnac13RawDefinition13RawDefinitionERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDefinition::RawDefinition::markerTarget"],[12,2,1,"_CPPv4N4dnac13RawDefinition13RawDefinitionERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDefinition::RawDefinition::memRes"],[12,3,1,"_CPPv4N4dnac13RawDefinition16animatedMapNamesE","dnac::RawDefinition::animatedMapNames"],[12,3,1,"_CPPv4N4dnac13RawDefinition22blendShapeChannelNamesE","dnac::RawDefinition::blendShapeChannelNames"],[12,3,1,"_CPPv4N4dnac13RawDefinition15guiControlNamesE","dnac::RawDefinition::guiControlNames"],[12,3,1,"_CPPv4N4dnac13RawDefinition14jointHierarchyE","dnac::RawDefinition::jointHierarchy"],[12,3,1,"_CPPv4N4dnac13RawDefinition10jointNamesE","dnac::RawDefinition::jointNames"],[12,3,1,"_CPPv4N4dnac13RawDefinition21lodAnimatedMapMappingE","dnac::RawDefinition::lodAnimatedMapMapping"],[12,3,1,"_CPPv4N4dnac13RawDefinition20lodBlendShapeMappingE","dnac::RawDefinition::lodBlendShapeMapping"],[12,3,1,"_CPPv4N4dnac13RawDefinition15lodJointMappingE","dnac::RawDefinition::lodJointMapping"],[12,3,1,"_CPPv4N4dnac13RawDefinition14lodMeshMappingE","dnac::RawDefinition::lodMeshMapping"],[12,3,1,"_CPPv4N4dnac13RawDefinition6markerE","dnac::RawDefinition::marker"],[12,3,1,"_CPPv4N4dnac13RawDefinition28meshBlendShapeChannelMappingE","dnac::RawDefinition::meshBlendShapeChannelMapping"],[12,3,1,"_CPPv4N4dnac13RawDefinition9meshNamesE","dnac::RawDefinition::meshNames"],[12,3,1,"_CPPv4N4dnac13RawDefinition21neutralJointRotationsE","dnac::RawDefinition::neutralJointRotations"],[12,3,1,"_CPPv4N4dnac13RawDefinition24neutralJointTranslationsE","dnac::RawDefinition::neutralJointTranslations"],[12,3,1,"_CPPv4N4dnac13RawDefinition15rawControlNamesE","dnac::RawDefinition::rawControlNames"],[12,1,1,"_CPPv4I0EN4dnac13RawDefinition9serializeEvR7Archive","dnac::RawDefinition::serialize"],[12,5,1,"_CPPv4I0EN4dnac13RawDefinition9serializeEvR7Archive","dnac::RawDefinition::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac13RawDefinition9serializeEvR7Archive","dnac::RawDefinition::serialize::archive"],[12,0,1,"_CPPv4N4dnac13RawDescriptorE","dnac::RawDescriptor"],[12,1,1,"_CPPv4N4dnac13RawDescriptor13RawDescriptorERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDescriptor::RawDescriptor"],[12,2,1,"_CPPv4N4dnac13RawDescriptor13RawDescriptorERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDescriptor::RawDescriptor::markerTarget"],[12,2,1,"_CPPv4N4dnac13RawDescriptor13RawDescriptorERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawDescriptor::RawDescriptor::memRes"],[12,4,1,"_CPPv4N4dnac13RawDescriptor10StringPairE","dnac::RawDescriptor::StringPair"],[12,3,1,"_CPPv4N4dnac13RawDescriptor3ageE","dnac::RawDescriptor::age"],[12,3,1,"_CPPv4N4dnac13RawDescriptor9archetypeE","dnac::RawDescriptor::archetype"],[12,3,1,"_CPPv4N4dnac13RawDescriptor10complexityE","dnac::RawDescriptor::complexity"],[12,3,1,"_CPPv4N4dnac13RawDescriptor16coordinateSystemE","dnac::RawDescriptor::coordinateSystem"],[12,3,1,"_CPPv4N4dnac13RawDescriptor6dbNameE","dnac::RawDescriptor::dbName"],[12,3,1,"_CPPv4N4dnac13RawDescriptor6genderE","dnac::RawDescriptor::gender"],[12,3,1,"_CPPv4N4dnac13RawDescriptor8lodCountE","dnac::RawDescriptor::lodCount"],[12,3,1,"_CPPv4N4dnac13RawDescriptor6markerE","dnac::RawDescriptor::marker"],[12,3,1,"_CPPv4N4dnac13RawDescriptor6maxLODE","dnac::RawDescriptor::maxLOD"],[12,3,1,"_CPPv4N4dnac13RawDescriptor8metadataE","dnac::RawDescriptor::metadata"],[12,3,1,"_CPPv4N4dnac13RawDescriptor4nameE","dnac::RawDescriptor::name"],[12,3,1,"_CPPv4N4dnac13RawDescriptor12rotationUnitE","dnac::RawDescriptor::rotationUnit"],[12,1,1,"_CPPv4I0EN4dnac13RawDescriptor9serializeEvR7Archive","dnac::RawDescriptor::serialize"],[12,5,1,"_CPPv4I0EN4dnac13RawDescriptor9serializeEvR7Archive","dnac::RawDescriptor::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac13RawDescriptor9serializeEvR7Archive","dnac::RawDescriptor::serialize::archive"],[12,3,1,"_CPPv4N4dnac13RawDescriptor15translationUnitE","dnac::RawDescriptor::translationUnit"],[12,0,1,"_CPPv4N4dnac7RawFaceE","dnac::RawFace"],[12,1,1,"_CPPv4N4dnac7RawFace7RawFaceEP14MemoryResource","dnac::RawFace::RawFace"],[12,2,1,"_CPPv4N4dnac7RawFace7RawFaceEP14MemoryResource","dnac::RawFace::RawFace::memRes"],[12,3,1,"_CPPv4N4dnac7RawFace13layoutIndicesE","dnac::RawFace::layoutIndices"],[12,1,1,"_CPPv4I0EN4dnac7RawFace9serializeEvR7Archive","dnac::RawFace::serialize"],[12,5,1,"_CPPv4I0EN4dnac7RawFace9serializeEvR7Archive","dnac::RawFace::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac7RawFace9serializeEvR7Archive","dnac::RawFace::serialize::archive"],[12,0,1,"_CPPv4N4dnac11RawGeometryE","dnac::RawGeometry"],[12,1,1,"_CPPv4N4dnac11RawGeometry11RawGeometryERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawGeometry::RawGeometry"],[12,2,1,"_CPPv4N4dnac11RawGeometry11RawGeometryERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawGeometry::RawGeometry::markerTarget"],[12,2,1,"_CPPv4N4dnac11RawGeometry11RawGeometryERN5terse13ArchiveOffsetINSt8uint32_tEEEP14MemoryResource","dnac::RawGeometry::RawGeometry::memRes"],[12,3,1,"_CPPv4N4dnac11RawGeometry6markerE","dnac::RawGeometry::marker"],[12,3,1,"_CPPv4N4dnac11RawGeometry6meshesE","dnac::RawGeometry::meshes"],[12,1,1,"_CPPv4I0EN4dnac11RawGeometry9serializeEvR7Archive","dnac::RawGeometry::serialize"],[12,5,1,"_CPPv4I0EN4dnac11RawGeometry9serializeEvR7Archive","dnac::RawGeometry::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac11RawGeometry9serializeEvR7Archive","dnac::RawGeometry::serialize::archive"],[12,0,1,"_CPPv4N4dnac13RawJointGroupE","dnac::RawJointGroup"],[12,1,1,"_CPPv4N4dnac13RawJointGroup13RawJointGroupEP14MemoryResource","dnac::RawJointGroup::RawJointGroup"],[12,2,1,"_CPPv4N4dnac13RawJointGroup13RawJointGroupEP14MemoryResource","dnac::RawJointGroup::RawJointGroup::memRes"],[12,3,1,"_CPPv4N4dnac13RawJointGroup12inputIndicesE","dnac::RawJointGroup::inputIndices"],[12,3,1,"_CPPv4N4dnac13RawJointGroup12jointIndicesE","dnac::RawJointGroup::jointIndices"],[12,3,1,"_CPPv4N4dnac13RawJointGroup4lodsE","dnac::RawJointGroup::lods"],[12,3,1,"_CPPv4N4dnac13RawJointGroup13outputIndicesE","dnac::RawJointGroup::outputIndices"],[12,1,1,"_CPPv4I0EN4dnac13RawJointGroup9serializeEvR7Archive","dnac::RawJointGroup::serialize"],[12,5,1,"_CPPv4I0EN4dnac13RawJointGroup9serializeEvR7Archive","dnac::RawJointGroup::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac13RawJointGroup9serializeEvR7Archive","dnac::RawJointGroup::serialize::archive"],[12,3,1,"_CPPv4N4dnac13RawJointGroup6valuesE","dnac::RawJointGroup::values"],[12,0,1,"_CPPv4N4dnac9RawJointsE","dnac::RawJoints"],[12,1,1,"_CPPv4N4dnac9RawJoints9RawJointsEP14MemoryResource","dnac::RawJoints::RawJoints"],[12,2,1,"_CPPv4N4dnac9RawJoints9RawJointsEP14MemoryResource","dnac::RawJoints::RawJoints::memRes"],[12,3,1,"_CPPv4N4dnac9RawJoints8colCountE","dnac::RawJoints::colCount"],[12,3,1,"_CPPv4N4dnac9RawJoints11jointGroupsE","dnac::RawJoints::jointGroups"],[12,3,1,"_CPPv4N4dnac9RawJoints8rowCountE","dnac::RawJoints::rowCount"],[12,1,1,"_CPPv4I0EN4dnac9RawJoints9serializeEvR7Archive","dnac::RawJoints::serialize"],[12,5,1,"_CPPv4I0EN4dnac9RawJoints9serializeEvR7Archive","dnac::RawJoints::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac9RawJoints9serializeEvR7Archive","dnac::RawJoints::serialize::archive"],[12,0,1,"_CPPv4N4dnac13RawLODMappingE","dnac::RawLODMapping"],[12,1,1,"_CPPv4N4dnac13RawLODMapping10LODMappingEP14MemoryResource","dnac::RawLODMapping::LODMapping"],[12,2,1,"_CPPv4N4dnac13RawLODMapping10LODMappingEP14MemoryResource","dnac::RawLODMapping::LODMapping::memRes_"],[12,1,1,"_CPPv4I0EN4dnac13RawLODMapping9serializeEvR7Archive","dnac::RawLODMapping::serialize"],[12,5,1,"_CPPv4I0EN4dnac13RawLODMapping9serializeEvR7Archive","dnac::RawLODMapping::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac13RawLODMapping9serializeEvR7Archive","dnac::RawLODMapping::serialize::archive"],[12,0,1,"_CPPv4N4dnac7RawMeshE","dnac::RawMesh"],[12,1,1,"_CPPv4N4dnac7RawMesh7RawMeshEP14MemoryResource","dnac::RawMesh::RawMesh"],[12,2,1,"_CPPv4N4dnac7RawMesh7RawMeshEP14MemoryResource","dnac::RawMesh::RawMesh::memRes"],[12,3,1,"_CPPv4N4dnac7RawMesh17blendShapeTargetsE","dnac::RawMesh::blendShapeTargets"],[12,3,1,"_CPPv4N4dnac7RawMesh5facesE","dnac::RawMesh::faces"],[12,3,1,"_CPPv4N4dnac7RawMesh7layoutsE","dnac::RawMesh::layouts"],[12,3,1,"_CPPv4N4dnac7RawMesh6markerE","dnac::RawMesh::marker"],[12,3,1,"_CPPv4N4dnac7RawMesh25maximumInfluencePerVertexE","dnac::RawMesh::maximumInfluencePerVertex"],[12,3,1,"_CPPv4N4dnac7RawMesh7normalsE","dnac::RawMesh::normals"],[12,3,1,"_CPPv4N4dnac7RawMesh6offsetE","dnac::RawMesh::offset"],[12,3,1,"_CPPv4N4dnac7RawMesh9positionsE","dnac::RawMesh::positions"],[12,1,1,"_CPPv4I0EN4dnac7RawMesh9serializeEvR7Archive","dnac::RawMesh::serialize"],[12,5,1,"_CPPv4I0EN4dnac7RawMesh9serializeEvR7Archive","dnac::RawMesh::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac7RawMesh9serializeEvR7Archive","dnac::RawMesh::serialize::archive"],[12,3,1,"_CPPv4N4dnac7RawMesh11skinWeightsE","dnac::RawMesh::skinWeights"],[12,3,1,"_CPPv4N4dnac7RawMesh18textureCoordinatesE","dnac::RawMesh::textureCoordinates"],[12,0,1,"_CPPv4N4dnac12RawPSDMatrixE","dnac::RawPSDMatrix"],[12,1,1,"_CPPv4N4dnac12RawPSDMatrix12RawPSDMatrixEP14MemoryResource","dnac::RawPSDMatrix::RawPSDMatrix"],[12,2,1,"_CPPv4N4dnac12RawPSDMatrix12RawPSDMatrixEP14MemoryResource","dnac::RawPSDMatrix::RawPSDMatrix::memRes"],[12,3,1,"_CPPv4N4dnac12RawPSDMatrix7columnsE","dnac::RawPSDMatrix::columns"],[12,3,1,"_CPPv4N4dnac12RawPSDMatrix4rowsE","dnac::RawPSDMatrix::rows"],[12,1,1,"_CPPv4I0EN4dnac12RawPSDMatrix9serializeEvR7Archive","dnac::RawPSDMatrix::serialize"],[12,5,1,"_CPPv4I0EN4dnac12RawPSDMatrix9serializeEvR7Archive","dnac::RawPSDMatrix::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac12RawPSDMatrix9serializeEvR7Archive","dnac::RawPSDMatrix::serialize::archive"],[12,3,1,"_CPPv4N4dnac12RawPSDMatrix6valuesE","dnac::RawPSDMatrix::values"],[12,0,1,"_CPPv4I00EN4dnac20RawSurjectiveMappingE","dnac::RawSurjectiveMapping"],[12,5,1,"_CPPv4I00EN4dnac20RawSurjectiveMappingE","dnac::RawSurjectiveMapping::TFrom"],[12,5,1,"_CPPv4I00EN4dnac20RawSurjectiveMappingE","dnac::RawSurjectiveMapping::TTo"],[12,1,1,"_CPPv4I0EN4dnac20RawSurjectiveMapping9serializeEvR7Archive","dnac::RawSurjectiveMapping::serialize"],[12,5,1,"_CPPv4I0EN4dnac20RawSurjectiveMapping9serializeEvR7Archive","dnac::RawSurjectiveMapping::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac20RawSurjectiveMapping9serializeEvR7Archive","dnac::RawSurjectiveMapping::serialize::archive"],[12,0,1,"_CPPv4N4dnac26RawTextureCoordinateVectorE","dnac::RawTextureCoordinateVector"],[12,1,1,"_CPPv4N4dnac26RawTextureCoordinateVector26RawTextureCoordinateVectorEP14MemoryResource","dnac::RawTextureCoordinateVector::RawTextureCoordinateVector"],[12,2,1,"_CPPv4N4dnac26RawTextureCoordinateVector26RawTextureCoordinateVectorEP14MemoryResource","dnac::RawTextureCoordinateVector::RawTextureCoordinateVector::memRes"],[12,1,1,"_CPPv4N4dnac26RawTextureCoordinateVector5clearEv","dnac::RawTextureCoordinateVector::clear"],[12,1,1,"_CPPv4I0EN4dnac26RawTextureCoordinateVector9serializeEvR7Archive","dnac::RawTextureCoordinateVector::serialize"],[12,5,1,"_CPPv4I0EN4dnac26RawTextureCoordinateVector9serializeEvR7Archive","dnac::RawTextureCoordinateVector::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac26RawTextureCoordinateVector9serializeEvR7Archive","dnac::RawTextureCoordinateVector::serialize::archive"],[12,1,1,"_CPPv4NK4dnac26RawTextureCoordinateVector4sizeEv","dnac::RawTextureCoordinateVector::size"],[12,3,1,"_CPPv4N4dnac26RawTextureCoordinateVector2usE","dnac::RawTextureCoordinateVector::us"],[12,3,1,"_CPPv4N4dnac26RawTextureCoordinateVector2vsE","dnac::RawTextureCoordinateVector::vs"],[12,0,1,"_CPPv4N4dnac16RawVector3VectorE","dnac::RawVector3Vector"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorENSt6size_tEfP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorENSt6size_tEfP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::initial"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::memRes"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorENSt6size_tEfP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::memRes"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::memRes"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorENSt6size_tEfP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::size_"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::xs_"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::ys_"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector16RawVector3VectorE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::RawVector3Vector::RawVector3Vector::zs_"],[12,1,1,"_CPPv4I0EN4dnac16RawVector3Vector6assignEv8Iterator8Iterator","dnac::RawVector3Vector::assign"],[12,5,1,"_CPPv4I0EN4dnac16RawVector3Vector6assignEv8Iterator8Iterator","dnac::RawVector3Vector::assign::Iterator"],[12,2,1,"_CPPv4I0EN4dnac16RawVector3Vector6assignEv8Iterator8Iterator","dnac::RawVector3Vector::assign::end"],[12,2,1,"_CPPv4I0EN4dnac16RawVector3Vector6assignEv8Iterator8Iterator","dnac::RawVector3Vector::assign::start"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector5clearEv","dnac::RawVector3Vector::clear"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector7reserveENSt6size_tE","dnac::RawVector3Vector::reserve"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector7reserveENSt6size_tE","dnac::RawVector3Vector::reserve::count"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector6resizeENSt6size_tE","dnac::RawVector3Vector::resize"],[12,1,1,"_CPPv4N4dnac16RawVector3Vector6resizeENSt6size_tEf","dnac::RawVector3Vector::resize"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector6resizeENSt6size_tE","dnac::RawVector3Vector::resize::count"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector6resizeENSt6size_tEf","dnac::RawVector3Vector::resize::count"],[12,2,1,"_CPPv4N4dnac16RawVector3Vector6resizeENSt6size_tEf","dnac::RawVector3Vector::resize::value"],[12,1,1,"_CPPv4I0EN4dnac16RawVector3Vector9serializeEvR7Archive","dnac::RawVector3Vector::serialize"],[12,5,1,"_CPPv4I0EN4dnac16RawVector3Vector9serializeEvR7Archive","dnac::RawVector3Vector::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac16RawVector3Vector9serializeEvR7Archive","dnac::RawVector3Vector::serialize::archive"],[12,1,1,"_CPPv4NK4dnac16RawVector3Vector4sizeEv","dnac::RawVector3Vector::size"],[12,3,1,"_CPPv4N4dnac16RawVector3Vector2xsE","dnac::RawVector3Vector::xs"],[12,3,1,"_CPPv4N4dnac16RawVector3Vector2ysE","dnac::RawVector3Vector::ys"],[12,3,1,"_CPPv4N4dnac16RawVector3Vector2zsE","dnac::RawVector3Vector::zs"],[12,0,1,"_CPPv4N4dnac21RawVertexLayoutVectorE","dnac::RawVertexLayoutVector"],[12,1,1,"_CPPv4N4dnac21RawVertexLayoutVector21RawVertexLayoutVectorEP14MemoryResource","dnac::RawVertexLayoutVector::RawVertexLayoutVector"],[12,2,1,"_CPPv4N4dnac21RawVertexLayoutVector21RawVertexLayoutVectorEP14MemoryResource","dnac::RawVertexLayoutVector::RawVertexLayoutVector::memRes"],[12,1,1,"_CPPv4N4dnac21RawVertexLayoutVector5clearEv","dnac::RawVertexLayoutVector::clear"],[12,3,1,"_CPPv4N4dnac21RawVertexLayoutVector7normalsE","dnac::RawVertexLayoutVector::normals"],[12,3,1,"_CPPv4N4dnac21RawVertexLayoutVector9positionsE","dnac::RawVertexLayoutVector::positions"],[12,1,1,"_CPPv4I0EN4dnac21RawVertexLayoutVector9serializeEvR7Archive","dnac::RawVertexLayoutVector::serialize"],[12,5,1,"_CPPv4I0EN4dnac21RawVertexLayoutVector9serializeEvR7Archive","dnac::RawVertexLayoutVector::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac21RawVertexLayoutVector9serializeEvR7Archive","dnac::RawVertexLayoutVector::serialize::archive"],[12,1,1,"_CPPv4NK4dnac21RawVertexLayoutVector4sizeEv","dnac::RawVertexLayoutVector::size"],[12,3,1,"_CPPv4N4dnac21RawVertexLayoutVector18textureCoordinatesE","dnac::RawVertexLayoutVector::textureCoordinates"],[12,0,1,"_CPPv4N4dnac20RawVertexSkinWeightsE","dnac::RawVertexSkinWeights"],[12,1,1,"_CPPv4N4dnac20RawVertexSkinWeights20RawVertexSkinWeightsEP14MemoryResource","dnac::RawVertexSkinWeights::RawVertexSkinWeights"],[12,2,1,"_CPPv4N4dnac20RawVertexSkinWeights20RawVertexSkinWeightsEP14MemoryResource","dnac::RawVertexSkinWeights::RawVertexSkinWeights::memRes"],[12,3,1,"_CPPv4N4dnac20RawVertexSkinWeights12jointIndicesE","dnac::RawVertexSkinWeights::jointIndices"],[12,1,1,"_CPPv4I0EN4dnac20RawVertexSkinWeights9serializeEvR7Archive","dnac::RawVertexSkinWeights::serialize"],[12,5,1,"_CPPv4I0EN4dnac20RawVertexSkinWeights9serializeEvR7Archive","dnac::RawVertexSkinWeights::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac20RawVertexSkinWeights9serializeEvR7Archive","dnac::RawVertexSkinWeights::serialize::archive"],[12,3,1,"_CPPv4N4dnac20RawVertexSkinWeights7weightsE","dnac::RawVertexSkinWeights::weights"],[12,0,1,"_CPPv4I0EN4dnac10ReaderImplE","dnac::ReaderImpl"],[12,1,1,"_CPPv4N4dnac10ReaderImpl10ReaderImplEP14MemoryResource","dnac::ReaderImpl::ReaderImpl"],[12,2,1,"_CPPv4N4dnac10ReaderImpl10ReaderImplEP14MemoryResource","dnac::ReaderImpl::ReaderImpl::memRes_"],[12,5,1,"_CPPv4I0EN4dnac10ReaderImplE","dnac::ReaderImpl::TReaderBase"],[12,3,1,"_CPPv4N4dnac10ReaderImpl5cacheE","dnac::ReaderImpl::cache"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl6getAgeEv","dnac::ReaderImpl::getAge"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getAnimatedMapCountEv","dnac::ReaderImpl::getAnimatedMapCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl23getAnimatedMapCutValuesEv","dnac::ReaderImpl::getAnimatedMapCutValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getAnimatedMapFromValuesEv","dnac::ReaderImpl::getAnimatedMapFromValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getAnimatedMapIndexListCountEv","dnac::ReaderImpl::getAnimatedMapIndexListCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl27getAnimatedMapIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getAnimatedMapIndicesForLOD"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl27getAnimatedMapIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getAnimatedMapIndicesForLOD::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getAnimatedMapInputIndicesEv","dnac::ReaderImpl::getAnimatedMapInputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getAnimatedMapLODsEv","dnac::ReaderImpl::getAnimatedMapLODs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getAnimatedMapNameENSt8uint16_tE","dnac::ReaderImpl::getAnimatedMapName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl18getAnimatedMapNameENSt8uint16_tE","dnac::ReaderImpl::getAnimatedMapName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl27getAnimatedMapOutputIndicesEv","dnac::ReaderImpl::getAnimatedMapOutputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getAnimatedMapSlopeValuesEv","dnac::ReaderImpl::getAnimatedMapSlopeValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl22getAnimatedMapToValuesEv","dnac::ReaderImpl::getAnimatedMapToValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl12getArchetypeEv","dnac::ReaderImpl::getArchetype"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getBlendShapeChannelCountEv","dnac::ReaderImpl::getBlendShapeChannelCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelIndex::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl25getBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelIndex::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl34getBlendShapeChannelIndexListCountEv","dnac::ReaderImpl::getBlendShapeChannelIndexListCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelIndicesForLOD"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl33getBlendShapeChannelIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelIndicesForLOD::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl32getBlendShapeChannelInputIndicesEv","dnac::ReaderImpl::getBlendShapeChannelInputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeChannelLODsEv","dnac::ReaderImpl::getBlendShapeChannelLODs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeChannelNameENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeChannelNameENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeChannelName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl33getBlendShapeChannelOutputIndicesEv","dnac::ReaderImpl::getBlendShapeChannelOutputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetCountENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetCountENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getBlendShapeTargetDelta"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getBlendShapeTargetDelta::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getBlendShapeTargetDelta::deltaIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl24getBlendShapeTargetDeltaENSt8uint16_tENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getBlendShapeTargetDelta::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaCount::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl29getBlendShapeTargetDeltaCountENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaXs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaXs::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaXsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaXs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaYs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaYs::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaYsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaYs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaZs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaZs::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getBlendShapeTargetDeltaZsENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetDeltaZs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetVertexIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl32getBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tE","dnac::ReaderImpl::getBlendShapeTargetVertexIndices::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getCoordinateSystemEv","dnac::ReaderImpl::getCoordinateSystem"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl15getDBComplexityEv","dnac::ReaderImpl::getDBComplexity"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl11getDBMaxLODEv","dnac::ReaderImpl::getDBMaxLOD"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl9getDBNameEv","dnac::ReaderImpl::getDBName"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl12getFaceCountENSt8uint16_tE","dnac::ReaderImpl::getFaceCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl12getFaceCountENSt8uint16_tE","dnac::ReaderImpl::getFaceCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getFaceVertexLayoutIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getFaceVertexLayoutIndices::faceIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getFaceVertexLayoutIndices::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getGUIControlCountEv","dnac::ReaderImpl::getGUIControlCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getGUIControlNameENSt8uint16_tE","dnac::ReaderImpl::getGUIControlName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getGUIControlNameENSt8uint16_tE","dnac::ReaderImpl::getGUIControlName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl20getGUIToRawCutValuesEv","dnac::ReaderImpl::getGUIToRawCutValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl21getGUIToRawFromValuesEv","dnac::ReaderImpl::getGUIToRawFromValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl23getGUIToRawInputIndicesEv","dnac::ReaderImpl::getGUIToRawInputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl24getGUIToRawOutputIndicesEv","dnac::ReaderImpl::getGUIToRawOutputIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl22getGUIToRawSlopeValuesEv","dnac::ReaderImpl::getGUIToRawSlopeValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getGUIToRawToValuesEv","dnac::ReaderImpl::getGUIToRawToValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl9getGenderEv","dnac::ReaderImpl::getGender"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getJointColumnCountEv","dnac::ReaderImpl::getJointColumnCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl13getJointCountEv","dnac::ReaderImpl::getJointCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getJointGroupCountEv","dnac::ReaderImpl::getJointGroupCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getJointGroupInputIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupInputIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl25getJointGroupInputIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupInputIndices::jointGroupIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getJointGroupJointIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupJointIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl25getJointGroupJointIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupJointIndices::jointGroupIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getJointGroupLODsENSt8uint16_tE","dnac::ReaderImpl::getJointGroupLODs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getJointGroupLODsENSt8uint16_tE","dnac::ReaderImpl::getJointGroupLODs::jointGroupIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getJointGroupOutputIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupOutputIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getJointGroupOutputIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupOutputIndices::jointGroupIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getJointGroupValuesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupValues"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getJointGroupValuesENSt8uint16_tE","dnac::ReaderImpl::getJointGroupValues::jointGroupIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl22getJointIndexListCountEv","dnac::ReaderImpl::getJointIndexListCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl21getJointIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getJointIndicesForLOD"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl21getJointIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getJointIndicesForLOD::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl12getJointNameENSt8uint16_tE","dnac::ReaderImpl::getJointName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl12getJointNameENSt8uint16_tE","dnac::ReaderImpl::getJointName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getJointParentIndexENSt8uint16_tE","dnac::ReaderImpl::getJointParentIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getJointParentIndexENSt8uint16_tE","dnac::ReaderImpl::getJointParentIndex::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl16getJointRowCountEv","dnac::ReaderImpl::getJointRowCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl32getJointVariableAttributeIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointVariableAttributeIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl32getJointVariableAttributeIndicesENSt8uint16_tE","dnac::ReaderImpl::getJointVariableAttributeIndices::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl11getLODCountEv","dnac::ReaderImpl::getLODCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getMaximumInfluencePerVertexENSt8uint16_tE","dnac::ReaderImpl::getMaximumInfluencePerVertex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl28getMaximumInfluencePerVertexENSt8uint16_tE","dnac::ReaderImpl::getMaximumInfluencePerVertex::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl31getMeshBlendShapeChannelMappingENSt8uint16_tE","dnac::ReaderImpl::getMeshBlendShapeChannelMapping"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl31getMeshBlendShapeChannelMappingENSt8uint16_tE","dnac::ReaderImpl::getMeshBlendShapeChannelMapping::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl36getMeshBlendShapeChannelMappingCountEv","dnac::ReaderImpl::getMeshBlendShapeChannelMappingCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getMeshBlendShapeChannelMappingIndicesForLOD"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl44getMeshBlendShapeChannelMappingIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getMeshBlendShapeChannelMappingIndicesForLOD::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl12getMeshCountEv","dnac::ReaderImpl::getMeshCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl21getMeshIndexListCountEv","dnac::ReaderImpl::getMeshIndexListCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl20getMeshIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getMeshIndicesForLOD"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl20getMeshIndicesForLODENSt8uint16_tE","dnac::ReaderImpl::getMeshIndicesForLOD::lod"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl11getMeshNameENSt8uint16_tE","dnac::ReaderImpl::getMeshName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl11getMeshNameENSt8uint16_tE","dnac::ReaderImpl::getMeshName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl16getMetaDataCountEv","dnac::ReaderImpl::getMetaDataCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl14getMetaDataKeyENSt8uint32_tE","dnac::ReaderImpl::getMetaDataKey"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl14getMetaDataKeyENSt8uint32_tE","dnac::ReaderImpl::getMetaDataKey::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl16getMetaDataValueEPKc","dnac::ReaderImpl::getMetaDataValue"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl16getMetaDataValueEPKc","dnac::ReaderImpl::getMetaDataValue::key"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl7getNameEv","dnac::ReaderImpl::getName"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl23getNeutralJointRotationENSt8uint16_tE","dnac::ReaderImpl::getNeutralJointRotation"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl23getNeutralJointRotationENSt8uint16_tE","dnac::ReaderImpl::getNeutralJointRotation::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getNeutralJointRotationXsEv","dnac::ReaderImpl::getNeutralJointRotationXs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getNeutralJointRotationYsEv","dnac::ReaderImpl::getNeutralJointRotationYs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl25getNeutralJointRotationZsEv","dnac::ReaderImpl::getNeutralJointRotationZs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getNeutralJointTranslationENSt8uint16_tE","dnac::ReaderImpl::getNeutralJointTranslation"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getNeutralJointTranslationENSt8uint16_tE","dnac::ReaderImpl::getNeutralJointTranslation::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getNeutralJointTranslationXsEv","dnac::ReaderImpl::getNeutralJointTranslationXs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getNeutralJointTranslationYsEv","dnac::ReaderImpl::getNeutralJointTranslationYs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getNeutralJointTranslationZsEv","dnac::ReaderImpl::getNeutralJointTranslationZs"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getPSDColumnIndicesEv","dnac::ReaderImpl::getPSDColumnIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl11getPSDCountEv","dnac::ReaderImpl::getPSDCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl16getPSDRowIndicesEv","dnac::ReaderImpl::getPSDRowIndices"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl12getPSDValuesEv","dnac::ReaderImpl::getPSDValues"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getRawControlCountEv","dnac::ReaderImpl::getRawControlCount"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getRawControlNameENSt8uint16_tE","dnac::ReaderImpl::getRawControlName"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getRawControlNameENSt8uint16_tE","dnac::ReaderImpl::getRawControlName::index"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl15getRotationUnitEv","dnac::ReaderImpl::getRotationUnit"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getSkinWeightsCountENSt8uint16_tE","dnac::ReaderImpl::getSkinWeightsCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getSkinWeightsCountENSt8uint16_tE","dnac::ReaderImpl::getSkinWeightsCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsJointIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsJointIndices::meshIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsJointIndices::vertexIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsValues"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsValues::meshIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl20getSkinWeightsValuesENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getSkinWeightsValues::vertexIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl18getTranslationUnitEv","dnac::ReaderImpl::getTranslationUnit"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexLayout"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexLayout::layoutIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl15getVertexLayoutENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexLayout::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl20getVertexLayoutCountENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl20getVertexLayoutCountENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getVertexLayoutNormalIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutNormalIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl28getVertexLayoutNormalIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutNormalIndices::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl30getVertexLayoutPositionIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutPositionIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl30getVertexLayoutPositionIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutPositionIndices::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutTextureCoordinateIndices"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl39getVertexLayoutTextureCoordinateIndicesENSt8uint16_tE","dnac::ReaderImpl::getVertexLayoutTextureCoordinateIndices::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexNormal"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexNormal::meshIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl15getVertexNormalENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexNormal::normalIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl20getVertexNormalCountENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl20getVertexNormalCountENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalXsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalXs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalXsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalXs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalYsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalYs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalYsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalYs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalZsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalZs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getVertexNormalZsENSt8uint16_tE","dnac::ReaderImpl::getVertexNormalZs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexPosition"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexPosition::meshIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl17getVertexPositionENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexPosition::vertexIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl22getVertexPositionCountENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl22getVertexPositionCountENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionXsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionXs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionXsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionXs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionYsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionYs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionYsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionYs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionZsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionZs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl19getVertexPositionZsENSt8uint16_tE","dnac::ReaderImpl::getVertexPositionZs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexTextureCoordinate"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexTextureCoordinate::meshIndex"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl26getVertexTextureCoordinateENSt8uint16_tENSt8uint32_tE","dnac::ReaderImpl::getVertexTextureCoordinate::textureCoordinateIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl31getVertexTextureCoordinateCountENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateCount"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl31getVertexTextureCoordinateCountENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateCount::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getVertexTextureCoordinateUsENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateUs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl28getVertexTextureCoordinateUsENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateUs::meshIndex"],[12,1,1,"_CPPv4NK4dnac10ReaderImpl28getVertexTextureCoordinateVsENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateVs"],[12,2,1,"_CPPv4NK4dnac10ReaderImpl28getVertexTextureCoordinateVsENSt8uint16_tE","dnac::ReaderImpl::getVertexTextureCoordinateVs::meshIndex"],[12,1,1,"_CPPv4N4dnac10ReaderImpl6unloadE9DataLayer","dnac::ReaderImpl::unload"],[12,2,1,"_CPPv4N4dnac10ReaderImpl6unloadE9DataLayer","dnac::ReaderImpl::unload::layer"],[12,0,1,"_CPPv4N4dnac24RemoveAnimatedMapCommandE","dnac::RemoveAnimatedMapCommand"],[12,0,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4ImplE","dnac::RemoveAnimatedMapCommand::Impl"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl4ImplEP14MemoryResource","dnac::RemoveAnimatedMapCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl4ImplEP14MemoryResource","dnac::RemoveAnimatedMapCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl5SuperE","dnac::RemoveAnimatedMapCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl18animatedMapIndicesE","dnac::RemoveAnimatedMapCommand::Impl::animatedMapIndices"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveAnimatedMapCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveAnimatedMapCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl19setAnimatedMapIndexENSt8uint16_tE","dnac::RemoveAnimatedMapCommand::Impl::setAnimatedMapIndex"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl19setAnimatedMapIndexENSt8uint16_tE","dnac::RemoveAnimatedMapCommand::Impl::setAnimatedMapIndex::animatedMapIndex_"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl21setAnimatedMapIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveAnimatedMapCommand::Impl::setAnimatedMapIndices"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand4Impl21setAnimatedMapIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveAnimatedMapCommand::Impl::setAnimatedMapIndices::animatedMapIndices_"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandERK24RemoveAnimatedMapCommand","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandERR24RemoveAnimatedMapCommand","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand::animatedMapIndex"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand::animatedMapIndices"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand::memRes"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand::memRes"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand24RemoveAnimatedMapCommandEP14MemoryResource","dnac::RemoveAnimatedMapCommand::RemoveAnimatedMapCommand::memRes"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommandaSERK24RemoveAnimatedMapCommand","dnac::RemoveAnimatedMapCommand::operator="],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommandaSERR24RemoveAnimatedMapCommand","dnac::RemoveAnimatedMapCommand::operator="],[12,3,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand5pImplE","dnac::RemoveAnimatedMapCommand::pImpl"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand3runEP17DNACalibDNAReader","dnac::RemoveAnimatedMapCommand::run"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand3runEP17DNACalibDNAReader","dnac::RemoveAnimatedMapCommand::run::output"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand19setAnimatedMapIndexENSt8uint16_tE","dnac::RemoveAnimatedMapCommand::setAnimatedMapIndex"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand19setAnimatedMapIndexENSt8uint16_tE","dnac::RemoveAnimatedMapCommand::setAnimatedMapIndex::animatedMapIndex"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand21setAnimatedMapIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveAnimatedMapCommand::setAnimatedMapIndices"],[12,2,1,"_CPPv4N4dnac24RemoveAnimatedMapCommand21setAnimatedMapIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveAnimatedMapCommand::setAnimatedMapIndices::animatedMapIndices"],[12,1,1,"_CPPv4N4dnac24RemoveAnimatedMapCommandD0Ev","dnac::RemoveAnimatedMapCommand::~RemoveAnimatedMapCommand"],[12,0,1,"_CPPv4N4dnac23RemoveBlendShapeCommandE","dnac::RemoveBlendShapeCommand"],[12,0,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4ImplE","dnac::RemoveBlendShapeCommand::Impl"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl4ImplEP14MemoryResource","dnac::RemoveBlendShapeCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl4ImplEP14MemoryResource","dnac::RemoveBlendShapeCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl5SuperE","dnac::RemoveBlendShapeCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl17blendShapeIndicesE","dnac::RemoveBlendShapeCommand::Impl::blendShapeIndices"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveBlendShapeCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveBlendShapeCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl18setBlendShapeIndexENSt8uint16_tE","dnac::RemoveBlendShapeCommand::Impl::setBlendShapeIndex"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl18setBlendShapeIndexENSt8uint16_tE","dnac::RemoveBlendShapeCommand::Impl::setBlendShapeIndex::blendShapeIndex_"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl20setBlendShapeIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveBlendShapeCommand::Impl::setBlendShapeIndices"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand4Impl20setBlendShapeIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveBlendShapeCommand::Impl::setBlendShapeIndices::blendShapeIndices_"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandERK23RemoveBlendShapeCommand","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandERR23RemoveBlendShapeCommand","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand::blendShapeIndex"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand::blendShapeIndices"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand::memRes"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand::memRes"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand23RemoveBlendShapeCommandEP14MemoryResource","dnac::RemoveBlendShapeCommand::RemoveBlendShapeCommand::memRes"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommandaSERK23RemoveBlendShapeCommand","dnac::RemoveBlendShapeCommand::operator="],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommandaSERR23RemoveBlendShapeCommand","dnac::RemoveBlendShapeCommand::operator="],[12,3,1,"_CPPv4N4dnac23RemoveBlendShapeCommand5pImplE","dnac::RemoveBlendShapeCommand::pImpl"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand3runEP17DNACalibDNAReader","dnac::RemoveBlendShapeCommand::run"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand3runEP17DNACalibDNAReader","dnac::RemoveBlendShapeCommand::run::output"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand18setBlendShapeIndexENSt8uint16_tE","dnac::RemoveBlendShapeCommand::setBlendShapeIndex"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand18setBlendShapeIndexENSt8uint16_tE","dnac::RemoveBlendShapeCommand::setBlendShapeIndex::blendShapeIndex"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommand20setBlendShapeIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveBlendShapeCommand::setBlendShapeIndices"],[12,2,1,"_CPPv4N4dnac23RemoveBlendShapeCommand20setBlendShapeIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveBlendShapeCommand::setBlendShapeIndices::blendShapeIndices"],[12,1,1,"_CPPv4N4dnac23RemoveBlendShapeCommandD0Ev","dnac::RemoveBlendShapeCommand::~RemoveBlendShapeCommand"],[12,0,1,"_CPPv4N4dnac27RemoveJointAnimationCommandE","dnac::RemoveJointAnimationCommand"],[12,0,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4ImplE","dnac::RemoveJointAnimationCommand::Impl"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl4ImplEP14MemoryResource","dnac::RemoveJointAnimationCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl4ImplEP14MemoryResource","dnac::RemoveJointAnimationCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl5SuperE","dnac::RemoveJointAnimationCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl12jointIndicesE","dnac::RemoveJointAnimationCommand::Impl::jointIndices"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveJointAnimationCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveJointAnimationCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl13setJointIndexENSt8uint16_tE","dnac::RemoveJointAnimationCommand::Impl::setJointIndex"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl13setJointIndexENSt8uint16_tE","dnac::RemoveJointAnimationCommand::Impl::setJointIndex::jointIndex_"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointAnimationCommand::Impl::setJointIndices"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointAnimationCommand::Impl::setJointIndices::jointIndices_"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandERK27RemoveJointAnimationCommand","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandERR27RemoveJointAnimationCommand","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand::jointIndex"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand::jointIndices"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand::memRes"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand::memRes"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand27RemoveJointAnimationCommandEP14MemoryResource","dnac::RemoveJointAnimationCommand::RemoveJointAnimationCommand::memRes"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommandaSERK27RemoveJointAnimationCommand","dnac::RemoveJointAnimationCommand::operator="],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommandaSERR27RemoveJointAnimationCommand","dnac::RemoveJointAnimationCommand::operator="],[12,3,1,"_CPPv4N4dnac27RemoveJointAnimationCommand5pImplE","dnac::RemoveJointAnimationCommand::pImpl"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand3runEP17DNACalibDNAReader","dnac::RemoveJointAnimationCommand::run"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand3runEP17DNACalibDNAReader","dnac::RemoveJointAnimationCommand::run::output"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand13setJointIndexENSt8uint16_tE","dnac::RemoveJointAnimationCommand::setJointIndex"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand13setJointIndexENSt8uint16_tE","dnac::RemoveJointAnimationCommand::setJointIndex::jointIndex"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointAnimationCommand::setJointIndices"],[12,2,1,"_CPPv4N4dnac27RemoveJointAnimationCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointAnimationCommand::setJointIndices::jointIndices"],[12,1,1,"_CPPv4N4dnac27RemoveJointAnimationCommandD0Ev","dnac::RemoveJointAnimationCommand::~RemoveJointAnimationCommand"],[12,0,1,"_CPPv4N4dnac18RemoveJointCommandE","dnac::RemoveJointCommand"],[12,0,1,"_CPPv4N4dnac18RemoveJointCommand4ImplE","dnac::RemoveJointCommand::Impl"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand4Impl4ImplEP14MemoryResource","dnac::RemoveJointCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand4Impl4ImplEP14MemoryResource","dnac::RemoveJointCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac18RemoveJointCommand4Impl5SuperE","dnac::RemoveJointCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac18RemoveJointCommand4Impl12jointIndicesE","dnac::RemoveJointCommand::Impl::jointIndices"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveJointCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveJointCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand4Impl13setJointIndexENSt8uint16_tE","dnac::RemoveJointCommand::Impl::setJointIndex"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand4Impl13setJointIndexENSt8uint16_tE","dnac::RemoveJointCommand::Impl::setJointIndex::jointIndex_"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointCommand::Impl::setJointIndices"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointCommand::Impl::setJointIndices::jointIndices_"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandERK18RemoveJointCommand","dnac::RemoveJointCommand::RemoveJointCommand"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandERR18RemoveJointCommand","dnac::RemoveJointCommand::RemoveJointCommand"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand::jointIndex"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand::jointIndices"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand::memRes"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand::memRes"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand18RemoveJointCommandEP14MemoryResource","dnac::RemoveJointCommand::RemoveJointCommand::memRes"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommandaSERK18RemoveJointCommand","dnac::RemoveJointCommand::operator="],[12,1,1,"_CPPv4N4dnac18RemoveJointCommandaSERR18RemoveJointCommand","dnac::RemoveJointCommand::operator="],[12,3,1,"_CPPv4N4dnac18RemoveJointCommand5pImplE","dnac::RemoveJointCommand::pImpl"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand3runEP17DNACalibDNAReader","dnac::RemoveJointCommand::run"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand3runEP17DNACalibDNAReader","dnac::RemoveJointCommand::run::output"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand13setJointIndexENSt8uint16_tE","dnac::RemoveJointCommand::setJointIndex"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand13setJointIndexENSt8uint16_tE","dnac::RemoveJointCommand::setJointIndex::jointIndex"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointCommand::setJointIndices"],[12,2,1,"_CPPv4N4dnac18RemoveJointCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveJointCommand::setJointIndices::jointIndices"],[12,1,1,"_CPPv4N4dnac18RemoveJointCommandD0Ev","dnac::RemoveJointCommand::~RemoveJointCommand"],[12,0,1,"_CPPv4N4dnac17RemoveMeshCommandE","dnac::RemoveMeshCommand"],[12,0,1,"_CPPv4N4dnac17RemoveMeshCommand4ImplE","dnac::RemoveMeshCommand::Impl"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl4ImplEP14MemoryResource","dnac::RemoveMeshCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl4ImplEP14MemoryResource","dnac::RemoveMeshCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl5SuperE","dnac::RemoveMeshCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl11meshIndicesE","dnac::RemoveMeshCommand::Impl::meshIndices"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveMeshCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RemoveMeshCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::RemoveMeshCommand::Impl::setMeshIndex"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::RemoveMeshCommand::Impl::setMeshIndex::meshIndex_"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl14setMeshIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveMeshCommand::Impl::setMeshIndices"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand4Impl14setMeshIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveMeshCommand::Impl::setMeshIndices::meshIndices_"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandERK17RemoveMeshCommand","dnac::RemoveMeshCommand::RemoveMeshCommand"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandERR17RemoveMeshCommand","dnac::RemoveMeshCommand::RemoveMeshCommand"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandENSt8uint16_tEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand17RemoveMeshCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::RemoveMeshCommand::RemoveMeshCommand::meshIndices"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommandaSERK17RemoveMeshCommand","dnac::RemoveMeshCommand::operator="],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommandaSERR17RemoveMeshCommand","dnac::RemoveMeshCommand::operator="],[12,3,1,"_CPPv4N4dnac17RemoveMeshCommand5pImplE","dnac::RemoveMeshCommand::pImpl"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand3runEP17DNACalibDNAReader","dnac::RemoveMeshCommand::run"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand3runEP17DNACalibDNAReader","dnac::RemoveMeshCommand::run::output"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand12setMeshIndexENSt8uint16_tE","dnac::RemoveMeshCommand::setMeshIndex"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand12setMeshIndexENSt8uint16_tE","dnac::RemoveMeshCommand::setMeshIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommand14setMeshIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveMeshCommand::setMeshIndices"],[12,2,1,"_CPPv4N4dnac17RemoveMeshCommand14setMeshIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::RemoveMeshCommand::setMeshIndices::meshIndices"],[12,1,1,"_CPPv4N4dnac17RemoveMeshCommandD0Ev","dnac::RemoveMeshCommand::~RemoveMeshCommand"],[12,0,1,"_CPPv4N4dnac24RenameAnimatedMapCommandE","dnac::RenameAnimatedMapCommand"],[12,0,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4ImplE","dnac::RenameAnimatedMapCommand::Impl"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl4ImplEP14MemoryResource","dnac::RenameAnimatedMapCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl4ImplEP14MemoryResource","dnac::RenameAnimatedMapCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl5SuperE","dnac::RenameAnimatedMapCommand::Impl::Super"],[12,1,1,"_CPPv4NK4dnac24RenameAnimatedMapCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameAnimatedMapCommand::Impl::getNameByIndex"],[12,2,1,"_CPPv4NK4dnac24RenameAnimatedMapCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameAnimatedMapCommand::Impl::getNameByIndex::index_"],[12,2,1,"_CPPv4NK4dnac24RenameAnimatedMapCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameAnimatedMapCommand::Impl::getNameByIndex::input"],[12,1,1,"_CPPv4NK4dnac24RenameAnimatedMapCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameAnimatedMapCommand::Impl::getNameCount"],[12,2,1,"_CPPv4NK4dnac24RenameAnimatedMapCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameAnimatedMapCommand::Impl::getNameCount::input"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::Impl::setNameByIndex"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::Impl::setNameByIndex::index_"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::Impl::setNameByIndex::name"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::Impl::setNameByIndex::output"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEPKcPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandERK24RenameAnimatedMapCommand","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandERR24RenameAnimatedMapCommand","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::animatedMapIndex"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::memRes"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::memRes"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEPKcPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::memRes"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::newName"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEPKcPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::newName"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand24RenameAnimatedMapCommandEPKcPKcP14MemoryResource","dnac::RenameAnimatedMapCommand::RenameAnimatedMapCommand::oldName"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommandaSERK24RenameAnimatedMapCommand","dnac::RenameAnimatedMapCommand::operator="],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommandaSERR24RenameAnimatedMapCommand","dnac::RenameAnimatedMapCommand::operator="],[12,3,1,"_CPPv4N4dnac24RenameAnimatedMapCommand5pImplE","dnac::RenameAnimatedMapCommand::pImpl"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand3runEP17DNACalibDNAReader","dnac::RenameAnimatedMapCommand::run"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand3runEP17DNACalibDNAReader","dnac::RenameAnimatedMapCommand::run::output"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::setName"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameEPKcPKc","dnac::RenameAnimatedMapCommand::setName"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::setName::animatedMapIndex"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameENSt8uint16_tEPKc","dnac::RenameAnimatedMapCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameEPKcPKc","dnac::RenameAnimatedMapCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac24RenameAnimatedMapCommand7setNameEPKcPKc","dnac::RenameAnimatedMapCommand::setName::oldName"],[12,1,1,"_CPPv4N4dnac24RenameAnimatedMapCommandD0Ev","dnac::RenameAnimatedMapCommand::~RenameAnimatedMapCommand"],[12,0,1,"_CPPv4N4dnac23RenameBlendShapeCommandE","dnac::RenameBlendShapeCommand"],[12,0,1,"_CPPv4N4dnac23RenameBlendShapeCommand4ImplE","dnac::RenameBlendShapeCommand::Impl"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl4ImplEP14MemoryResource","dnac::RenameBlendShapeCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl4ImplEP14MemoryResource","dnac::RenameBlendShapeCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl5SuperE","dnac::RenameBlendShapeCommand::Impl::Super"],[12,1,1,"_CPPv4NK4dnac23RenameBlendShapeCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameBlendShapeCommand::Impl::getNameByIndex"],[12,2,1,"_CPPv4NK4dnac23RenameBlendShapeCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameBlendShapeCommand::Impl::getNameByIndex::index_"],[12,2,1,"_CPPv4NK4dnac23RenameBlendShapeCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameBlendShapeCommand::Impl::getNameByIndex::input"],[12,1,1,"_CPPv4NK4dnac23RenameBlendShapeCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameBlendShapeCommand::Impl::getNameCount"],[12,2,1,"_CPPv4NK4dnac23RenameBlendShapeCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameBlendShapeCommand::Impl::getNameCount::input"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::Impl::setNameByIndex"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::Impl::setNameByIndex::index_"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::Impl::setNameByIndex::name"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::Impl::setNameByIndex::output"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEPKcPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandERK23RenameBlendShapeCommand","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandERR23RenameBlendShapeCommand","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::blendShapeIndex"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::memRes"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::memRes"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEPKcPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::memRes"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::newName"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEPKcPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::newName"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand23RenameBlendShapeCommandEPKcPKcP14MemoryResource","dnac::RenameBlendShapeCommand::RenameBlendShapeCommand::oldName"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommandaSERK23RenameBlendShapeCommand","dnac::RenameBlendShapeCommand::operator="],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommandaSERR23RenameBlendShapeCommand","dnac::RenameBlendShapeCommand::operator="],[12,3,1,"_CPPv4N4dnac23RenameBlendShapeCommand5pImplE","dnac::RenameBlendShapeCommand::pImpl"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand3runEP17DNACalibDNAReader","dnac::RenameBlendShapeCommand::run"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand3runEP17DNACalibDNAReader","dnac::RenameBlendShapeCommand::run::output"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::setName"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameEPKcPKc","dnac::RenameBlendShapeCommand::setName"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::setName::blendShapeIndex"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameENSt8uint16_tEPKc","dnac::RenameBlendShapeCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameEPKcPKc","dnac::RenameBlendShapeCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac23RenameBlendShapeCommand7setNameEPKcPKc","dnac::RenameBlendShapeCommand::setName::oldName"],[12,1,1,"_CPPv4N4dnac23RenameBlendShapeCommandD0Ev","dnac::RenameBlendShapeCommand::~RenameBlendShapeCommand"],[12,0,1,"_CPPv4N4dnac18RenameJointCommandE","dnac::RenameJointCommand"],[12,0,1,"_CPPv4N4dnac18RenameJointCommand4ImplE","dnac::RenameJointCommand::Impl"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand4Impl4ImplEP14MemoryResource","dnac::RenameJointCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand4Impl4ImplEP14MemoryResource","dnac::RenameJointCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac18RenameJointCommand4Impl5SuperE","dnac::RenameJointCommand::Impl::Super"],[12,1,1,"_CPPv4NK4dnac18RenameJointCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameJointCommand::Impl::getNameByIndex"],[12,2,1,"_CPPv4NK4dnac18RenameJointCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameJointCommand::Impl::getNameByIndex::index_"],[12,2,1,"_CPPv4NK4dnac18RenameJointCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameJointCommand::Impl::getNameByIndex::input"],[12,1,1,"_CPPv4NK4dnac18RenameJointCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameJointCommand::Impl::getNameCount"],[12,2,1,"_CPPv4NK4dnac18RenameJointCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameJointCommand::Impl::getNameCount::input"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameJointCommand::Impl::setNameByIndex"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameJointCommand::Impl::setNameByIndex::index_"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameJointCommand::Impl::setNameByIndex::name"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameJointCommand::Impl::setNameByIndex::output"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEPKcPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandERK18RenameJointCommand","dnac::RenameJointCommand::RenameJointCommand"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandERR18RenameJointCommand","dnac::RenameJointCommand::RenameJointCommand"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::jointIndex"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::memRes"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::memRes"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEPKcPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::memRes"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::newName"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEPKcPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::newName"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand18RenameJointCommandEPKcPKcP14MemoryResource","dnac::RenameJointCommand::RenameJointCommand::oldName"],[12,1,1,"_CPPv4N4dnac18RenameJointCommandaSERK18RenameJointCommand","dnac::RenameJointCommand::operator="],[12,1,1,"_CPPv4N4dnac18RenameJointCommandaSERR18RenameJointCommand","dnac::RenameJointCommand::operator="],[12,3,1,"_CPPv4N4dnac18RenameJointCommand5pImplE","dnac::RenameJointCommand::pImpl"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand3runEP17DNACalibDNAReader","dnac::RenameJointCommand::run"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand3runEP17DNACalibDNAReader","dnac::RenameJointCommand::run::output"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand7setNameENSt8uint16_tEPKc","dnac::RenameJointCommand::setName"],[12,1,1,"_CPPv4N4dnac18RenameJointCommand7setNameEPKcPKc","dnac::RenameJointCommand::setName"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand7setNameENSt8uint16_tEPKc","dnac::RenameJointCommand::setName::jointIndex"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand7setNameENSt8uint16_tEPKc","dnac::RenameJointCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand7setNameEPKcPKc","dnac::RenameJointCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac18RenameJointCommand7setNameEPKcPKc","dnac::RenameJointCommand::setName::oldName"],[12,1,1,"_CPPv4N4dnac18RenameJointCommandD0Ev","dnac::RenameJointCommand::~RenameJointCommand"],[12,0,1,"_CPPv4N4dnac17RenameMeshCommandE","dnac::RenameMeshCommand"],[12,0,1,"_CPPv4N4dnac17RenameMeshCommand4ImplE","dnac::RenameMeshCommand::Impl"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand4Impl4ImplEP14MemoryResource","dnac::RenameMeshCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand4Impl4ImplEP14MemoryResource","dnac::RenameMeshCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac17RenameMeshCommand4Impl5SuperE","dnac::RenameMeshCommand::Impl::Super"],[12,1,1,"_CPPv4NK4dnac17RenameMeshCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameMeshCommand::Impl::getNameByIndex"],[12,2,1,"_CPPv4NK4dnac17RenameMeshCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameMeshCommand::Impl::getNameByIndex::index_"],[12,2,1,"_CPPv4NK4dnac17RenameMeshCommand4Impl14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameMeshCommand::Impl::getNameByIndex::input"],[12,1,1,"_CPPv4NK4dnac17RenameMeshCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameMeshCommand::Impl::getNameCount"],[12,2,1,"_CPPv4NK4dnac17RenameMeshCommand4Impl12getNameCountEPKN3dna6ReaderE","dnac::RenameMeshCommand::Impl::getNameCount::input"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameMeshCommand::Impl::setNameByIndex"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameMeshCommand::Impl::setNameByIndex::index_"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameMeshCommand::Impl::setNameByIndex::name"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand4Impl14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameMeshCommand::Impl::setNameByIndex::output"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEPKcPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandERK17RenameMeshCommand","dnac::RenameMeshCommand::RenameMeshCommand"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandERR17RenameMeshCommand","dnac::RenameMeshCommand::RenameMeshCommand"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEPKcPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::memRes"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandENSt8uint16_tEPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::newName"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEPKcPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::newName"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand17RenameMeshCommandEPKcPKcP14MemoryResource","dnac::RenameMeshCommand::RenameMeshCommand::oldName"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommandaSERK17RenameMeshCommand","dnac::RenameMeshCommand::operator="],[12,1,1,"_CPPv4N4dnac17RenameMeshCommandaSERR17RenameMeshCommand","dnac::RenameMeshCommand::operator="],[12,3,1,"_CPPv4N4dnac17RenameMeshCommand5pImplE","dnac::RenameMeshCommand::pImpl"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand3runEP17DNACalibDNAReader","dnac::RenameMeshCommand::run"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand3runEP17DNACalibDNAReader","dnac::RenameMeshCommand::run::output"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand7setNameENSt8uint16_tEPKc","dnac::RenameMeshCommand::setName"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommand7setNameEPKcPKc","dnac::RenameMeshCommand::setName"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand7setNameENSt8uint16_tEPKc","dnac::RenameMeshCommand::setName::meshIndex"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand7setNameENSt8uint16_tEPKc","dnac::RenameMeshCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand7setNameEPKcPKc","dnac::RenameMeshCommand::setName::newName"],[12,2,1,"_CPPv4N4dnac17RenameMeshCommand7setNameEPKcPKc","dnac::RenameMeshCommand::setName::oldName"],[12,1,1,"_CPPv4N4dnac17RenameMeshCommandD0Ev","dnac::RenameMeshCommand::~RenameMeshCommand"],[12,0,1,"_CPPv4I0EN4dnac21RenameResourceCommandE","dnac::RenameResourceCommand"],[12,6,1,"_CPPv4N4dnac21RenameResourceCommand13ConfigurationE","dnac::RenameResourceCommand::Configuration"],[12,7,1,"_CPPv4N4dnac21RenameResourceCommand13Configuration13RenameByIndexE","dnac::RenameResourceCommand::Configuration::RenameByIndex"],[12,7,1,"_CPPv4N4dnac21RenameResourceCommand13Configuration15SearchAndRenameE","dnac::RenameResourceCommand::Configuration::SearchAndRename"],[12,7,1,"_CPPv4N4dnac21RenameResourceCommand13Configuration12UnconfiguredE","dnac::RenameResourceCommand::Configuration::Unconfigured"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand21RenameResourceCommandEP14MemoryResource","dnac::RenameResourceCommand::RenameResourceCommand"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand21RenameResourceCommandERK21RenameResourceCommand","dnac::RenameResourceCommand::RenameResourceCommand"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand21RenameResourceCommandERR21RenameResourceCommand","dnac::RenameResourceCommand::RenameResourceCommand"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand21RenameResourceCommandEP14MemoryResource","dnac::RenameResourceCommand::RenameResourceCommand::memRes_"],[12,4,1,"_CPPv4N4dnac21RenameResourceCommand5SuperE","dnac::RenameResourceCommand::Super"],[12,5,1,"_CPPv4I0EN4dnac21RenameResourceCommandE","dnac::RenameResourceCommand::TDerived"],[12,3,1,"_CPPv4N4dnac21RenameResourceCommand6configE","dnac::RenameResourceCommand::config"],[12,1,1,"_CPPv4NK4dnac21RenameResourceCommand14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameResourceCommand::getNameByIndex"],[12,2,1,"_CPPv4NK4dnac21RenameResourceCommand14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameResourceCommand::getNameByIndex::index_"],[12,2,1,"_CPPv4NK4dnac21RenameResourceCommand14getNameByIndexEPKN3dna6ReaderENSt8uint16_tE","dnac::RenameResourceCommand::getNameByIndex::input"],[12,1,1,"_CPPv4NK4dnac21RenameResourceCommand12getNameCountEPKN3dna6ReaderE","dnac::RenameResourceCommand::getNameCount"],[12,2,1,"_CPPv4NK4dnac21RenameResourceCommand12getNameCountEPKN3dna6ReaderE","dnac::RenameResourceCommand::getNameCount::input"],[12,3,1,"_CPPv4N4dnac21RenameResourceCommand5indexE","dnac::RenameResourceCommand::index"],[12,3,1,"_CPPv4N4dnac21RenameResourceCommand7newNameE","dnac::RenameResourceCommand::newName"],[12,3,1,"_CPPv4N4dnac21RenameResourceCommand7oldNameE","dnac::RenameResourceCommand::oldName"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommandaSERK21RenameResourceCommand","dnac::RenameResourceCommand::operator="],[12,1,1,"_CPPv4N4dnac21RenameResourceCommandaSERR21RenameResourceCommand","dnac::RenameResourceCommand::operator="],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand6renameEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::rename"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand6renameEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::rename::output"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand3runEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::run"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand3runEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::run::output"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand15searchAndRenameEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::searchAndRename"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand15searchAndRenameEP21DNACalibDNAReaderImpl","dnac::RenameResourceCommand::searchAndRename::output"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand7setNameENSt8uint16_tEPKc","dnac::RenameResourceCommand::setName"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand7setNameEPKcPKc","dnac::RenameResourceCommand::setName"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand7setNameENSt8uint16_tEPKc","dnac::RenameResourceCommand::setName::index_"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand7setNameENSt8uint16_tEPKc","dnac::RenameResourceCommand::setName::newName_"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand7setNameEPKcPKc","dnac::RenameResourceCommand::setName::newName_"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand7setNameEPKcPKc","dnac::RenameResourceCommand::setName::oldName_"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommand14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameResourceCommand::setNameByIndex"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameResourceCommand::setNameByIndex::index_"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameResourceCommand::setNameByIndex::name"],[12,2,1,"_CPPv4N4dnac21RenameResourceCommand14setNameByIndexEPN3dna6WriterENSt8uint16_tEPKc","dnac::RenameResourceCommand::setNameByIndex::output"],[12,1,1,"_CPPv4N4dnac21RenameResourceCommandD0Ev","dnac::RenameResourceCommand::~RenameResourceCommand"],[12,0,1,"_CPPv4N4dnac13RotateCommandE","dnac::RotateCommand"],[12,0,1,"_CPPv4N4dnac13RotateCommand4ImplE","dnac::RotateCommand::Impl"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl4ImplEP14MemoryResource","dnac::RotateCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl4ImplEP14MemoryResource","dnac::RotateCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac13RotateCommand4Impl5SuperE","dnac::RotateCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac13RotateCommand4Impl7degreesE","dnac::RotateCommand::Impl::degrees"],[12,1,1,"_CPPv4NK4dnac13RotateCommand4Impl31getRotationTransformationMatrixEv","dnac::RotateCommand::Impl::getRotationTransformationMatrix"],[12,3,1,"_CPPv4N4dnac13RotateCommand4Impl6originE","dnac::RotateCommand::Impl::origin"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl28rotateBlendShapeTargetDeltasEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateBlendShapeTargetDeltas"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl28rotateBlendShapeTargetDeltasEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateBlendShapeTargetDeltas::output"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl19rotateNeutralJointsEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateNeutralJoints"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl19rotateNeutralJointsEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateNeutralJoints::output"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl21rotateVertexPositionsEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateVertexPositions"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl21rotateVertexPositionsEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::rotateVertexPositions::output"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::RotateCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl9setOriginE7Vector3","dnac::RotateCommand::Impl::setOrigin"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl9setOriginE7Vector3","dnac::RotateCommand::Impl::setOrigin::origin_"],[12,1,1,"_CPPv4N4dnac13RotateCommand4Impl11setRotationE7Vector3","dnac::RotateCommand::Impl::setRotation"],[12,2,1,"_CPPv4N4dnac13RotateCommand4Impl11setRotationE7Vector3","dnac::RotateCommand::Impl::setRotation::degrees_"],[12,1,1,"_CPPv4N4dnac13RotateCommand13RotateCommandE7Vector37Vector3P14MemoryResource","dnac::RotateCommand::RotateCommand"],[12,1,1,"_CPPv4N4dnac13RotateCommand13RotateCommandEP14MemoryResource","dnac::RotateCommand::RotateCommand"],[12,1,1,"_CPPv4N4dnac13RotateCommand13RotateCommandERK13RotateCommand","dnac::RotateCommand::RotateCommand"],[12,1,1,"_CPPv4N4dnac13RotateCommand13RotateCommandERR13RotateCommand","dnac::RotateCommand::RotateCommand"],[12,2,1,"_CPPv4N4dnac13RotateCommand13RotateCommandE7Vector37Vector3P14MemoryResource","dnac::RotateCommand::RotateCommand::degrees"],[12,2,1,"_CPPv4N4dnac13RotateCommand13RotateCommandE7Vector37Vector3P14MemoryResource","dnac::RotateCommand::RotateCommand::memRes"],[12,2,1,"_CPPv4N4dnac13RotateCommand13RotateCommandEP14MemoryResource","dnac::RotateCommand::RotateCommand::memRes"],[12,2,1,"_CPPv4N4dnac13RotateCommand13RotateCommandE7Vector37Vector3P14MemoryResource","dnac::RotateCommand::RotateCommand::origin"],[12,1,1,"_CPPv4N4dnac13RotateCommandaSERK13RotateCommand","dnac::RotateCommand::operator="],[12,1,1,"_CPPv4N4dnac13RotateCommandaSERR13RotateCommand","dnac::RotateCommand::operator="],[12,3,1,"_CPPv4N4dnac13RotateCommand5pImplE","dnac::RotateCommand::pImpl"],[12,1,1,"_CPPv4N4dnac13RotateCommand3runEP17DNACalibDNAReader","dnac::RotateCommand::run"],[12,2,1,"_CPPv4N4dnac13RotateCommand3runEP17DNACalibDNAReader","dnac::RotateCommand::run::output"],[12,1,1,"_CPPv4N4dnac13RotateCommand9setOriginE7Vector3","dnac::RotateCommand::setOrigin"],[12,2,1,"_CPPv4N4dnac13RotateCommand9setOriginE7Vector3","dnac::RotateCommand::setOrigin::origin"],[12,1,1,"_CPPv4N4dnac13RotateCommand11setRotationE7Vector3","dnac::RotateCommand::setRotation"],[12,2,1,"_CPPv4N4dnac13RotateCommand11setRotationE7Vector3","dnac::RotateCommand::setRotation::degrees"],[12,1,1,"_CPPv4N4dnac13RotateCommandD0Ev","dnac::RotateCommand::~RotateCommand"],[12,0,1,"_CPPv4N4dnac12ScaleCommandE","dnac::ScaleCommand"],[12,0,1,"_CPPv4N4dnac12ScaleCommand4ImplE","dnac::ScaleCommand::Impl"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl4ImplEP14MemoryResource","dnac::ScaleCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl4ImplEP14MemoryResource","dnac::ScaleCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac12ScaleCommand4Impl5SuperE","dnac::ScaleCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac12ScaleCommand4Impl6originE","dnac::ScaleCommand::Impl::origin"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::run::output"],[12,3,1,"_CPPv4N4dnac12ScaleCommand4Impl5scaleE","dnac::ScaleCommand::Impl::scale"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl27scaleBlendShapeTargetDeltasEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleBlendShapeTargetDeltas"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl27scaleBlendShapeTargetDeltasEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleBlendShapeTargetDeltas::meshIndex"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl27scaleBlendShapeTargetDeltasEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleBlendShapeTargetDeltas::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl13scaleGeometryEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleGeometry"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl13scaleGeometryEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleGeometry::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl18scaleJointBehaviorEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleJointBehavior"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl18scaleJointBehaviorEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleJointBehavior::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl18scaleNeutralJointsEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleNeutralJoints"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl18scaleNeutralJointsEP21DNACalibDNAReaderImpl","dnac::ScaleCommand::Impl::scaleNeutralJoints::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl20scaleVertexPositionsEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleVertexPositions"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl20scaleVertexPositionsEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleVertexPositions::meshIndex"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl20scaleVertexPositionsEP21DNACalibDNAReaderImplNSt8uint16_tE","dnac::ScaleCommand::Impl::scaleVertexPositions::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl9setOriginE7Vector3","dnac::ScaleCommand::Impl::setOrigin"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl9setOriginE7Vector3","dnac::ScaleCommand::Impl::setOrigin::origin_"],[12,1,1,"_CPPv4N4dnac12ScaleCommand4Impl8setScaleEf","dnac::ScaleCommand::Impl::setScale"],[12,2,1,"_CPPv4N4dnac12ScaleCommand4Impl8setScaleEf","dnac::ScaleCommand::Impl::setScale::scale_"],[12,1,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEP14MemoryResource","dnac::ScaleCommand::ScaleCommand"],[12,1,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandERK12ScaleCommand","dnac::ScaleCommand::ScaleCommand"],[12,1,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandERR12ScaleCommand","dnac::ScaleCommand::ScaleCommand"],[12,1,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEf7Vector3P14MemoryResource","dnac::ScaleCommand::ScaleCommand"],[12,2,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEP14MemoryResource","dnac::ScaleCommand::ScaleCommand::memRes"],[12,2,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEf7Vector3P14MemoryResource","dnac::ScaleCommand::ScaleCommand::memRes"],[12,2,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEf7Vector3P14MemoryResource","dnac::ScaleCommand::ScaleCommand::origin"],[12,2,1,"_CPPv4N4dnac12ScaleCommand12ScaleCommandEf7Vector3P14MemoryResource","dnac::ScaleCommand::ScaleCommand::scale"],[12,1,1,"_CPPv4N4dnac12ScaleCommandaSERK12ScaleCommand","dnac::ScaleCommand::operator="],[12,1,1,"_CPPv4N4dnac12ScaleCommandaSERR12ScaleCommand","dnac::ScaleCommand::operator="],[12,3,1,"_CPPv4N4dnac12ScaleCommand5pImplE","dnac::ScaleCommand::pImpl"],[12,1,1,"_CPPv4N4dnac12ScaleCommand3runEP17DNACalibDNAReader","dnac::ScaleCommand::run"],[12,2,1,"_CPPv4N4dnac12ScaleCommand3runEP17DNACalibDNAReader","dnac::ScaleCommand::run::output"],[12,1,1,"_CPPv4N4dnac12ScaleCommand9setOriginE7Vector3","dnac::ScaleCommand::setOrigin"],[12,2,1,"_CPPv4N4dnac12ScaleCommand9setOriginE7Vector3","dnac::ScaleCommand::setOrigin::origin"],[12,1,1,"_CPPv4N4dnac12ScaleCommand8setScaleEf","dnac::ScaleCommand::setScale"],[12,2,1,"_CPPv4N4dnac12ScaleCommand8setScaleEf","dnac::ScaleCommand::setScale::scale"],[12,1,1,"_CPPv4N4dnac12ScaleCommandD0Ev","dnac::ScaleCommand::~ScaleCommand"],[12,0,1,"_CPPv4N4dnac18SectionLookupTableE","dnac::SectionLookupTable"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable12animatedMapsE","dnac::SectionLookupTable::animatedMaps"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable8behaviorE","dnac::SectionLookupTable::behavior"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable18blendShapeChannelsE","dnac::SectionLookupTable::blendShapeChannels"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable8controlsE","dnac::SectionLookupTable::controls"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable10definitionE","dnac::SectionLookupTable::definition"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable10descriptorE","dnac::SectionLookupTable::descriptor"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable8geometryE","dnac::SectionLookupTable::geometry"],[12,3,1,"_CPPv4N4dnac18SectionLookupTable6jointsE","dnac::SectionLookupTable::joints"],[12,1,1,"_CPPv4I0EN4dnac18SectionLookupTable9serializeEvR7Archive","dnac::SectionLookupTable::serialize"],[12,5,1,"_CPPv4I0EN4dnac18SectionLookupTable9serializeEvR7Archive","dnac::SectionLookupTable::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac18SectionLookupTable9serializeEvR7Archive","dnac::SectionLookupTable::serialize::archive"],[12,0,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommandE","dnac::SetBlendShapeTargetDeltasCommand"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand24DeltasMasksCountMismatchE","dnac::SetBlendShapeTargetDeltasCommand::DeltasMasksCountMismatch"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32DeltasVertexIndicesCountMismatchE","dnac::SetBlendShapeTargetDeltasCommand::DeltasVertexIndicesCountMismatch"],[12,0,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4ImplE","dnac::SetBlendShapeTargetDeltasCommand::Impl"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl4ImplEP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl4ImplEP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl5SuperE","dnac::SetBlendShapeTargetDeltasCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl21blendShapeTargetIndexE","dnac::SetBlendShapeTargetDeltasCommand::Impl::blendShapeTargetIndex"],[12,1,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas"],[12,5,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas::FOperation"],[12,5,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas::FWeightGetter"],[12,2,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas::getWeight"],[12,2,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas::op"],[12,2,1,"_CPPv4I00EN4dnac32SetBlendShapeTargetDeltasCommand4Impl29computeBlendShapeTargetDeltasEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::computeBlendShapeTargetDeltas::output"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl6deltasE","dnac::SetBlendShapeTargetDeltasCommand::Impl::deltas"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl7densifyER16RawVector3VectorR6VectorINSt8uint32_tEENSt8uint32_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::densify"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl7densifyER16RawVector3VectorR6VectorINSt8uint32_tEENSt8uint32_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::densify::bsDeltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl7densifyER16RawVector3VectorR6VectorINSt8uint32_tEENSt8uint32_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::densify::bsVertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl7densifyER16RawVector3VectorR6VectorINSt8uint32_tEENSt8uint32_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::densify::vertexCount"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl5masksE","dnac::SetBlendShapeTargetDeltasCommand::Impl::masks"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9meshIndexE","dnac::SetBlendShapeTargetDeltasCommand::Impl::meshIndex"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9operationE","dnac::SetBlendShapeTargetDeltasCommand::Impl::operation"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetBlendShapeTargetDeltasCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl24setBlendShapeTargetIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setBlendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl24setBlendShapeTargetIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setBlendShapeTargetIndex::blendShapeTargetIndex_"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewI7Vector3E","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewI7Vector3E","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas::deltas_"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas::xs"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas::ys"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setDeltas::zs"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8setMasksE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setMasks"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8setMasksE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setMasks::masks_"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setMeshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setMeshIndex::meshIndex_"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl12setOperationE15VectorOperation","dnac::SetBlendShapeTargetDeltasCommand::Impl::setOperation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl12setOperationE15VectorOperation","dnac::SetBlendShapeTargetDeltasCommand::Impl::setOperation::operation_"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl16setVertexIndicesE14ConstArrayViewINSt8uint32_tEE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setVertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl16setVertexIndicesE14ConstArrayViewINSt8uint32_tEE","dnac::SetBlendShapeTargetDeltasCommand::Impl::setVertexIndices::vertexIndices_"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8sparsifyER16RawVector3VectorR6VectorINSt8uint32_tEEf","dnac::SetBlendShapeTargetDeltasCommand::Impl::sparsify"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8sparsifyER16RawVector3VectorR6VectorINSt8uint32_tEEf","dnac::SetBlendShapeTargetDeltasCommand::Impl::sparsify::bsDeltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8sparsifyER16RawVector3VectorR6VectorINSt8uint32_tEEf","dnac::SetBlendShapeTargetDeltasCommand::Impl::sparsify::bsVertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl8sparsifyER16RawVector3VectorR6VectorINSt8uint32_tEEf","dnac::SetBlendShapeTargetDeltasCommand::Impl::sparsify::threshold"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl6statusE","dnac::SetBlendShapeTargetDeltasCommand::Impl::status"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand4Impl13vertexIndicesE","dnac::SetBlendShapeTargetDeltasCommand::Impl::vertexIndices"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand23NoVertexIndicesSetErrorE","dnac::SetBlendShapeTargetDeltasCommand::NoVertexIndicesSetError"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandEP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandERK32SetBlendShapeTargetDeltasCommand","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandERR32SetBlendShapeTargetDeltasCommand","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::deltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::deltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::masks"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::masks"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::memRes"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::memRes"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::memRes"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::memRes"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandEP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::memRes"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::operation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::operation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::operation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::operation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::vertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::vertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::vertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::vertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::xs"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::xs"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::ys"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::ys"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::zs"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand32SetBlendShapeTargetDeltasCommandENSt8uint16_tENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewINSt8uint32_tEE15VectorOperationP14MemoryResource","dnac::SetBlendShapeTargetDeltasCommand::SetBlendShapeTargetDeltasCommand::zs"],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand29VertexIndicesOutOfBoundsErrorE","dnac::SetBlendShapeTargetDeltasCommand::VertexIndicesOutOfBoundsError"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommandaSERK32SetBlendShapeTargetDeltasCommand","dnac::SetBlendShapeTargetDeltasCommand::operator="],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommandaSERR32SetBlendShapeTargetDeltasCommand","dnac::SetBlendShapeTargetDeltasCommand::operator="],[12,3,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand5pImplE","dnac::SetBlendShapeTargetDeltasCommand::pImpl"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand3runEP17DNACalibDNAReader","dnac::SetBlendShapeTargetDeltasCommand::run"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand3runEP17DNACalibDNAReader","dnac::SetBlendShapeTargetDeltasCommand::run::output"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand24setBlendShapeTargetIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::setBlendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand24setBlendShapeTargetIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::setBlendShapeTargetIndex::blendShapeTargetIndex"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewI7Vector3E","dnac::SetBlendShapeTargetDeltasCommand::setDeltas"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setDeltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewI7Vector3E","dnac::SetBlendShapeTargetDeltasCommand::setDeltas::deltas"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setDeltas::xs"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setDeltas::ys"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand9setDeltasE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setDeltas::zs"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand8setMasksE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setMasks"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand8setMasksE14ConstArrayViewIfE","dnac::SetBlendShapeTargetDeltasCommand::setMasks::masks"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand12setMeshIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::setMeshIndex"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand12setMeshIndexENSt8uint16_tE","dnac::SetBlendShapeTargetDeltasCommand::setMeshIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand12setOperationE15VectorOperation","dnac::SetBlendShapeTargetDeltasCommand::setOperation"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand12setOperationE15VectorOperation","dnac::SetBlendShapeTargetDeltasCommand::setOperation::operation"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand16setVertexIndicesE14ConstArrayViewINSt8uint32_tEE","dnac::SetBlendShapeTargetDeltasCommand::setVertexIndices"],[12,2,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommand16setVertexIndicesE14ConstArrayViewINSt8uint32_tEE","dnac::SetBlendShapeTargetDeltasCommand::setVertexIndices::vertexIndices"],[12,1,1,"_CPPv4N4dnac32SetBlendShapeTargetDeltasCommandD0Ev","dnac::SetBlendShapeTargetDeltasCommand::~SetBlendShapeTargetDeltasCommand"],[12,0,1,"_CPPv4N4dnac14SetLODsCommandE","dnac::SetLODsCommand"],[12,0,1,"_CPPv4N4dnac14SetLODsCommand4ImplE","dnac::SetLODsCommand::Impl"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand4Impl4ImplEP14MemoryResource","dnac::SetLODsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand4Impl4ImplEP14MemoryResource","dnac::SetLODsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac14SetLODsCommand4Impl5SuperE","dnac::SetLODsCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac14SetLODsCommand4Impl4lodsE","dnac::SetLODsCommand::Impl::lods"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetLODsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetLODsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand4Impl7setLODsE14ConstArrayViewINSt8uint16_tEE","dnac::SetLODsCommand::Impl::setLODs"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand4Impl7setLODsE14ConstArrayViewINSt8uint16_tEE","dnac::SetLODsCommand::Impl::setLODs::lods_"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetLODsCommand::SetLODsCommand"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandEP14MemoryResource","dnac::SetLODsCommand::SetLODsCommand"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandERK14SetLODsCommand","dnac::SetLODsCommand::SetLODsCommand"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandERR14SetLODsCommand","dnac::SetLODsCommand::SetLODsCommand"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetLODsCommand::SetLODsCommand::lods"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetLODsCommand::SetLODsCommand::memRes"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand14SetLODsCommandEP14MemoryResource","dnac::SetLODsCommand::SetLODsCommand::memRes"],[12,1,1,"_CPPv4N4dnac14SetLODsCommandaSERK14SetLODsCommand","dnac::SetLODsCommand::operator="],[12,1,1,"_CPPv4N4dnac14SetLODsCommandaSERR14SetLODsCommand","dnac::SetLODsCommand::operator="],[12,3,1,"_CPPv4N4dnac14SetLODsCommand5pImplE","dnac::SetLODsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand3runEP17DNACalibDNAReader","dnac::SetLODsCommand::run"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand3runEP17DNACalibDNAReader","dnac::SetLODsCommand::run::output"],[12,1,1,"_CPPv4N4dnac14SetLODsCommand7setLODsE14ConstArrayViewINSt8uint16_tEE","dnac::SetLODsCommand::setLODs"],[12,2,1,"_CPPv4N4dnac14SetLODsCommand7setLODsE14ConstArrayViewINSt8uint16_tEE","dnac::SetLODsCommand::setLODs::lods"],[12,1,1,"_CPPv4N4dnac14SetLODsCommandD0Ev","dnac::SetLODsCommand::~SetLODsCommand"],[12,0,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommandE","dnac::SetNeutralJointRotationsCommand"],[12,0,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4ImplE","dnac::SetNeutralJointRotationsCommand::Impl"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl4ImplEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl4ImplEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl5SuperE","dnac::SetNeutralJointRotationsCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl9rotationsE","dnac::SetNeutralJointRotationsCommand::Impl::rotations"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetNeutralJointRotationsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetNeutralJointRotationsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointRotationsCommand::Impl::setRotations"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::Impl::setRotations"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointRotationsCommand::Impl::setRotations::rotations_"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::Impl::setRotations::xs"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::Impl::setRotations::ys"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand4Impl12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::Impl::setRotations::zs"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandERK31SetNeutralJointRotationsCommand","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandERR31SetNeutralJointRotationsCommand","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::rotations"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::xs"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::ys"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand31SetNeutralJointRotationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointRotationsCommand::SetNeutralJointRotationsCommand::zs"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommandaSERK31SetNeutralJointRotationsCommand","dnac::SetNeutralJointRotationsCommand::operator="],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommandaSERR31SetNeutralJointRotationsCommand","dnac::SetNeutralJointRotationsCommand::operator="],[12,3,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand5pImplE","dnac::SetNeutralJointRotationsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand3runEP17DNACalibDNAReader","dnac::SetNeutralJointRotationsCommand::run"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand3runEP17DNACalibDNAReader","dnac::SetNeutralJointRotationsCommand::run::output"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointRotationsCommand::setRotations"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::setRotations"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointRotationsCommand::setRotations::rotations"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::setRotations::xs"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::setRotations::ys"],[12,2,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommand12setRotationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointRotationsCommand::setRotations::zs"],[12,1,1,"_CPPv4N4dnac31SetNeutralJointRotationsCommandD0Ev","dnac::SetNeutralJointRotationsCommand::~SetNeutralJointRotationsCommand"],[12,0,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommandE","dnac::SetNeutralJointTranslationsCommand"],[12,0,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4ImplE","dnac::SetNeutralJointTranslationsCommand::Impl"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl4ImplEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl4ImplEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl5SuperE","dnac::SetNeutralJointTranslationsCommand::Impl::Super"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetNeutralJointTranslationsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetNeutralJointTranslationsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations::translations_"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations::xs"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations::ys"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::Impl::setTranslations::zs"],[12,3,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand4Impl12translationsE","dnac::SetNeutralJointTranslationsCommand::Impl::translations"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandERK34SetNeutralJointTranslationsCommand","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandERR34SetNeutralJointTranslationsCommand","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::memRes"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewI7Vector3EP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::translations"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::xs"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::ys"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand34SetNeutralJointTranslationsCommandE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfEP14MemoryResource","dnac::SetNeutralJointTranslationsCommand::SetNeutralJointTranslationsCommand::zs"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommandaSERK34SetNeutralJointTranslationsCommand","dnac::SetNeutralJointTranslationsCommand::operator="],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommandaSERR34SetNeutralJointTranslationsCommand","dnac::SetNeutralJointTranslationsCommand::operator="],[12,3,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand5pImplE","dnac::SetNeutralJointTranslationsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand3runEP17DNACalibDNAReader","dnac::SetNeutralJointTranslationsCommand::run"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand3runEP17DNACalibDNAReader","dnac::SetNeutralJointTranslationsCommand::run::output"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointTranslationsCommand::setTranslations"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::setTranslations"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewI7Vector3E","dnac::SetNeutralJointTranslationsCommand::setTranslations::translations"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::setTranslations::xs"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::setTranslations::ys"],[12,2,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommand15setTranslationsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetNeutralJointTranslationsCommand::setTranslations::zs"],[12,1,1,"_CPPv4N4dnac34SetNeutralJointTranslationsCommandD0Ev","dnac::SetNeutralJointTranslationsCommand::~SetNeutralJointTranslationsCommand"],[12,0,1,"_CPPv4N4dnac21SetSkinWeightsCommandE","dnac::SetSkinWeightsCommand"],[12,0,1,"_CPPv4N4dnac21SetSkinWeightsCommand4ImplE","dnac::SetSkinWeightsCommand::Impl"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl4ImplEP14MemoryResource","dnac::SetSkinWeightsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl4ImplEP14MemoryResource","dnac::SetSkinWeightsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl5SuperE","dnac::SetSkinWeightsCommand::Impl::Super"],[12,3,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl12jointIndicesE","dnac::SetSkinWeightsCommand::Impl::jointIndices"],[12,3,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl9meshIndexE","dnac::SetSkinWeightsCommand::Impl::meshIndex"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetSkinWeightsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetSkinWeightsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::SetSkinWeightsCommand::Impl::setJointIndices"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::SetSkinWeightsCommand::Impl::setJointIndices::jointIndices_"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetSkinWeightsCommand::Impl::setMeshIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetSkinWeightsCommand::Impl::setMeshIndex::meshIndex_"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl14setVertexIndexENSt8uint32_tE","dnac::SetSkinWeightsCommand::Impl::setVertexIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl14setVertexIndexENSt8uint32_tE","dnac::SetSkinWeightsCommand::Impl::setVertexIndex::vertexIndex_"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl10setWeightsE14ConstArrayViewIfE","dnac::SetSkinWeightsCommand::Impl::setWeights"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl10setWeightsE14ConstArrayViewIfE","dnac::SetSkinWeightsCommand::Impl::setWeights::weights_"],[12,3,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl11vertexIndexE","dnac::SetSkinWeightsCommand::Impl::vertexIndex"],[12,3,1,"_CPPv4N4dnac21SetSkinWeightsCommand4Impl7weightsE","dnac::SetSkinWeightsCommand::Impl::weights"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandERK21SetSkinWeightsCommand","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandERR21SetSkinWeightsCommand","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::jointIndices"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::memRes"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::memRes"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::vertexIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand21SetSkinWeightsCommandENSt8uint16_tENSt8uint32_tE14ConstArrayViewIfE14ConstArrayViewINSt8uint16_tEEP14MemoryResource","dnac::SetSkinWeightsCommand::SetSkinWeightsCommand::weights"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommandaSERK21SetSkinWeightsCommand","dnac::SetSkinWeightsCommand::operator="],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommandaSERR21SetSkinWeightsCommand","dnac::SetSkinWeightsCommand::operator="],[12,3,1,"_CPPv4N4dnac21SetSkinWeightsCommand5pImplE","dnac::SetSkinWeightsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand3runEP17DNACalibDNAReader","dnac::SetSkinWeightsCommand::run"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand3runEP17DNACalibDNAReader","dnac::SetSkinWeightsCommand::run::output"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::SetSkinWeightsCommand::setJointIndices"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand15setJointIndicesE14ConstArrayViewINSt8uint16_tEE","dnac::SetSkinWeightsCommand::setJointIndices::jointIndices"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand12setMeshIndexENSt8uint16_tE","dnac::SetSkinWeightsCommand::setMeshIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand12setMeshIndexENSt8uint16_tE","dnac::SetSkinWeightsCommand::setMeshIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand14setVertexIndexENSt8uint32_tE","dnac::SetSkinWeightsCommand::setVertexIndex"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand14setVertexIndexENSt8uint32_tE","dnac::SetSkinWeightsCommand::setVertexIndex::vertexIndex"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommand10setWeightsE14ConstArrayViewIfE","dnac::SetSkinWeightsCommand::setWeights"],[12,2,1,"_CPPv4N4dnac21SetSkinWeightsCommand10setWeightsE14ConstArrayViewIfE","dnac::SetSkinWeightsCommand::setWeights::weights"],[12,1,1,"_CPPv4N4dnac21SetSkinWeightsCommandD0Ev","dnac::SetSkinWeightsCommand::~SetSkinWeightsCommand"],[12,0,1,"_CPPv4N4dnac25SetVertexPositionsCommandE","dnac::SetVertexPositionsCommand"],[12,0,1,"_CPPv4N4dnac25SetVertexPositionsCommand4ImplE","dnac::SetVertexPositionsCommand::Impl"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl4ImplEP14MemoryResource","dnac::SetVertexPositionsCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl4ImplEP14MemoryResource","dnac::SetVertexPositionsCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl5SuperE","dnac::SetVertexPositionsCommand::Impl::Super"],[12,1,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions"],[12,5,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions::FOperation"],[12,5,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions::FWeightGetter"],[12,2,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions::getWeight"],[12,2,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions::op"],[12,2,1,"_CPPv4I00EN4dnac25SetVertexPositionsCommand4Impl22computeVertexPositionsEv10FOperation13FWeightGetterP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::computeVertexPositions::output"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl5masksE","dnac::SetVertexPositionsCommand::Impl::masks"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl9meshIndexE","dnac::SetVertexPositionsCommand::Impl::meshIndex"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl9operationE","dnac::SetVertexPositionsCommand::Impl::operation"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl9positionsE","dnac::SetVertexPositionsCommand::Impl::positions"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::SetVertexPositionsCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl8setMasksE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setMasks"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl8setMasksE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setMasks::masks_"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetVertexPositionsCommand::Impl::setMeshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setMeshIndexENSt8uint16_tE","dnac::SetVertexPositionsCommand::Impl::setMeshIndex::meshIndex_"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setOperationE15VectorOperation","dnac::SetVertexPositionsCommand::Impl::setOperation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setOperationE15VectorOperation","dnac::SetVertexPositionsCommand::Impl::setOperation::operation_"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewI7Vector3E","dnac::SetVertexPositionsCommand::Impl::setPositions"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setPositions"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewI7Vector3E","dnac::SetVertexPositionsCommand::Impl::setPositions::positions_"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setPositions::xs"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setPositions::ys"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::Impl::setPositions::zs"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand4Impl6statusE","dnac::SetVertexPositionsCommand::Impl::status"],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand27PositionsMasksCountMismatchE","dnac::SetVertexPositionsCommand::PositionsMasksCountMismatch"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandEP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandERK25SetVertexPositionsCommand","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandERR25SetVertexPositionsCommand","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::masks"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::masks"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::memRes"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::memRes"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::memRes"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::memRes"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandEP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::memRes"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::meshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::operation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::operation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::operation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::operation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::positions"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewI7Vector3E15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::positions"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::xs"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::xs"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::ys"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::ys"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::zs"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand25SetVertexPositionsCommandENSt8uint16_tE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE15VectorOperationP14MemoryResource","dnac::SetVertexPositionsCommand::SetVertexPositionsCommand::zs"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommandaSERK25SetVertexPositionsCommand","dnac::SetVertexPositionsCommand::operator="],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommandaSERR25SetVertexPositionsCommand","dnac::SetVertexPositionsCommand::operator="],[12,3,1,"_CPPv4N4dnac25SetVertexPositionsCommand5pImplE","dnac::SetVertexPositionsCommand::pImpl"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand3runEP17DNACalibDNAReader","dnac::SetVertexPositionsCommand::run"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand3runEP17DNACalibDNAReader","dnac::SetVertexPositionsCommand::run::output"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand8setMasksE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setMasks"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand8setMasksE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setMasks::masks"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setMeshIndexENSt8uint16_tE","dnac::SetVertexPositionsCommand::setMeshIndex"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setMeshIndexENSt8uint16_tE","dnac::SetVertexPositionsCommand::setMeshIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setOperationE15VectorOperation","dnac::SetVertexPositionsCommand::setOperation"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setOperationE15VectorOperation","dnac::SetVertexPositionsCommand::setOperation::operation"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewI7Vector3E","dnac::SetVertexPositionsCommand::setPositions"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setPositions"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewI7Vector3E","dnac::SetVertexPositionsCommand::setPositions::positions"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setPositions::xs"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setPositions::ys"],[12,2,1,"_CPPv4N4dnac25SetVertexPositionsCommand12setPositionsE14ConstArrayViewIfE14ConstArrayViewIfE14ConstArrayViewIfE","dnac::SetVertexPositionsCommand::setPositions::zs"],[12,1,1,"_CPPv4N4dnac25SetVertexPositionsCommandD0Ev","dnac::SetVertexPositionsCommand::~SetVertexPositionsCommand"],[12,0,1,"_CPPv4I_NSt6size_tEEN4dnac9SignatureE","dnac::Signature"],[12,1,1,"_CPPv4N4dnac9Signature9SignatureE18SignatureValueType","dnac::Signature::Signature"],[12,2,1,"_CPPv4N4dnac9Signature9SignatureE18SignatureValueType","dnac::Signature::Signature::bytes"],[12,4,1,"_CPPv4N4dnac9Signature18SignatureValueTypeE","dnac::Signature::SignatureValueType"],[12,5,1,"_CPPv4I_NSt6size_tEEN4dnac9SignatureE","dnac::Signature::Size"],[12,1,1,"_CPPv4NK4dnac9Signature7matchesEv","dnac::Signature::matches"],[12,1,1,"_CPPv4I0EN4dnac9Signature9serializeEvR7Archive","dnac::Signature::serialize"],[12,5,1,"_CPPv4I0EN4dnac9Signature9serializeEvR7Archive","dnac::Signature::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac9Signature9serializeEvR7Archive","dnac::Signature::serialize::archive"],[12,3,1,"_CPPv4N4dnac9Signature5valueE","dnac::Signature::value"],[12,0,1,"_CPPv4N4dnac16TranslateCommandE","dnac::TranslateCommand"],[12,0,1,"_CPPv4N4dnac16TranslateCommand4ImplE","dnac::TranslateCommand::Impl"],[12,1,1,"_CPPv4N4dnac16TranslateCommand4Impl4ImplEP14MemoryResource","dnac::TranslateCommand::Impl::Impl"],[12,2,1,"_CPPv4N4dnac16TranslateCommand4Impl4ImplEP14MemoryResource","dnac::TranslateCommand::Impl::Impl::memRes_"],[12,4,1,"_CPPv4N4dnac16TranslateCommand4Impl5SuperE","dnac::TranslateCommand::Impl::Super"],[12,1,1,"_CPPv4N4dnac16TranslateCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::run"],[12,2,1,"_CPPv4N4dnac16TranslateCommand4Impl3runEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::run::output"],[12,1,1,"_CPPv4N4dnac16TranslateCommand4Impl14setTranslationE7Vector3","dnac::TranslateCommand::Impl::setTranslation"],[12,2,1,"_CPPv4N4dnac16TranslateCommand4Impl14setTranslationE7Vector3","dnac::TranslateCommand::Impl::setTranslation::translation_"],[12,1,1,"_CPPv4N4dnac16TranslateCommand4Impl22translateNeutralJointsEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::translateNeutralJoints"],[12,2,1,"_CPPv4N4dnac16TranslateCommand4Impl22translateNeutralJointsEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::translateNeutralJoints::output"],[12,1,1,"_CPPv4N4dnac16TranslateCommand4Impl24translateVertexPositionsEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::translateVertexPositions"],[12,2,1,"_CPPv4N4dnac16TranslateCommand4Impl24translateVertexPositionsEP21DNACalibDNAReaderImpl","dnac::TranslateCommand::Impl::translateVertexPositions::output"],[12,3,1,"_CPPv4N4dnac16TranslateCommand4Impl11translationE","dnac::TranslateCommand::Impl::translation"],[12,1,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandE7Vector3P14MemoryResource","dnac::TranslateCommand::TranslateCommand"],[12,1,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandEP14MemoryResource","dnac::TranslateCommand::TranslateCommand"],[12,1,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandERK16TranslateCommand","dnac::TranslateCommand::TranslateCommand"],[12,1,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandERR16TranslateCommand","dnac::TranslateCommand::TranslateCommand"],[12,2,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandE7Vector3P14MemoryResource","dnac::TranslateCommand::TranslateCommand::memRes"],[12,2,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandEP14MemoryResource","dnac::TranslateCommand::TranslateCommand::memRes"],[12,2,1,"_CPPv4N4dnac16TranslateCommand16TranslateCommandE7Vector3P14MemoryResource","dnac::TranslateCommand::TranslateCommand::translation"],[12,1,1,"_CPPv4N4dnac16TranslateCommandaSERK16TranslateCommand","dnac::TranslateCommand::operator="],[12,1,1,"_CPPv4N4dnac16TranslateCommandaSERR16TranslateCommand","dnac::TranslateCommand::operator="],[12,3,1,"_CPPv4N4dnac16TranslateCommand5pImplE","dnac::TranslateCommand::pImpl"],[12,1,1,"_CPPv4N4dnac16TranslateCommand3runEP17DNACalibDNAReader","dnac::TranslateCommand::run"],[12,2,1,"_CPPv4N4dnac16TranslateCommand3runEP17DNACalibDNAReader","dnac::TranslateCommand::run::output"],[12,1,1,"_CPPv4N4dnac16TranslateCommand14setTranslationE7Vector3","dnac::TranslateCommand::setTranslation"],[12,2,1,"_CPPv4N4dnac16TranslateCommand14setTranslationE7Vector3","dnac::TranslateCommand::setTranslation::translation"],[12,1,1,"_CPPv4N4dnac16TranslateCommandD0Ev","dnac::TranslateCommand::~TranslateCommand"],[12,0,1,"_CPPv4N4dnac8TriangleE","dnac::Triangle"],[12,1,1,"_CPPv4NK4dnac8Triangle1AEv","dnac::Triangle::A"],[12,1,1,"_CPPv4NK4dnac8Triangle1BEv","dnac::Triangle::B"],[12,1,1,"_CPPv4NK4dnac8Triangle1CEv","dnac::Triangle::C"],[12,1,1,"_CPPv4N4dnac8Triangle8TriangleERK5fvec2RK5fvec2RK5fvec2","dnac::Triangle::Triangle"],[12,1,1,"_CPPv4N4dnac8Triangle8TriangleERK8Triangle","dnac::Triangle::Triangle"],[12,1,1,"_CPPv4N4dnac8Triangle8TriangleERKNSt5arrayI5fvec2XL3EEEE","dnac::Triangle::Triangle"],[12,1,1,"_CPPv4N4dnac8Triangle8TriangleERR8Triangle","dnac::Triangle::Triangle"],[12,2,1,"_CPPv4N4dnac8Triangle8TriangleERK5fvec2RK5fvec2RK5fvec2","dnac::Triangle::Triangle::a"],[12,2,1,"_CPPv4N4dnac8Triangle8TriangleERK5fvec2RK5fvec2RK5fvec2","dnac::Triangle::Triangle::b"],[12,2,1,"_CPPv4N4dnac8Triangle8TriangleERK5fvec2RK5fvec2RK5fvec2","dnac::Triangle::Triangle::c"],[12,2,1,"_CPPv4N4dnac8Triangle8TriangleERK8Triangle","dnac::Triangle::Triangle::triangle"],[12,2,1,"_CPPv4N4dnac8Triangle8TriangleERKNSt5arrayI5fvec2XL3EEEE","dnac::Triangle::Triangle::vertices"],[12,3,1,"_CPPv4N4dnac8Triangle1aE","dnac::Triangle::a"],[12,3,1,"_CPPv4N4dnac8Triangle3d00E","dnac::Triangle::d00"],[12,3,1,"_CPPv4N4dnac8Triangle3d01E","dnac::Triangle::d01"],[12,3,1,"_CPPv4N4dnac8Triangle3d11E","dnac::Triangle::d11"],[12,3,1,"_CPPv4N4dnac8Triangle5denomE","dnac::Triangle::denom"],[12,1,1,"_CPPv4NK4dnac8Triangle20getBarycentricCoordsERK5fvec2","dnac::Triangle::getBarycentricCoords"],[12,2,1,"_CPPv4NK4dnac8Triangle20getBarycentricCoordsERK5fvec2","dnac::Triangle::getBarycentricCoords::point"],[12,1,1,"_CPPv4N4dnac8TriangleaSERK8Triangle","dnac::Triangle::operator="],[12,1,1,"_CPPv4N4dnac8TriangleaSERR8Triangle","dnac::Triangle::operator="],[12,2,1,"_CPPv4N4dnac8TriangleaSERK8Triangle","dnac::Triangle::operator=::triangle"],[12,2,1,"_CPPv4N4dnac8TriangleaSERR8Triangle","dnac::Triangle::operator=::triangle"],[12,3,1,"_CPPv4N4dnac8Triangle2v0E","dnac::Triangle::v0"],[12,3,1,"_CPPv4N4dnac8Triangle2v1E","dnac::Triangle::v1"],[12,0,1,"_CPPv4N4dnac20UVBarycentricMappingE","dnac::UVBarycentricMapping"],[12,4,1,"_CPPv4N4dnac20UVBarycentricMapping30BarycentricPositionIndicesPairE","dnac::UVBarycentricMapping::BarycentricPositionIndicesPair"],[12,4,1,"_CPPv4N4dnac20UVBarycentricMapping27TrianglePositionIndicesPairE","dnac::UVBarycentricMapping::TrianglePositionIndicesPair"],[12,1,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingEPKN3dna6ReaderENSt8uint16_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping"],[12,1,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::Us"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::Vs"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::faceCount"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::faceGetter"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingEPKN3dna6ReaderENSt8uint16_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::memRes"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::memRes"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingEPKN3dna6ReaderENSt8uint16_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::meshIndex"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingEPKN3dna6ReaderENSt8uint16_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::reader"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::textureCoordinateUVIndices"],[12,2,1,"_CPPv4N4dnac20UVBarycentricMapping20UVBarycentricMappingERKNSt8functionIF14ConstArrayViewINSt8uint32_tEENSt8uint32_tEEEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewINSt8uint32_tEE14ConstArrayViewIfE14ConstArrayViewIfENSt8uint32_tEP14MemoryResource","dnac::UVBarycentricMapping::UVBarycentricMapping::vertexPositionIndices"],[12,3,1,"_CPPv4N4dnac20UVBarycentricMapping6bBoxesE","dnac::UVBarycentricMapping::bBoxes"],[12,1,1,"_CPPv4NK4dnac20UVBarycentricMapping14getBarycentricERK5fvec2","dnac::UVBarycentricMapping::getBarycentric"],[12,2,1,"_CPPv4NK4dnac20UVBarycentricMapping14getBarycentricERK5fvec2","dnac::UVBarycentricMapping::getBarycentric::uv"],[12,1,1,"_CPPv4NK4dnac20UVBarycentricMapping16getBoundingBoxesEv","dnac::UVBarycentricMapping::getBoundingBoxes"],[12,1,1,"_CPPv4NK4dnac20UVBarycentricMapping12getTrianglesEv","dnac::UVBarycentricMapping::getTriangles"],[12,3,1,"_CPPv4N4dnac20UVBarycentricMapping9trianglesE","dnac::UVBarycentricMapping::triangles"],[12,6,1,"_CPPv4N4dnac15VectorOperationE","dnac::VectorOperation"],[12,7,1,"_CPPv4N4dnac15VectorOperation3AddE","dnac::VectorOperation::Add"],[12,7,1,"_CPPv4N4dnac15VectorOperation11InterpolateE","dnac::VectorOperation::Interpolate"],[12,7,1,"_CPPv4N4dnac15VectorOperation8MultiplyE","dnac::VectorOperation::Multiply"],[12,7,1,"_CPPv4N4dnac15VectorOperation8SubtractE","dnac::VectorOperation::Subtract"],[12,0,1,"_CPPv4N4dnac7VersionE","dnac::Version"],[12,1,1,"_CPPv4N4dnac7Version7VersionENSt8uint16_tENSt8uint16_tE","dnac::Version::Version"],[12,2,1,"_CPPv4N4dnac7Version7VersionENSt8uint16_tENSt8uint16_tE","dnac::Version::Version::generation_"],[12,2,1,"_CPPv4N4dnac7Version7VersionENSt8uint16_tENSt8uint16_tE","dnac::Version::Version::version_"],[12,3,1,"_CPPv4N4dnac7Version10generationE","dnac::Version::generation"],[12,1,1,"_CPPv4NK4dnac7Version7matchesEv","dnac::Version::matches"],[12,1,1,"_CPPv4I0EN4dnac7Version9serializeEvR7Archive","dnac::Version::serialize"],[12,5,1,"_CPPv4I0EN4dnac7Version9serializeEvR7Archive","dnac::Version::serialize::Archive"],[12,2,1,"_CPPv4I0EN4dnac7Version9serializeEvR7Archive","dnac::Version::serialize::archive"],[12,3,1,"_CPPv4N4dnac7Version7versionE","dnac::Version::version"],[12,0,1,"_CPPv4N4dnac19WeightGetterFactoryE","dnac::WeightGetterFactory"],[12,4,1,"_CPPv4N4dnac19WeightGetterFactory10GetterFuncE","dnac::WeightGetterFactory::GetterFunc"],[12,1,1,"_CPPv4N4dnac19WeightGetterFactory6createERK6VectorIfE","dnac::WeightGetterFactory::create"],[12,2,1,"_CPPv4N4dnac19WeightGetterFactory6createERK6VectorIfE","dnac::WeightGetterFactory::create::masks"],[12,0,1,"_CPPv4I0EN4dnac10WriterImplE","dnac::WriterImpl"],[12,5,1,"_CPPv4I0EN4dnac10WriterImplE","dnac::WriterImpl::TWriterBase"],[12,1,1,"_CPPv4N4dnac10WriterImpl10WriterImplEP14MemoryResource","dnac::WriterImpl::WriterImpl"],[12,2,1,"_CPPv4N4dnac10WriterImpl10WriterImplEP14MemoryResource","dnac::WriterImpl::WriterImpl::memRes_"],[12,1,1,"_CPPv4N4dnac10WriterImpl23clearAnimatedMapIndicesEv","dnac::WriterImpl::clearAnimatedMapIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl21clearAnimatedMapNamesEv","dnac::WriterImpl::clearAnimatedMapNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl29clearBlendShapeChannelIndicesEv","dnac::WriterImpl::clearBlendShapeChannelIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl27clearBlendShapeChannelNamesEv","dnac::WriterImpl::clearBlendShapeChannelNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl22clearBlendShapeTargetsENSt8uint16_tE","dnac::WriterImpl::clearBlendShapeTargets"],[12,2,1,"_CPPv4N4dnac10WriterImpl22clearBlendShapeTargetsENSt8uint16_tE","dnac::WriterImpl::clearBlendShapeTargets::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl28clearFaceVertexLayoutIndicesENSt8uint16_tE","dnac::WriterImpl::clearFaceVertexLayoutIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl28clearFaceVertexLayoutIndicesENSt8uint16_tE","dnac::WriterImpl::clearFaceVertexLayoutIndices::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl20clearGUIControlNamesEv","dnac::WriterImpl::clearGUIControlNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl16clearJointGroupsEv","dnac::WriterImpl::clearJointGroups"],[12,1,1,"_CPPv4N4dnac10WriterImpl17clearJointIndicesEv","dnac::WriterImpl::clearJointIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl15clearJointNamesEv","dnac::WriterImpl::clearJointNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl27clearLODAnimatedMapMappingsEv","dnac::WriterImpl::clearLODAnimatedMapMappings"],[12,1,1,"_CPPv4N4dnac10WriterImpl33clearLODBlendShapeChannelMappingsEv","dnac::WriterImpl::clearLODBlendShapeChannelMappings"],[12,1,1,"_CPPv4N4dnac10WriterImpl21clearLODJointMappingsEv","dnac::WriterImpl::clearLODJointMappings"],[12,1,1,"_CPPv4N4dnac10WriterImpl20clearLODMeshMappingsEv","dnac::WriterImpl::clearLODMeshMappings"],[12,1,1,"_CPPv4N4dnac10WriterImpl34clearMeshBlendShapeChannelMappingsEv","dnac::WriterImpl::clearMeshBlendShapeChannelMappings"],[12,1,1,"_CPPv4N4dnac10WriterImpl16clearMeshIndicesEv","dnac::WriterImpl::clearMeshIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl14clearMeshNamesEv","dnac::WriterImpl::clearMeshNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl11clearMeshesEv","dnac::WriterImpl::clearMeshes"],[12,1,1,"_CPPv4N4dnac10WriterImpl13clearMetaDataEv","dnac::WriterImpl::clearMetaData"],[12,1,1,"_CPPv4N4dnac10WriterImpl20clearRawControlNamesEv","dnac::WriterImpl::clearRawControlNames"],[12,1,1,"_CPPv4N4dnac10WriterImpl16clearSkinWeightsENSt8uint16_tE","dnac::WriterImpl::clearSkinWeights"],[12,2,1,"_CPPv4N4dnac10WriterImpl16clearSkinWeightsENSt8uint16_tE","dnac::WriterImpl::clearSkinWeights::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl16deleteJointGroupENSt8uint16_tE","dnac::WriterImpl::deleteJointGroup"],[12,2,1,"_CPPv4N4dnac10WriterImpl16deleteJointGroupENSt8uint16_tE","dnac::WriterImpl::deleteJointGroup::jointGroupIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl10deleteMeshENSt8uint16_tE","dnac::WriterImpl::deleteMesh"],[12,2,1,"_CPPv4N4dnac10WriterImpl10deleteMeshENSt8uint16_tE","dnac::WriterImpl::deleteMesh::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl6setAgeENSt8uint16_tE","dnac::WriterImpl::setAge"],[12,2,1,"_CPPv4N4dnac10WriterImpl6setAgeENSt8uint16_tE","dnac::WriterImpl::setAge::age"],[12,1,1,"_CPPv4N4dnac10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapCutValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapCutValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl23setAnimatedMapCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapCutValues::cutValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapFromValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapFromValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setAnimatedMapFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapFromValues::fromValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapIndices::animatedMapIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl21setAnimatedMapIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapIndices::index"],[12,1,1,"_CPPv4N4dnac10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapInputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapInputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setAnimatedMapInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapInputIndices::inputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapLODs"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapLODs::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapLODs::lods"],[12,1,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dnac::WriterImpl::setAnimatedMapName"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dnac::WriterImpl::setAnimatedMapName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setAnimatedMapNameENSt8uint16_tEPKc","dnac::WriterImpl::setAnimatedMapName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapOutputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapOutputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setAnimatedMapOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setAnimatedMapOutputIndices::outputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapSlopeValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapSlopeValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setAnimatedMapSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapSlopeValues::slopeValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapToValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapToValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl22setAnimatedMapToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setAnimatedMapToValues::toValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl12setArchetypeE9Archetype","dnac::WriterImpl::setArchetype"],[12,2,1,"_CPPv4N4dnac10WriterImpl12setArchetypeE9Archetype","dnac::WriterImpl::setArchetype::archetype"],[12,1,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndex::blendShapeChannelIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndex::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeChannelIndexENSt8uint16_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndex::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndices::blendShapeChannelIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setBlendShapeChannelIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelIndices::index"],[12,1,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelInputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelInputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeChannelInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelInputIndices::inputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelLODs"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelLODs::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelLODsEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelLODs::lods"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dnac::WriterImpl::setBlendShapeChannelName"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dnac::WriterImpl::setBlendShapeChannelName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setBlendShapeChannelNameENSt8uint16_tEPKc","dnac::WriterImpl::setBlendShapeChannelName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelOutputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelOutputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl33setBlendShapeChannelOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setBlendShapeChannelOutputIndices::outputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetDeltas"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetDeltas::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetDeltas::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetDeltas::deltas"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setBlendShapeTargetDeltasENSt8uint16_tENSt8uint16_tEPK5DeltaNSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetDeltas::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetVertexIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetVertexIndices::blendShapeTargetIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetVertexIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetVertexIndices::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl32setBlendShapeTargetVertexIndicesENSt8uint16_tENSt8uint16_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setBlendShapeTargetVertexIndices::vertexIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl19setCoordinateSystemE16CoordinateSystem","dnac::WriterImpl::setCoordinateSystem"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setCoordinateSystemE16CoordinateSystem","dnac::WriterImpl::setCoordinateSystem::system"],[12,1,1,"_CPPv4N4dnac10WriterImpl15setDBComplexityEPKc","dnac::WriterImpl::setDBComplexity"],[12,2,1,"_CPPv4N4dnac10WriterImpl15setDBComplexityEPKc","dnac::WriterImpl::setDBComplexity::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl11setDBMaxLODENSt8uint16_tE","dnac::WriterImpl::setDBMaxLOD"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setDBMaxLODENSt8uint16_tE","dnac::WriterImpl::setDBMaxLOD::lod"],[12,1,1,"_CPPv4N4dnac10WriterImpl9setDBNameEPKc","dnac::WriterImpl::setDBName"],[12,2,1,"_CPPv4N4dnac10WriterImpl9setDBNameEPKc","dnac::WriterImpl::setDBName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setFaceVertexLayoutIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setFaceVertexLayoutIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setFaceVertexLayoutIndices::faceIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setFaceVertexLayoutIndices::layoutIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setFaceVertexLayoutIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint32_tENSt8uint32_tE","dnac::WriterImpl::setFaceVertexLayoutIndices::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setGUIControlName"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setGUIControlName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setGUIControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setGUIControlName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawCutValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawCutValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setGUIToRawCutValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawCutValues::cutValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawFromValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawFromValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl21setGUIToRawFromValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawFromValues::fromValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawInputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawInputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl23setGUIToRawInputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawInputIndices::inputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawOutputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawOutputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setGUIToRawOutputIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setGUIToRawOutputIndices::outputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawSlopeValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawSlopeValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl22setGUIToRawSlopeValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawSlopeValues::slopeValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawToValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawToValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setGUIToRawToValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setGUIToRawToValues::toValues"],[12,1,1,"_CPPv4N4dnac10WriterImpl9setGenderE6Gender","dnac::WriterImpl::setGender"],[12,2,1,"_CPPv4N4dnac10WriterImpl9setGenderE6Gender","dnac::WriterImpl::setGender::gender"],[12,1,1,"_CPPv4N4dnac10WriterImpl19setJointColumnCountENSt8uint16_tE","dnac::WriterImpl::setJointColumnCount"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setJointColumnCountENSt8uint16_tE","dnac::WriterImpl::setJointColumnCount::columnCount"],[12,1,1,"_CPPv4N4dnac10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupInputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupInputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupInputIndices::inputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupInputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupInputIndices::jointGroupIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupJointIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupJointIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupJointIndices::jointGroupIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl25setJointGroupJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupJointIndices::jointIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupLODs"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupLODs::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupLODs::jointGroupIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setJointGroupLODsENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupLODs::lods"],[12,1,1,"_CPPv4N4dnac10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupOutputIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupOutputIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupOutputIndices::jointGroupIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setJointGroupOutputIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointGroupOutputIndices::outputIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dnac::WriterImpl::setJointGroupValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dnac::WriterImpl::setJointGroupValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dnac::WriterImpl::setJointGroupValues::jointGroupIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setJointGroupValuesENSt8uint16_tEPKfNSt8uint32_tE","dnac::WriterImpl::setJointGroupValues::values"],[12,1,1,"_CPPv4N4dnac10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointHierarchy"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointHierarchy::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setJointHierarchyEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointHierarchy::jointIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointIndices::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl15setJointIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setJointIndices::jointIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl12setJointNameENSt8uint16_tEPKc","dnac::WriterImpl::setJointName"],[12,2,1,"_CPPv4N4dnac10WriterImpl12setJointNameENSt8uint16_tEPKc","dnac::WriterImpl::setJointName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl12setJointNameENSt8uint16_tEPKc","dnac::WriterImpl::setJointName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl16setJointRowCountENSt8uint16_tE","dnac::WriterImpl::setJointRowCount"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setJointRowCountENSt8uint16_tE","dnac::WriterImpl::setJointRowCount::rowCount"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODAnimatedMapMapping"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODAnimatedMapMapping::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setLODAnimatedMapMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODAnimatedMapMapping::lod"],[12,1,1,"_CPPv4N4dnac10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODBlendShapeChannelMapping"],[12,2,1,"_CPPv4N4dnac10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODBlendShapeChannelMapping::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl30setLODBlendShapeChannelMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODBlendShapeChannelMapping::lod"],[12,1,1,"_CPPv4N4dnac10WriterImpl11setLODCountENSt8uint16_tE","dnac::WriterImpl::setLODCount"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setLODCountENSt8uint16_tE","dnac::WriterImpl::setLODCount::lodCount"],[12,1,1,"_CPPv4N4dnac10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODJointMapping"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODJointMapping::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setLODJointMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODJointMapping::lod"],[12,1,1,"_CPPv4N4dnac10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODMeshMapping"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODMeshMapping::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setLODMeshMappingENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setLODMeshMapping::lod"],[12,1,1,"_CPPv4N4dnac10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMaximumInfluencePerVertex"],[12,2,1,"_CPPv4N4dnac10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMaximumInfluencePerVertex::maxInfluenceCount"],[12,2,1,"_CPPv4N4dnac10WriterImpl28setMaximumInfluencePerVertexENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMaximumInfluencePerVertex::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshBlendShapeChannelMapping"],[12,2,1,"_CPPv4N4dnac10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshBlendShapeChannelMapping::blendShapeChannelIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshBlendShapeChannelMapping::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl31setMeshBlendShapeChannelMappingENSt8uint32_tENSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshBlendShapeChannelMapping::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshIndices::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl14setMeshIndicesENSt8uint16_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setMeshIndices::meshIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl11setMeshNameENSt8uint16_tEPKc","dnac::WriterImpl::setMeshName"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setMeshNameENSt8uint16_tEPKc","dnac::WriterImpl::setMeshName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setMeshNameENSt8uint16_tEPKc","dnac::WriterImpl::setMeshName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl11setMetaDataEPKcPKc","dnac::WriterImpl::setMetaData"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setMetaDataEPKcPKc","dnac::WriterImpl::setMetaData::key"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setMetaDataEPKcPKc","dnac::WriterImpl::setMetaData::value"],[12,1,1,"_CPPv4N4dnac10WriterImpl7setNameEPKc","dnac::WriterImpl::setName"],[12,2,1,"_CPPv4N4dnac10WriterImpl7setNameEPKc","dnac::WriterImpl::setName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointRotations"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointRotations::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl24setNeutralJointRotationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointRotations::rotations"],[12,1,1,"_CPPv4N4dnac10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointTranslations"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointTranslations::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setNeutralJointTranslationsEPK7Vector3NSt8uint16_tE","dnac::WriterImpl::setNeutralJointTranslations::translations"],[12,1,1,"_CPPv4N4dnac10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDColumnIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDColumnIndices::columnIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl19setPSDColumnIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDColumnIndices::count"],[12,1,1,"_CPPv4N4dnac10WriterImpl11setPSDCountENSt8uint16_tE","dnac::WriterImpl::setPSDCount"],[12,2,1,"_CPPv4N4dnac10WriterImpl11setPSDCountENSt8uint16_tE","dnac::WriterImpl::setPSDCount::count"],[12,1,1,"_CPPv4N4dnac10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDRowIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDRowIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setPSDRowIndicesEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setPSDRowIndices::rowIndices"],[12,1,1,"_CPPv4N4dnac10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setPSDValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setPSDValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl12setPSDValuesEPKfNSt8uint16_tE","dnac::WriterImpl::setPSDValues::weights"],[12,1,1,"_CPPv4N4dnac10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setRawControlName"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setRawControlName::index"],[12,2,1,"_CPPv4N4dnac10WriterImpl17setRawControlNameENSt8uint16_tEPKc","dnac::WriterImpl::setRawControlName::name"],[12,1,1,"_CPPv4N4dnac10WriterImpl15setRotationUnitE12RotationUnit","dnac::WriterImpl::setRotationUnit"],[12,2,1,"_CPPv4N4dnac10WriterImpl15setRotationUnitE12RotationUnit","dnac::WriterImpl::setRotationUnit::unit"],[12,1,1,"_CPPv4N4dnac10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setSkinWeightsJointIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setSkinWeightsJointIndices::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setSkinWeightsJointIndices::jointIndices"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setSkinWeightsJointIndices::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl26setSkinWeightsJointIndicesENSt8uint16_tENSt8uint32_tEPKNSt8uint16_tENSt8uint16_tE","dnac::WriterImpl::setSkinWeightsJointIndices::vertexIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dnac::WriterImpl::setSkinWeightsValues"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dnac::WriterImpl::setSkinWeightsValues::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dnac::WriterImpl::setSkinWeightsValues::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dnac::WriterImpl::setSkinWeightsValues::vertexIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl20setSkinWeightsValuesENSt8uint16_tENSt8uint32_tEPKfNSt8uint16_tE","dnac::WriterImpl::setSkinWeightsValues::weights"],[12,1,1,"_CPPv4N4dnac10WriterImpl18setTranslationUnitE15TranslationUnit","dnac::WriterImpl::setTranslationUnit"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setTranslationUnitE15TranslationUnit","dnac::WriterImpl::setTranslationUnit::unit"],[12,1,1,"_CPPv4N4dnac10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dnac::WriterImpl::setVertexLayouts"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dnac::WriterImpl::setVertexLayouts::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dnac::WriterImpl::setVertexLayouts::layouts"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexLayoutsENSt8uint16_tEPK12VertexLayoutNSt8uint32_tE","dnac::WriterImpl::setVertexLayouts::meshIndex"],[12,1,1,"_CPPv4N4dnac10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dnac::WriterImpl::setVertexNormals"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dnac::WriterImpl::setVertexNormals::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dnac::WriterImpl::setVertexNormals::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl16setVertexNormalsENSt8uint16_tEPK6NormalNSt8uint32_tE","dnac::WriterImpl::setVertexNormals::normals"],[12,1,1,"_CPPv4N4dnac10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dnac::WriterImpl::setVertexPositions"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dnac::WriterImpl::setVertexPositions::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dnac::WriterImpl::setVertexPositions::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl18setVertexPositionsENSt8uint16_tEPK8PositionNSt8uint32_tE","dnac::WriterImpl::setVertexPositions::positions"],[12,1,1,"_CPPv4N4dnac10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dnac::WriterImpl::setVertexTextureCoordinates"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dnac::WriterImpl::setVertexTextureCoordinates::count"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dnac::WriterImpl::setVertexTextureCoordinates::meshIndex"],[12,2,1,"_CPPv4N4dnac10WriterImpl27setVertexTextureCoordinatesENSt8uint16_tEPK17TextureCoordinateNSt8uint32_tE","dnac::WriterImpl::setVertexTextureCoordinates::textureCoordinates"]],"dna_viewer.builder":[[2,8,0,"-","builder"],[2,8,0,"-","config"],[2,8,0,"-","joint"],[2,8,0,"-","mesh"],[2,8,0,"-","rig_builder"]],"dna_viewer.builder.builder":[[2,9,1,"","BuildResult"],[2,9,1,"","Builder"]],"dna_viewer.builder.builder.BuildResult":[[2,10,1,"","get_all_meshes"],[2,11,1,"","meshes_per_lod"]],"dna_viewer.builder.builder.Builder":[[2,10,1,"","add_animated_map_attributes_on_root_joint"],[2,10,1,"","add_attribute"],[2,10,1,"","add_ctrl_attributes_on_root_joint"],[2,10,1,"","add_joints"],[2,10,1,"","add_key_frames"],[2,10,1,"","add_mesh_to_display_layer"],[2,10,1,"","attach_mesh_to_lod"],[2,10,1,"","build"],[2,10,1,"","build_meshes"],[2,10,1,"","build_meshes_by_lod"],[2,10,1,"","create_groups"],[2,10,1,"","default_lambert_shader"],[2,10,1,"","get_angle_unit"],[2,10,1,"","get_angle_unit_from_int"],[2,10,1,"","get_display_layers"],[2,10,1,"","get_filtered_meshes"],[2,10,1,"","get_linear_unit"],[2,10,1,"","get_linear_unit_from_int"],[2,10,1,"","get_mesh_indices_filter"],[2,10,1,"","get_mesh_node_fullpath_on_root"],[2,10,1,"","new_scene"],[2,10,1,"","set_filtered_meshes"],[2,10,1,"","set_units"]],"dna_viewer.builder.config":[[2,9,1,"","AngleUnit"],[2,9,1,"","Config"],[2,9,1,"","LinearUnit"],[2,9,1,"","RigConfig"]],"dna_viewer.builder.config.AngleUnit":[[2,11,1,"","degree"],[2,11,1,"","radian"]],"dna_viewer.builder.config.Config":[[2,11,1,"","add_animated_map_attributes_on_root_joint"],[2,11,1,"","add_blend_shapes"],[2,11,1,"","add_ctrl_attributes_on_root_joint"],[2,11,1,"","add_joints"],[2,11,1,"","add_key_frames"],[2,11,1,"","add_mesh_name_to_blend_shape_channel_name"],[2,11,1,"","add_skin_cluster"],[2,11,1,"","animated_map_attribute_multipliers_name"],[2,11,1,"","blend_shape_group_prefix"],[2,11,1,"","blend_shape_name_postfix"],[2,11,1,"","create_display_layers"],[2,11,1,"","facial_root_joint_name"],[2,11,1,"","geometry_group"],[2,10,1,"","get_geometry_group"],[2,10,1,"","get_rig_group"],[2,10,1,"","get_top_level_group"],[2,11,1,"","group_by_lod"],[2,11,1,"","lod_filter"],[2,11,1,"","mesh_filter"],[2,11,1,"","meshes"],[2,11,1,"","skin_cluster_suffix"],[2,11,1,"","top_level_group"]],"dna_viewer.builder.config.LinearUnit":[[2,11,1,"","cm"],[2,11,1,"","m"]],"dna_viewer.builder.config.RigConfig":[[2,11,1,"","aas_method"],[2,11,1,"","aas_parameter"],[2,11,1,"","aas_path"],[2,11,1,"","add_rig_logic"],[2,11,1,"","analog_gui_path"],[2,11,1,"","animated_map_naming"],[2,11,1,"","blend_shape_naming"],[2,11,1,"","central_aim"],[2,11,1,"","central_driver_name"],[2,11,1,"","control_naming"],[2,11,1,"","eye_gui_name"],[2,11,1,"","gui_path"],[2,11,1,"","gui_translate_x"],[2,11,1,"","joint_naming"],[2,11,1,"","le_aim"],[2,11,1,"","left_eye_aim_up_name"],[2,11,1,"","left_eye_driver_name"],[2,11,1,"","left_eye_joint_name"],[2,11,1,"","re_aim"],[2,11,1,"","rig_logic_command"],[2,11,1,"","rig_logic_name"],[2,11,1,"","right_eye_aim_up_name"],[2,11,1,"","right_eye_driver_name"],[2,11,1,"","right_eye_joint_name"]],"dna_viewer.builder.joint":[[2,9,1,"","Joint"]],"dna_viewer.builder.joint.Joint":[[2,10,1,"","add_joint_to_scene"],[2,10,1,"","process"]],"dna_viewer.builder.maya":[[3,8,0,"-","mesh"],[3,8,0,"-","skin_weights"],[3,8,0,"-","util"]],"dna_viewer.builder.maya.mesh":[[3,9,1,"","MayaMesh"],[3,9,1,"","Mesh"]],"dna_viewer.builder.maya.mesh.MayaMesh":[[3,10,1,"","add_blend_shapes"],[3,10,1,"","add_skin_cluster"],[3,10,1,"","add_texture_coordinates"],[3,10,1,"","create_blend_shape"],[3,10,1,"","create_blend_shape_node"],[3,10,1,"","create_blend_shapes"],[3,10,1,"","create_mesh_object"],[3,10,1,"","create_neutral_mesh"],[3,10,1,"","get_texture_data"],[3,10,1,"","get_vertex_positions_from_dna_vertex_positions"],[3,10,1,"","prepare_mesh"],[3,10,1,"","rename_mesh"],[3,10,1,"","set_skin_weights"]],"dna_viewer.builder.maya.mesh.Mesh":[[3,11,1,"","derived_mesh_names"],[3,11,1,"","dna_vertex_layout_positions"],[3,11,1,"","dna_vertex_positions"],[3,11,1,"","polygon_connects"],[3,11,1,"","polygon_faces"]],"dna_viewer.builder.maya.skin_weights":[[3,9,1,"","MayaSkinWeights"],[3,12,1,"","get_file_joint_mappings"],[3,12,1,"","get_skin_weights_data"],[3,12,1,"","get_skin_weights_from_scene"],[3,12,1,"","import_skin_weights"],[3,12,1,"","set_skin_weights_to_scene"]],"dna_viewer.builder.maya.skin_weights.MayaSkinWeights":[[3,10,1,"","get_skin_cluster_influence"],[3,10,1,"","get_skin_weights_for_mesh_name"],[3,11,1,"","joints"],[3,11,1,"","no_of_influences"],[3,11,1,"","skinning_method"],[3,11,1,"","vertices_info"]],"dna_viewer.builder.maya.util":[[3,9,1,"","Maya"]],"dna_viewer.builder.maya.util.Maya":[[3,10,1,"","get_element"],[3,10,1,"","get_transform"],[3,10,1,"","get_translation"],[3,10,1,"","set_translation"]],"dna_viewer.builder.mesh":[[2,9,1,"","Mesh"]],"dna_viewer.builder.mesh.Mesh":[[2,10,1,"","add_blend_shapes"],[2,10,1,"","add_skin_cluster"],[2,10,1,"","build"],[2,10,1,"","create_neutral_mesh"],[2,10,1,"","prepare_joint_ids"],[2,10,1,"","prepare_joints"]],"dna_viewer.builder.rig_builder":[[2,9,1,"","RigBuilder"]],"dna_viewer.builder.rig_builder.RigBuilder":[[2,10,1,"","add_analog_gui"],[2,10,1,"","add_animated_map_attributes"],[2,10,1,"","add_ctrl_attributes"],[2,10,1,"","add_eye_locators"],[2,10,1,"","add_eyes"],[2,10,1,"","add_gui"],[2,10,1,"","add_rig_logic"],[2,10,1,"","import_gui"],[2,10,1,"","position_gui"],[2,10,1,"","run_additional_assemble_script"],[2,10,1,"","source_py_file"]],"dna_viewer.dnalib":[[4,8,0,"-","behavior"],[4,8,0,"-","definition"],[4,8,0,"-","descriptor"],[4,8,0,"-","dnalib"],[4,8,0,"-","geometry"],[4,8,0,"-","layer"]],"dna_viewer.dnalib.behavior":[[4,9,1,"","AnimatedMapsConditionalTable"],[4,9,1,"","Behavior"],[4,9,1,"","BlendShapesData"],[4,9,1,"","ConditionalTable"],[4,9,1,"","JointGroup"],[4,9,1,"","JointGroups"],[4,9,1,"","PSDMatrix"]],"dna_viewer.dnalib.behavior.AnimatedMapsConditionalTable":[[4,11,1,"","conditional_table"],[4,11,1,"","lods"]],"dna_viewer.dnalib.behavior.Behavior":[[4,10,1,"","add_animated_maps_conditional_table"],[4,10,1,"","add_blend_shapes"],[4,10,1,"","add_gui_to_raw"],[4,10,1,"","add_joint_groups"],[4,10,1,"","add_psd"],[4,10,1,"","get_animated_map_cut_values"],[4,10,1,"","get_animated_map_from_values"],[4,10,1,"","get_animated_map_input_indices"],[4,10,1,"","get_animated_map_lods"],[4,10,1,"","get_animated_map_output_indices"],[4,10,1,"","get_animated_map_slope_values"],[4,10,1,"","get_animated_map_to_values"],[4,10,1,"","get_blend_shape_channel_input_indices"],[4,10,1,"","get_blend_shape_channel_lods"],[4,10,1,"","get_blend_shape_channel_output_indices"],[4,10,1,"","get_gui_to_raw_cut_values"],[4,10,1,"","get_gui_to_raw_from_values"],[4,10,1,"","get_gui_to_raw_input_indices"],[4,10,1,"","get_gui_to_raw_output_indices"],[4,10,1,"","get_gui_to_raw_to_values"],[4,10,1,"","get_joint_column_count"],[4,10,1,"","get_joint_group_count"],[4,10,1,"","get_joint_group_input_indices"],[4,10,1,"","get_joint_group_joint_indices"],[4,10,1,"","get_joint_group_logs"],[4,10,1,"","get_joint_group_output_indices"],[4,10,1,"","get_joint_group_values"],[4,10,1,"","get_joint_row_count"],[4,10,1,"","get_joint_variable_attribute_indices"],[4,10,1,"","get_psd_column_indices"],[4,10,1,"","get_psd_count"],[4,10,1,"","get_psd_row_indices"],[4,10,1,"","get_psd_values"],[4,10,1,"","gget_gui_to_raw_slope_values"],[4,10,1,"","is_read"],[4,10,1,"","read"],[4,10,1,"","start_read"]],"dna_viewer.dnalib.behavior.BlendShapesData":[[4,11,1,"","inputs"],[4,11,1,"","lods"],[4,11,1,"","outputs"]],"dna_viewer.dnalib.behavior.ConditionalTable":[[4,11,1,"","cut_values"],[4,11,1,"","from_values"],[4,11,1,"","inputs"],[4,11,1,"","outputs"],[4,11,1,"","slope_values"],[4,11,1,"","to_values"]],"dna_viewer.dnalib.behavior.JointGroup":[[4,11,1,"","inputs"],[4,11,1,"","joints"],[4,11,1,"","lods"],[4,11,1,"","outputs"],[4,11,1,"","values"]],"dna_viewer.dnalib.behavior.JointGroups":[[4,11,1,"","joint_column_count"],[4,11,1,"","joint_groups"],[4,11,1,"","joint_row_count"],[4,11,1,"","joint_variable_attribute_indices"]],"dna_viewer.dnalib.behavior.PSDMatrix":[[4,11,1,"","columns"],[4,11,1,"","count"],[4,11,1,"","rows"],[4,11,1,"","values"]],"dna_viewer.dnalib.definition":[[4,9,1,"","Definition"],[4,9,1,"","GeometryEntity"],[4,9,1,"","Joints"]],"dna_viewer.dnalib.definition.Definition":[[4,10,1,"","add_animated_maps"],[4,10,1,"","add_blend_shape_channels"],[4,10,1,"","add_controls"],[4,10,1,"","add_joints"],[4,10,1,"","add_mesh_blend_shape_channel_mapping"],[4,10,1,"","add_meshes"],[4,10,1,"","add_neutral_joints"],[4,10,1,"","get_animated_map_count"],[4,10,1,"","get_animated_map_indices_for_lod"],[4,10,1,"","get_animated_map_name"],[4,10,1,"","get_animated_map_names"],[4,10,1,"","get_blend_shape_channel_count"],[4,10,1,"","get_blend_shape_channel_indices_for_lod"],[4,10,1,"","get_blend_shape_channel_name"],[4,10,1,"","get_gui_control_count"],[4,10,1,"","get_gui_control_name"],[4,10,1,"","get_joint_count"],[4,10,1,"","get_joint_indices_for_lod"],[4,10,1,"","get_joint_name"],[4,10,1,"","get_joint_parent_index"],[4,10,1,"","get_lod_count"],[4,10,1,"","get_mesh_blend_shape_channel_mapping"],[4,10,1,"","get_mesh_blend_shape_channel_mapping_count"],[4,10,1,"","get_mesh_blend_shape_channel_mapping_for_lod"],[4,10,1,"","get_mesh_count"],[4,10,1,"","get_mesh_indices_for_lod"],[4,10,1,"","get_mesh_name"],[4,10,1,"","get_neutral_joint_rotation"],[4,10,1,"","get_neutral_joint_rotation_xs"],[4,10,1,"","get_neutral_joint_rotation_ys"],[4,10,1,"","get_neutral_joint_rotation_zs"],[4,10,1,"","get_neutral_joint_translation"],[4,10,1,"","get_neutral_joint_translation_xs"],[4,10,1,"","get_neutral_joint_translation_ys"],[4,10,1,"","get_neutral_joint_translation_zs"],[4,10,1,"","get_raw_control_count"],[4,10,1,"","get_raw_control_name"],[4,10,1,"","get_raw_control_names"],[4,10,1,"","get_rotation_unit"],[4,10,1,"","get_translation_unit"],[4,10,1,"","is_read"],[4,10,1,"","read"],[4,10,1,"","start_read"]],"dna_viewer.dnalib.definition.GeometryEntity":[[4,11,1,"","lod_indices"],[4,11,1,"","names"]],"dna_viewer.dnalib.definition.Joints":[[4,11,1,"","parent_index"]],"dna_viewer.dnalib.descriptor":[[4,9,1,"","Descriptor"]],"dna_viewer.dnalib.descriptor.Descriptor":[[4,10,1,"","add_basic_data"],[4,10,1,"","add_db_data"],[4,10,1,"","add_geometry_data"],[4,10,1,"","add_metadata"],[4,10,1,"","is_read"],[4,10,1,"","layer_enabled"],[4,10,1,"","read"],[4,10,1,"","start_read"]],"dna_viewer.dnalib.dnalib":[[4,9,1,"","DNA"]],"dna_viewer.dnalib.dnalib.DNA":[[4,10,1,"","create_reader"],[4,10,1,"","get_all_meshes_grouped_by_lod"],[4,10,1,"","get_all_skin_weights_joint_indices_for_mesh"],[4,10,1,"","get_all_skin_weights_values_for_mesh"],[4,10,1,"","get_blend_shape_target_deltas_with_vertex_id"],[4,10,1,"","get_blend_shapes"],[4,10,1,"","get_faces"],[4,10,1,"","get_layouts_for_mesh_index"],[4,10,1,"","get_lowest_lod_containing_meshes"],[4,10,1,"","get_mesh_id_from_mesh_name"],[4,10,1,"","get_meshes_by_lods"],[4,10,1,"","get_polygon_faces_and_connects"],[4,10,1,"","get_skin_weight_matrix_for_mesh"],[4,10,1,"","get_texture_coordinate_index"],[4,10,1,"","get_vertex_layout_positions_for_mesh_index"],[4,10,1,"","get_vertex_positions_for_mesh_index"],[4,10,1,"","get_vertex_texture_coordinates_for_mesh"],[4,10,1,"","has_blend_shapes"],[4,10,1,"","is_read"],[4,10,1,"","read"],[4,10,1,"","read_all_neutral_joints"]],"dna_viewer.dnalib.geometry":[[4,9,1,"","Geometry"]],"dna_viewer.dnalib.geometry.Geometry":[[4,10,1,"","add_face_vertex_layouts"],[4,10,1,"","add_layouts"],[4,10,1,"","add_mesh"],[4,10,1,"","add_mesh_blend_shapes"],[4,10,1,"","add_mesh_skin_weights"],[4,10,1,"","add_mesh_topology"],[4,10,1,"","add_positions"],[4,10,1,"","add_texture_coordinates"],[4,10,1,"","get_blend_shape_channel_index"],[4,10,1,"","get_blend_shape_target_count"],[4,10,1,"","get_blend_shape_target_delta"],[4,10,1,"","get_blend_shape_target_delta_count"],[4,10,1,"","get_blend_shape_target_vertex_indices"],[4,10,1,"","get_face_count"],[4,10,1,"","get_face_vertex_layout_indices"],[4,10,1,"","get_maximum_influence_per_vertex"],[4,10,1,"","get_skin_weights_joint_indices"],[4,10,1,"","get_skin_weights_values"],[4,10,1,"","get_vertex_layout"],[4,10,1,"","get_vertex_layout_count"],[4,10,1,"","get_vertex_position"],[4,10,1,"","get_vertex_position_count"],[4,10,1,"","get_vertex_texture_coordinate"],[4,10,1,"","get_vertex_texture_coordinate_count"],[4,10,1,"","is_read"],[4,10,1,"","read"],[4,10,1,"","read_target_deltas"],[4,10,1,"","start_read"]],"dna_viewer.dnalib.layer":[[4,9,1,"","Layer"]],"dna_viewer.dnalib.layer.Layer":[[4,11,1,"","all"],[4,11,1,"","behavior"],[4,11,1,"","definition"],[4,11,1,"","descriptor"],[4,11,1,"","geometry"]],"dna_viewer.ui":[[5,8,0,"-","app"],[5,8,0,"-","widgets"]],"dna_viewer.ui.app":[[5,9,1,"","DnaViewerWindow"],[5,9,1,"","MeshTreeList"],[5,12,1,"","show"]],"dna_viewer.ui.app.DnaViewerWindow":[[5,10,1,"","activate_window"],[5,10,1,"","add_animated_map_attributes_on_root_joint"],[5,10,1,"","add_blend_shapes"],[5,10,1,"","add_ctrl_attributes_on_root_joint"],[5,10,1,"","add_joints"],[5,10,1,"","add_key_frames"],[5,10,1,"","add_mesh_name_to_blend_shape_channel_name"],[5,10,1,"","add_rig_logic"],[5,10,1,"","add_skin_cluster"],[5,11,1,"","animated_map_attributes_on_root_joint_cb"],[5,11,1,"","blend_shapes_cb"],[5,10,1,"","create_aas_selector"],[5,10,1,"","create_analog_gui_selector"],[5,10,1,"","create_body"],[5,10,1,"","create_build_options"],[5,10,1,"","create_checkbox"],[5,10,1,"","create_dna_chooser"],[5,10,1,"","create_dna_selector"],[5,10,1,"","create_extra_build_options"],[5,10,1,"","create_file_chooser"],[5,10,1,"","create_gui_selector"],[5,10,1,"","create_header"],[5,10,1,"","create_help_btn"],[5,10,1,"","create_load_dna_button"],[5,10,1,"","create_main_widget"],[5,10,1,"","create_mesh_selector"],[5,10,1,"","create_process_btn"],[5,10,1,"","create_progress_bar"],[5,10,1,"","create_ui"],[5,11,1,"","ctrl_attributes_on_root_joint_cb"],[5,11,1,"","dna"],[5,10,1,"","enable_additional_build_options"],[5,10,1,"","get_lod_indices_names"],[5,10,1,"","get_mesh_names"],[5,10,1,"","is_checked"],[5,10,1,"","is_enabled_and_checked"],[5,11,1,"","joints_cb"],[5,11,1,"","key_frames_cb"],[5,10,1,"","load_css"],[5,11,1,"","load_dna_btn"],[5,11,1,"","main_widget"],[5,10,1,"","maya_main_window"],[5,11,1,"","mesh_name_to_blend_shape_channel_name_cb"],[5,11,1,"","mesh_tree_list"],[5,10,1,"","on_dna_changed"],[5,10,1,"","on_dna_selected"],[5,10,1,"","on_generic_changed"],[5,10,1,"","on_help"],[5,10,1,"","on_joints_changed"],[5,10,1,"","on_load_dna_clicked"],[5,10,1,"","process"],[5,11,1,"","process_btn"],[5,11,1,"","progress_bar"],[5,11,1,"","rig_logic_cb"],[5,11,1,"","select_aas_path"],[5,11,1,"","select_analog_gui_path"],[5,11,1,"","select_dna_path"],[5,11,1,"","select_gui_path"],[5,10,1,"","set_progress"],[5,10,1,"","set_riglogic_cb_enabled"],[5,10,1,"","set_size"],[5,10,1,"","setup_window"],[5,10,1,"","show_message_dialog"],[5,10,1,"","show_window"],[5,11,1,"","skin_cb"],[5,11,1,"","staticMetaObject"]],"dna_viewer.ui.app.MeshTreeList":[[5,10,1,"","create_mesh_tree"],[5,10,1,"","deselect_all"],[5,10,1,"","fill_mesh_list"],[5,10,1,"","get_selected_meshes"],[5,10,1,"","iterate_over_items"],[5,10,1,"","select_all"],[5,11,1,"","staticMetaObject"],[5,10,1,"","tree_item_changed"]],"dna_viewer.ui.widgets":[[5,9,1,"","FileChooser"],[5,9,1,"","QHLine"],[5,9,1,"","QLine"]],"dna_viewer.ui.widgets.FileChooser":[[5,10,1,"","get_file_path"],[5,10,1,"","open_dialog"],[5,11,1,"","staticMetaObject"]],"dna_viewer.ui.widgets.QHLine":[[5,11,1,"","staticMetaObject"]],"dna_viewer.ui.widgets.QLine":[[5,11,1,"","staticMetaObject"]]},objnames:{"0":["cpp","class","C++ class"],"1":["cpp","function","C++ function"],"10":["py","method","Python method"],"11":["py","attribute","Python attribute"],"12":["py","function","Python function"],"2":["cpp","functionParam","C++ function parameter"],"3":["cpp","member","C++ member"],"4":["cpp","type","C++ type"],"5":["cpp","templateParam","C++ template parameter"],"6":["cpp","enum","C++ enum"],"7":["cpp","enumerator","C++ enumerator"],"8":["py","module","Python module"],"9":["py","class","Python class"]},objtypes:{"0":"cpp:class","1":"cpp:function","10":"py:method","11":"py:attribute","12":"py:function","2":"cpp:functionParam","3":"cpp:member","4":"cpp:type","5":"cpp:templateParam","6":"cpp:enum","7":"cpp:enumerator","8":"py:module","9":"py:class"},terms:{"0":[0,2,4,6,12,14,16,17],"0003f":12,"0f":14,"1":[0,2,4,6,12,14],"10":2,"12":0,"14":14,"2":[0,3,4,12,14,16,17],"200":0,"201":0,"202":0,"2022":[14,16,17,20],"2023":[14,16,17,20],"2d":0,"3":[0,4,12,14,16,17],"3101":12,"3102":12,"3103":12,"3104":12,"3201":12,"3s":0,"3u":12,"4":[0,4,12,14,16,17],"5":[0,4,12],"6":[0,12,20],"64":[14,16,17],"7":[14,16,17],"9":[0,14,16,17],"abstract":[0,12],"byte":12,"case":[0,6,16,17],"char":[0,12],"class":[0,2,3,4,5,6,7,10,12],"const":[0,12],"default":[0,3,6,7,12],"do":12,"enum":[0,2,4,12],"export":[10,16,17],"float":[0,2,3,4,12],"function":[0,3,9,10,12,14,16,17],"import":[2,3,7,8,16,17],"int":[0,2,3,4,5],"long":6,"new":[3,12,13,14,16,17,20],"null":0,"public":[0,12],"return":[0,2,3,4,5,6,8,16,17],"static":[0,3,5,12],"super":12,"switch":[16,17],"throw":5,"true":[2,6,7],"try":15,"void":[0,12],"while":[0,14],A:[0,2,3,4,5,6,7,12,13],And:14,As:0,By:12,For:[13,14,16,17],If:[0,2,4,8,9,12,14,15,16,17],In:[6,8,15,16,17,20],It:[0,6,10,14],The:[0,2,3,4,5,6,7,8,10,12,13,16,17,20],There:[9,10,14],These:[0,6,7,14,16,17],To:[13,14,16,17,20],Will:4,With:[16,17],__file__:[6,7,8,16,17],_blendshap:2,_lodx_mesh:12,_py3dna:20,aas_method:[2,7],aas_paramet:2,aas_path:[2,7],abl:[8,15],about:[0,3,4,6,16,17],abov:[0,6,7],absolut:[0,6,7,8,12,16,17],abspath:[6,7,8,16,17],access:[0,4,10],accessmod:14,accessmode_read:[16,17],accessor:0,accommod:[16,17,20],accord:2,activate_window:5,actual:0,ad:[2,3,5,6,7,8,10,12,16,17,20],ada:[6,7,16,17,20],add:[0,2,3,5,8,12,16,17],add_analog_gui:2,add_animated_map:4,add_animated_map_attribut:2,add_animated_map_attributes_on_root_joint:[2,5,6],add_animated_maps_conditional_t:4,add_attribut:2,add_basic_data:4,add_blend_shap:[2,3,4,5,6],add_blend_shape_channel:4,add_control:4,add_ctrl_attribut:2,add_ctrl_attributes_on_root_joint:[2,5,6,7],add_db_data:4,add_ey:2,add_eye_loc:2,add_face_vertex_layout:4,add_geometry_data:4,add_gui:2,add_gui_to_raw:4,add_joint:[2,4,5,6],add_joint_group:4,add_joint_to_scen:2,add_key_fram:[2,5,7],add_layout:4,add_mesh:4,add_mesh_blend_shap:4,add_mesh_blend_shape_channel_map:4,add_mesh_name_to_blend_shape_channel_nam:[2,3,5],add_mesh_skin_weight:4,add_mesh_to_display_lay:2,add_mesh_topolog:4,add_metadata:4,add_neutral_joint:4,add_posit:4,add_psd:4,add_rig_log:[2,5],add_skin_clust:[2,3,5,6],add_texture_coordin:[3,4],addindic:[0,12],addit:[0,2,5,7,16,17],addition:[2,20],additional_assemble_script:[7,16,17,20],address:[0,16,17],advanc:0,affect:0,after:[2,5],ag:[0,4,12],again:15,against:[16,17],aim:2,align:2,aligneddynarrai:12,all:[0,2,3,4,5,6,8,9,10,12,13,14,15,16,17,20],alloc:0,allow:[9,10,16,17],allowedanimatedmapindic:[0,12],allowedblendshapeindic:[0,12],allowedjointindic:[0,12],allowedmeshindic:[0,12],along:14,alpha:12,alreadi:2,also:[9,14,20],an:[0,2,3,4,5,6,8,12,14,16,17],analog:[2,5,7],analog_gui:[7,20],analog_gui_path:[2,7],angl:[2,12],angleunit:2,ani:[0,2,8,16,17],anim:[0,2,4,5,6,12,13,16,17],animated_map:4,animated_map_attribute_multipliers_nam:2,animated_map_attributes_on_root_joint_cb:5,animated_map_nam:2,animatedmap:12,animatedmapcount:[0,12],animatedmapfilt:[0,12],animatedmapindex:12,animatedmapindex_:12,animatedmapindic:[0,12],animatedmapindices_:12,animatedmaplodindic:12,animatedmapnam:12,animatedmapsconditionalt:4,animatedmapsmark:12,animatedmapsmarkertarget:12,animationonli:[0,12],anymor:9,api:[0,7,8,10,16,17],app:[1,11,18],append:[8,16,17],appli:[0,2,9,12],applyto:[0,12],ar:[0,2,3,4,5,6,7,10,12,13,14,15,16,17,20],archetyp:[0,4,12],architectur:[14,16,17],archiv:[0,12],archiveoffset:12,arg:0,argument:[0,2,13],around:[12,13],arrai:[0,12],arrayview:[0,12],artifici:0,assembl:[2,5,7,16,17,20],asset:2,assign:[0,2,12],associ:0,associatelodwithindic:[0,12],assum:12,attach:2,attach_mesh_to_lod:2,attribut:[0,2,3,4,5,6,7,12,13,15],attrnam:2,auto:14,autodesk:20,automat:9,avail:[0,12,13,20],avoid:2,axi:2,b:[0,12],bar:5,barycentricpositionindicespair:12,base:[0,2,3,4,5,12],basearch:0,baseimpl:[0,12],basic:20,bbox:12,becom:0,been:[6,20],befor:[6,7,15,16,17],begin:[8,12],behavior:[1,11,12,18],behaviorread:0,behaviorwrit:0,being:[0,2,4],belong:0,below:[8,14],better:[16,17,20],between:0,bifrost:[16,17],binari:[4,14,16,17,20],binarystreamread:[0,4,14,16,17],binarystreamwrit:[0,14],bind:14,bit:[14,16,17],blend:[0,2,3,4,5,12,13,14,16,17],blend_shap:4,blend_shape_channel:[3,4],blend_shape_group_prefix:[2,3],blend_shape_nam:2,blend_shape_name_postfix:[2,3],blend_shape_target_index:[3,4],blend_shapes_cb:5,blendshap:[4,6,12,14,16,17],blendshapechannel:12,blendshapechannelextentread:0,blendshapechannelindex:[0,12],blendshapechannelindic:[0,12],blendshapechannelnam:12,blendshapechannelsmark:12,blendshapechannelsmarkertarget:12,blendshapecount:[0,12],blendshapefilt:[0,12],blendshapegroup_:2,blendshapeindex:12,blendshapeindex_:12,blendshapeindic:12,blendshapeindices_:12,blendshapelod:12,blendshapesdata:4,blendshapetarget:12,blendshapetargetindex:[0,12],blendshapetargetindex_:12,blue:10,bodi:[5,16,17],bool:[0,2,3,4,5,6,7,12],both:[0,14,16,17],bound:0,boundediostream:0,boundingbox:12,box:[5,15],bridg:[16,17],brown:10,bsdelta:12,bsvertexindic:12,build:[0,2,3,5,10],build_mesh:[2,10],build_meshes_by_lod:2,build_rig:10,builder:[1,10,11,18],buildresult:2,built:[2,20],bundl:[15,16,17],button:5,button_text:5,c:[0,12,13,16,17,20],c_str:0,cach:[0,12],calcul:[0,12],calculatemeshlowerlodscommand:[12,13],calibr:[14,20],calibration_clean:0,call:[0,2,5,7,12],callabl:5,can:[0,2,4,5,6,9,10,13,14,15,16,17],cannot:[0,15],caption:5,caus:0,cd:14,central:2,central_aim:2,central_driver_nam:2,chain:14,chang:[3,5,10,12,14,16,17,20],channel:[0,2,3,4,5,12],charact:[0,2,4,5,7,16,17],character_dna:[16,17],check:[5,12,14,16,17],check_box:5,checkbox:5,checkstat:5,child:0,chooser:5,chosen:5,clampto:[0,12],cleanupindic:[0,12],clear:[12,13,14,16,17],clearanimatedmapindic:[0,12],clearanimatedmapnam:[0,12],clearblendshapechannelindic:[0,12],clearblendshapechannelnam:[0,12],clearblendshapescommand:[12,13],clearblendshapetarget:[0,12],clearfacevertexlayoutindic:[0,12],clearguicontrolnam:[0,12],clearindic:[0,12],clearjointgroup:[0,12],clearjointindic:[0,12],clearjointnam:[0,12],clearlodanimatedmapmap:[0,12],clearlodblendshapechannelmap:[0,12],clearlodjointmap:[0,12],clearlodmeshmap:[0,12],clearmesh:[0,12],clearmeshblendshapechannelmap:[0,12],clearmeshindic:[0,12],clearmeshnam:[0,12],clearmetadata:[0,12],clearrawcontrolnam:[0,12],clearskinweight:[0,12],click:[5,9,15,16,17],clone:15,cluster:[2,3,6],cm:2,cmake:14,cmakemodulesextra:14,cmd:14,code:[8,14,16,17,20],colcount:12,collabor:[0,12],collect:0,column:[0,4,12],columncount:[0,12],columnindic:[0,12],combin:[0,6],command:[2,12,14,16,17],command_:12,commandimplbas:12,commandsequ:[12,13],commandtyp:12,common:14,compil:[8,16,17],complex:[0,12],compon:20,comput:0,computeblendshapetargetdelta:12,computevertexposit:12,concern:3,condit:[0,12],condition_:12,conditional_t:4,conditionalcommand:12,conditionalt:4,conditiontyp:12,config:[1,3,7,10,11,12,18],configur:[0,2,3,5,6,7,10,12,13,16,17],connect:[5,16,17,20],consecut:0,constarrayview:[0,12,14],constexpr:12,constraint:4,constructor:13,contain:[0,2,3,4,5,6,10,12,13,14,15,16,17,20],context:0,contin:2,control:[0,2,4,5,6,12,20],control_nam:2,controlsmark:12,controlsmarkertarget:12,conveni:0,coordin:[0,3,4,12],coordinate_system:4,coordinatesystem:[0,12],copi:[0,20],correctli:15,correspond:[5,12],count:[0,4,5,12],creat:[2,3,4,5,9,10,12,14,16,17,20],create_aas_selector:5,create_analog_gui_selector:5,create_blend_shap:3,create_blend_shape_nod:3,create_bodi:5,create_build_opt:5,create_character_nod:2,create_checkbox:5,create_display_lay:2,create_dna_choos:5,create_dna_selector:5,create_extra_build_opt:5,create_file_choos:5,create_group:2,create_gui_selector:5,create_head:5,create_help_btn:5,create_load_dna_button:5,create_main_widget:5,create_mesh_object:3,create_mesh_selector:5,create_mesh_tre:5,create_neutral_mesh:[2,3],create_process_btn:5,create_progress_bar:5,create_read:4,create_ui:5,createembeddednoderl4:2,creation:[3,5],creator:[16,17],critic:0,ctrl_attributes_on_root_joint_cb:5,ctrl_c_ey:2,current:[12,13],curv:6,custom:[5,16,17],cut:4,cut_valu:4,cutvalu:[0,12],d00:12,d01:12,d11:12,d:[0,12],dag:[3,15],dag_modifi:3,data:[0,2,3,4,6,7,12,13,14,16,17],data_dir:[16,17],databas:0,datalay:[0,12],datalayer_al:[16,17],datalayerbitmask:0,dataorempti:0,db:4,db_complex:4,db_max_lod:4,db_name:4,dbname:12,decid:0,def:[16,17],default_lambert_shad:2,defaultalpha:12,defin:0,definit:[0,1,5,11,12,16,17,18,20],definitionmodel:4,definitionread:0,definitionwrit:0,deform:[4,20],degre:[2,12],degrees_:12,delet:[0,12],deletejointgroup:[0,12],deletemesh:[0,12],delta:[0,3,4,12,13,16,17],delta_index:4,deltaindex:[0,12],deltas_:12,deltasmaskscountmismatch:12,deltasvertexindicescountmismatch:12,demo:[16,17],denom:12,denormalizeddata:[0,12],denot:0,densifi:12,depend:[0,8,14],deriv:3,derived_mesh_nam:3,describ:0,descript:13,descriptor:[1,11,12,18],descriptormodel:4,descriptorread:0,descriptorwrit:0,deselect:[5,15],deselect_al:5,dest:[0,12],destin:12,destroi:12,detail:[0,12,13],determin:2,dhi:[16,17],diagram:[0,12],dialog:5,dialog_capt:5,dialog_filt:5,dict:[2,4],differ:[0,14,16,17],dir:[16,17],dir_selector:5,directori:[0,14,16,17],dirnam:[6,7,8,16,17],disabl:6,discardlod:[0,12],displai:2,distinct:[0,16,17],dna:[2,3,4,5,6,7,10,12,14,20],dna_:[16,17],dna_ada:[6,7,8],dna_fac:4,dna_fil:[6,7,16,17],dna_input:5,dna_path:[4,8],dna_path_ada:[6,7,8],dna_path_taro:[6,8],dna_taro:8,dna_vertex_layout_posit:[3,4],dna_vertex_posit:3,dna_view:[1,6,7,8,10,11,18,20],dna_viewer_:[16,17],dnac:[0,12,14],dnacalib:[0,13],dnacalib_:[16,17],dnacalibdnaread:[0,12,13,14],dnacalibdnareaderimpl:12,dnacapi:12,dnalib:[1,2,3,10,11,18],dnaread:14,dnaview:18,dnaviewerwindow:5,doc:[0,20],document:[13,16,17,20],doe:12,done:[8,12,13],download:[15,16,17],doxygen:0,doxygenclass:0,drive:0,driver:2,dure:[0,9,20],dynarrai:[0,12],e:[0,12,14,16,17],each:[0,4,12,13],easi:7,easier:[16,17],easili:10,edit:14,editor:15,either:12,element:[0,3,5,6],elif:[8,16,17],els:[8,16,17],embed:[16,17],embeddedrl4:20,empti:0,enabl:[5,9],enable_additional_build_opt:5,enable_if:[0,12],end:12,endian:0,engin:6,enough:12,entir:0,entri:[0,5],enumer:[0,4,12],environ:[6,7],eof:12,equal:[12,13],error:[14,16,17],es:12,etc:10,evalu:0,everi:[6,10],exact:[10,14],exampl:[0,8],except:[16,17],execut:[6,7,14],exist:[0,14,16,17],expect:[0,9,12],expectedvalu:12,experi:[15,16,17],explain:10,explan:[8,16,17],explicit:[0,12],express:[0,16,17,20],extendablebinaryinputarch:0,extra:5,extract:[14,16,17],ey:2,eye_gui_nam:2,f:[0,6,7,8,16,17],face:[0,4,12],face_index:4,facecount:12,facegett:12,faceindex:[0,12],facial:2,facial_c_facialroot:[2,16,17],facial_l_ey:2,facial_r_ey:2,facial_root_joint_nam:2,factor:[12,13],factori:[2,3,4],fals:[2,5,6],familiar:[16,17],faq:[16,17],fbx:[10,16,17],featur:6,few:[14,16,17],field:5,file:[0,2,4,5,6,7,8,10,14,20],file_joint_map:3,filechoos:5,filedialog:5,filestream:[14,16,17],fill:[3,5],fill_mesh_list:5,filter:[0,2,5,12,13],filteredinputarch:0,filterindic:[0,12],find:[0,2],findindicesofmeshlowerlod:12,fine:[16,17],finish:2,first:[0,20],flag:[2,3,5,6,7],flatten:2,flow:10,fn_mesh:3,folder:[15,16,17],follow:[0,6,8,9,10,12,13,14,15,16,17],foper:12,format:[14,16,17],forward:[16,17],found:[0,13,14,16,17],fr:8,frame:[2,5],friend:0,frm_wmmultipli:2,from:[0,2,3,4,5,6,7,8,12,13,14,15,16,17],from_valu:4,fromvalu:[0,12],full:2,furthermor:20,futur:4,fvec2:12,fvec3:12,fweightgett:12,g:[0,12,14,16,17],game:[16,17],gender:[0,4,12],gener:[9,10,12,14,16,17],generation_:12,geometri:[0,1,2,11,12,18],geometry_group:2,geometryent:4,geometryread:0,geometrywrit:0,get:[0,2,3,4,5,9,10,12,14,16,17,20],get_all_mesh:2,get_all_meshes_grouped_by_lod:4,get_all_skin_weights_joint_indices_for_mesh:4,get_all_skin_weights_values_for_mesh:4,get_angle_unit:2,get_angle_unit_from_int:2,get_animated_map_count:4,get_animated_map_cut_valu:4,get_animated_map_from_valu:4,get_animated_map_indices_for_lod:4,get_animated_map_input_indic:4,get_animated_map_lod:4,get_animated_map_nam:4,get_animated_map_output_indic:4,get_animated_map_slope_valu:4,get_animated_map_to_valu:4,get_blend_shap:4,get_blend_shape_channel_count:4,get_blend_shape_channel_index:4,get_blend_shape_channel_indices_for_lod:4,get_blend_shape_channel_input_indic:4,get_blend_shape_channel_lod:4,get_blend_shape_channel_nam:4,get_blend_shape_channel_output_indic:4,get_blend_shape_target_count:4,get_blend_shape_target_delta:4,get_blend_shape_target_delta_count:4,get_blend_shape_target_deltas_with_vertex_id:4,get_blend_shape_target_vertex_indic:4,get_display_lay:2,get_el:3,get_fac:4,get_face_count:4,get_face_vertex_layout_indic:4,get_file_joint_map:3,get_file_path:5,get_filtered_mesh:2,get_geometry_group:2,get_gui_control_count:4,get_gui_control_nam:4,get_gui_to_raw_cut_valu:4,get_gui_to_raw_from_valu:4,get_gui_to_raw_input_indic:4,get_gui_to_raw_output_indic:4,get_gui_to_raw_to_valu:4,get_joint_column_count:4,get_joint_count:4,get_joint_group_count:4,get_joint_group_input_indic:4,get_joint_group_joint_indic:4,get_joint_group_log:4,get_joint_group_output_indic:4,get_joint_group_valu:4,get_joint_indices_for_lod:4,get_joint_nam:4,get_joint_parent_index:4,get_joint_row_count:4,get_joint_variable_attribute_indic:4,get_layouts_for_mesh_index:4,get_linear_unit:2,get_linear_unit_from_int:2,get_lod_count:4,get_lod_indices_nam:5,get_lowest_lod_containing_mesh:4,get_maximum_influence_per_vertex:4,get_mesh_blend_shape_channel_map:4,get_mesh_blend_shape_channel_mapping_count:4,get_mesh_blend_shape_channel_mapping_for_lod:4,get_mesh_count:4,get_mesh_id_from_mesh_nam:4,get_mesh_indices_filt:2,get_mesh_indices_for_lod:4,get_mesh_nam:[4,5],get_mesh_node_fullpath_on_root:2,get_meshes_by_lod:4,get_neutral_joint_rot:4,get_neutral_joint_rotation_i:4,get_neutral_joint_rotation_x:4,get_neutral_joint_rotation_z:4,get_neutral_joint_transl:4,get_neutral_joint_translation_i:4,get_neutral_joint_translation_x:4,get_neutral_joint_translation_z:4,get_polygon_faces_and_connect:4,get_psd_column_indic:4,get_psd_count:4,get_psd_row_indic:4,get_psd_valu:4,get_raw_control_count:4,get_raw_control_nam:4,get_rig_group:2,get_rotation_unit:4,get_selected_mesh:5,get_skin_cluster_influ:3,get_skin_weight_matrix_for_mesh:4,get_skin_weights_data:3,get_skin_weights_for_mesh_nam:3,get_skin_weights_from_scen:3,get_skin_weights_joint_indic:4,get_skin_weights_valu:4,get_texture_coordinate_index:4,get_texture_data:3,get_top_level_group:2,get_transform:3,get_transl:3,get_translation_unit:4,get_vertex_layout:4,get_vertex_layout_count:4,get_vertex_layout_positions_for_mesh_index:4,get_vertex_posit:4,get_vertex_position_count:4,get_vertex_positions_for_mesh_index:4,get_vertex_positions_from_dna_vertex_posit:3,get_vertex_texture_coordin:4,get_vertex_texture_coordinate_count:4,get_vertex_texture_coordinates_for_mesh:4,getag:[0,12],getanimatedmapcount:[0,12],getanimatedmapcutvalu:[0,12],getanimatedmapfromvalu:[0,12],getanimatedmapindexlistcount:[0,12],getanimatedmapindicesforlod:[0,12],getanimatedmapinputindic:[0,12],getanimatedmaplod:[0,12],getanimatedmapnam:[0,12],getanimatedmapoutputindic:[0,12],getanimatedmapslopevalu:[0,12],getanimatedmaptovalu:[0,12],getarchetyp:[0,12],getbarycentr:12,getbarycentriccoord:12,getblendshapechannelcount:[0,12],getblendshapechannelindex:[0,12],getblendshapechannelindexlistcount:[0,12],getblendshapechannelindicesforlod:[0,12],getblendshapechannelinputindic:[0,12],getblendshapechannellod:[0,12],getblendshapechannelnam:[0,12],getblendshapechanneloutputindic:[0,12],getblendshapetargetcount:[0,12],getblendshapetargetdelta:[0,12],getblendshapetargetdeltacount:[0,12],getblendshapetargetdeltai:[0,12],getblendshapetargetdeltax:[0,12],getblendshapetargetdeltaz:[0,12],getblendshapetargetvertexindic:[0,12],getboundingbox:12,getcombineddistinctindic:[0,12],getcoordinatesystem:[0,12],getdbcomplex:[0,12],getdbmaxlod:[0,12],getdbnam:[0,12,16,17],getfacecount:[0,12],getfacevertexlayoutindic:[0,12],getgend:[0,12],getguicontrolcount:[0,12],getguicontrolnam:[0,12],getguitorawcutvalu:[0,12],getguitorawfromvalu:[0,12],getguitorawinputindic:[0,12],getguitorawoutputindic:[0,12],getguitorawslopevalu:[0,12],getguitorawtovalu:[0,12],getindexlistcount:[0,12],getindic:[0,12],getjointcolumncount:[0,12],getjointcount:[0,12,14],getjointgroupcount:[0,12],getjointgroupinputindic:[0,12],getjointgroupjointindic:[0,12],getjointgrouplod:[0,12],getjointgroupoutputindic:[0,12],getjointgroupvalu:[0,12],getjointindexlistcount:[0,12],getjointindicesforlod:[0,12],getjointnam:[0,12],getjointparentindex:[0,12],getjointrowcount:[0,12],getjointvariableattributeindic:[0,12],getlodcount:[0,12],getmax:12,getmaximuminfluencepervertex:[0,12],getmaxlod:[0,12],getmemoryresourc:[0,12],getmeshblendshapechannelmap:[0,12],getmeshblendshapechannelmappingcount:[0,12],getmeshblendshapechannelmappingindicesforlod:[0,12],getmeshcount:[0,12],getmeshindexlistcount:[0,12],getmeshindicesforlod:[0,12],getmeshnam:[0,12],getmetadatacount:[0,12],getmetadatakei:[0,12],getmetadatavalu:[0,12],getmin:12,getminlod:[0,12],getnam:[0,12],getnamebyindex:12,getnamecount:12,getneutraljointrot:[0,12],getneutraljointrotationi:[0,12],getneutraljointrotationx:[0,12],getneutraljointrotationz:[0,12],getneutraljointtransl:[0,12],getneutraljointtranslationi:[0,12],getneutraljointtranslationx:[0,12],getneutraljointtranslationz:[0,12],getpsdcolumnindic:[0,12],getpsdcount:[0,12],getpsdrowindic:[0,12],getpsdvalu:[0,12],getrawcontrolcount:[0,12],getrawcontrolnam:[0,12],getrotationtransformationmatrix:12,getrotationunit:[0,12],getskinweightscount:[0,12],getskinweightsjointindic:[0,12],getskinweightsvalu:[0,12],getter:0,getterfunc:12,gettranslationunit:[0,12],gettriangl:12,getvertexlayout:[0,12],getvertexlayoutcount:[0,12],getvertexlayoutnormalindic:[0,12],getvertexlayoutpositionindic:[0,12],getvertexlayouttexturecoordinateindic:[0,12],getvertexnorm:[0,12],getvertexnormalcount:[0,12],getvertexnormali:[0,12],getvertexnormalx:[0,12],getvertexnormalz:[0,12],getvertexposit:[0,12],getvertexpositioncount:[0,12],getvertexpositioni:[0,12],getvertexpositionx:[0,12],getvertexpositionz:[0,12],getvertextexturecoordin:[0,12],getvertextexturecoordinatecount:[0,12],getvertextexturecoordinateu:[0,12],getvertextexturecoordinatev:[0,12],getweight:12,gget_gui_to_raw_slope_valu:4,git:[15,16,17],github:[16,17],given:[0,2,3,5,6,7,12,13],go:[2,4,8,15],got:[0,6,12],gradient:0,greater:0,greatest:4,green:10,group:[0,2,3,4,5,16,17],group_by_lod:2,group_nam:2,grp_c_eyesaim:2,grp_l_eyeaim:2,grp_r_eyeaim:2,gui:[0,2,4,5,7,16,17,20],gui_control_nam:4,gui_path:[2,7],gui_to_raw:4,gui_translate_x:2,guicontrolnam:12,guid:[16,17],h:0,ha:[0,12,16,17,20],handl:14,happen:12,has_blend_shap:4,hasimpacton:[0,12],have:[0,2,6,12,16,17,20],head:[2,6,16,17],header:5,help:[5,16,17],here:[0,8,10,14,16,17,20],hierarchi:[0,2],highest:[0,12],hint:5,hold:[0,2,3,4,12],holder:2,home:[16,17],horizont:5,how:[16,17],howev:[16,17],hu:0,human:[14,16,17],i:0,id:[0,2],ideal:20,ident:[16,17],identifi:4,ie:4,impl:12,implement:[0,12,13],implementor:0,implicitli:0,import_gui:2,import_skin_weight:3,improv:20,includ:[13,15],increas:[16,17,20],independ:20,index:[0,2,3,4,12,13,16,17],index_:12,indic:[0,2,3,4,5,12],indices_nam:5,individu:0,infer:0,influenc:[0,3,12],inform:[6,16,17],inherit:[0,12],initi:[0,3,12,16,17],inlin:[0,12],inoutstream:14,input:[0,4,5,6,12],inputindic:[0,12],insert:[16,17],inspect:[16,17],instal:[15,16,17,20],instanc:[0,3,4,5,12,14],instead:8,integr:[16,17],intercept:0,interchang:0,interfac:[0,3,14],intern:[0,2,16,17],interpol:12,interpret:[16,17],introduc:[16,17,20],invalid:0,invaliddataerror:0,involv:0,is_check:5,is_enabled_and_check:5,is_read:4,is_rvalue_refer:0,is_sam:12,isok:[14,16,17],issu:15,item:[0,5],iter:12,iterate_over_item:5,iterator_trait:12,its:[0,2,5,12,13,14,16,17],itself:0,join:8,joint:[0,1,3,4,5,6,7,11,12,13,14,16,17,18,20],joint_column_count:4,joint_flag:2,joint_group:4,joint_group_index:4,joint_id:[2,3],joint_nam:[2,3],joint_row_count:4,joint_variable_attribute_indic:4,jointcount:[0,12],jointfilt:[0,12],jointgroup:[4,12],jointgroupindex:[0,12],jointhierarchi:12,jointindex:12,jointindex_:12,jointindic:[0,12],jointindices_:12,jointmodel:2,jointnam:12,joints_cb:5,jointsmark:12,jointsmarkertarget:12,jointvariableattributeindic:12,jsonstreamread:0,jsonstreamwrit:0,just:[0,2,6,7,16,17],keep:12,kei:[0,2,5,12],key_frames_cb:5,keyfram:7,known:0,label:5,label_text:5,larg:[16,17],last:12,layer:[0,1,2,8,11,12,18],layer_:0,layer_en:4,layerbitmask:0,layout:[0,3,4,5,12],layout_id:4,layout_index:4,layoutindex:[0,12],layoutindic:[0,12],ld_library_path:[16,17],le_aim:2,lead:6,least:14,left:2,left_eye_aim_up_nam:2,left_eye_driver_nam:2,left_eye_joint_nam:2,legend:10,length:3,less:[0,12],level:[0,2,12],lf:[15,16,17],lib:[8,14,16,17],lib_dir:[8,16,17],libdnacalib:20,libembeddedrl4:20,librari:[14,16,17,20],licenc:[16,17],like:20,limit:0,line:[5,14,16,17],linear:2,linearunit:2,link:20,linux:[8,14,16,17],list:[0,2,3,4,5,8,13],ln:20,load:[0,2,4,5,9,12,16,17],load_css:5,load_dna_btn:5,load_dna_read:[16,17],loc_c_eyedriv:2,loc_l_eyeaimup:2,loc_l_eyedriv:2,loc_r_eyeaimup:2,loc_r_eyedriv:2,local:0,locat:[2,8,9,16,17],lod:[0,2,4,5,6,10,12,13,14,16,17],lod_count:[4,5],lod_filt:[2,6],lod_indic:4,lodanimatedmapmap:12,lodblendshapemap:12,lodconstraint:[0,12],lodcount:[0,12],lodindic:12,lodjointmap:12,lodmap:[0,12],lodmeshmap:12,lods_:[0,12],logic:[2,5,6],long_nam:2,look:20,lower:[0,12,13],lowest:[0,12],m:2,ma:[7,16,17],magnitud:12,mai:0,main:[5,15],main_widget:5,main_window:5,make:[16,17],makescop:14,manipul:[3,20],manner:9,manual:[15,16,17],map:[0,2,3,4,5,6,12,13,16,17],mapindic:[0,12],mapper:[0,12],marker:12,markertarget:12,mash:2,mask:12,masks_:12,mat4:12,match:[0,12],matrix:[0,4,12],max:12,maximum:0,maximuminfluencepervertex:12,maxinfluencecount:[0,12],maxlod:[0,12],maxlod_:0,maxremappedindex:[0,12],maya2022:[16,17,20],maya2023:[16,17],maya:[1,2,6,7,8,11,14,16,17,18,20],maya_main_window:5,maya_module_path:[16,17],maya_plug_in_path:8,maya_vers:[16,17],mayamesh:[2,3],mayapi:[16,17],mayaskinweight:3,mayauerbfplugin:20,mayawindow:5,mb:15,mdagmodifi:3,mdagpath:3,mean:[0,12],mechan:6,mel:15,member:[0,12],memori:0,memoryresourc:[0,12],memr:[0,12],memres_:[0,12],mention:8,menu:15,mese:5,mesh:[0,1,4,5,7,10,11,12,13,14,16,17,18],mesh_blend_shape_channel_map:4,mesh_blend_shape_channel_mapping_indices_for_lod:4,mesh_filt:[2,6],mesh_index:[2,3,4],mesh_indic:4,mesh_nam:[2,3,4,6],mesh_name_to_blend_shape_channel_name_cb:5,mesh_nod:3,mesh_object:3,mesh_tre:5,mesh_tree_list:5,meshblendshapechannelmap:[0,4,12],meshblendshapemappingindic:12,meshcount:[0,12],meshes_per_lod:2,meshfilt:[0,12],meshindex:[0,12],meshindex_:12,meshindic:[0,12],meshindices_:12,meshnam:12,meshtreelist:5,messag:[9,16,17],met:12,metadata:[0,4,12],metahuman:[0,14,20],metahumancr:[16,17],method:[2,3,5,6,7,12,13],mfndagnod:3,mfnmesh:3,mfnskinclust:3,mfntransform:3,mh4:[16,17,20],mh:[16,17],mhc:[16,17,20],mi:12,might:0,min:12,minim:5,minlod:[0,12],minlod_:0,mirror:0,mismatch:0,mkdir:14,mll:20,mobject:[2,3],model:[2,3,4,10],modif:[13,14],modifi:[3,12,16,17],modul:[1,11,16,17,18],moduletyp:2,more:[0,13],mpoint:3,multipl:[0,2,12,14],multipli:12,must:[0,14,15,16,17,20],mutabl:[0,12],mvector:3,n:[4,12],name:[0,2,3,4,5,6,7,12,13,15,16,17],necessari:[16,17],neck:20,neck_01:[16,17],neck_02:[16,17],need:[0,2,3,4,5,6,7,8,10,15,16,17,20],network:0,neutral:[2,3,4,12,13,14,16,17],neutral_joint_rot:4,neutral_joint_transl:4,neutraljointrot:12,neutraljointtransl:12,new_scen:2,newblendshapelod:12,newnam:12,newname_:12,newvalu:12,next:5,nicer:10,no_of_influ:3,node:[2,3],non:9,none:[2,3,4,5],normal:[0,2,4,12],normalindex:[0,12],note:[4,8,20],notif:9,novertexindicesseterror:12,nullptr:[0,12],nullptr_t:0,number:[0,2,4,12,16,17,20],object:[2,3,4,5,6,7,8,15,20],objnam:2,occur:[13,14],off:0,offset:[0,12],oldindex:[0,12],oldnam:12,oldname_:12,om:3,on_chang:5,on_dna_chang:5,on_dna_select:5,on_generic_chang:5,on_help:5,on_joints_chang:5,on_load_dna_click:5,one:[14,16,17],onli:[0,12,13,15],onto:0,op:12,open:5,open_dialog:5,openmaya:3,openmayaanim:3,openmod:14,openmode_binari:[16,17],oper:[0,12],operation_:12,option:[0,2,4,5,6,8,9,10,12],option_:[0,12],order:[0,8,12,14,15,16,17,20],organ:[10,16,17],origin:[0,12,13],origin_:12,os:[8,16,17],oserror:[8,16,17],ospath:[6,7,8,16,17],other:[14,15],otherwis:2,our:20,out:[0,5,15],outlin:15,output:[0,4,12,13],outputindic:[0,12],over:0,overrid:[0,12],overwrit:[0,12,14],own:12,packag:[11,16,17,18],pair:[0,12],param:[2,3,4,5],paramet:[0,2,5,6,8,12,13],parent:[0,2,4,5,12],parent_index:4,part:[4,8,12,16,17],particular:0,pass:[0,2,4,6,8,12,13],passingindic:[0,12],path:[2,4,5,6,7,8,16,17,20],path_to:[16,17],pattern:2,per:[0,4,10,16,17],perform:[0,14],pimpl:12,placehold:5,plan:[16,17],platform:[8,14,16,17],pleas:[8,16,17],plugin:[2,9,20],point3:[3,4],point:[0,3,12],pointer:[0,12],polygon_connect:3,polygon_fac:3,pop:5,popul:12,populatejointvariableattributeindic:12,populatemeshblendshapemappingindic:12,pose:4,posit:[0,2,3,4,12,13,16,17],position_gui:2,positions_:12,positionsmaskscountmismatch:12,possibl:0,postfix:[2,3,12],potenti:4,pre:[16,17,20],prebuilt:14,prefix:[2,3,16,17],prepare_joint:2,prepare_joint_id:2,prepare_mesh:3,prerequisit:14,present:0,preset:20,previou:[12,13],previousvalu:12,print:[6,16,17],privat:[0,12],process:[0,2,3,5,6,7,10,14],process_btn:5,processsubset:0,produc:4,programmat:9,progress:5,progress_bar:5,project:[0,14,15,16,17],propag:[10,12,16,17],properli:12,protect:[0,12],provid:[0,2,3,4,5,6,7,12,14,16,17,20],proxi:12,prune:[12,13,16,17],pruneblendshapetarget:12,pruneblendshapetargetscommand:[12,13],psd:[0,4,12],psdcount:12,psdmatrix:4,purpl:10,purpos:6,put:2,py:[7,16,17,20],pydna:[14,20],pydnacalib:[14,20],pyside2:5,python3:[14,16,17,20],python3_exact_vers:14,python:[2,13,16,17,20],qcheckbox:5,qframe:5,qhboxlayout:5,qhline:5,qline:5,qmainwindow:5,qmetaobject:5,qprogressbar:5,qpushbutton:5,qt:5,qtcore:5,qtwidget:5,queri:0,question:12,quixel:[16,17],qvboxlayout:5,qwidget:5,radian:2,rais:[8,16,17],raw:[0,2,4],raw_control_nam:4,rawanimatedmap:[0,12],rawbehavior:[0,12],rawblendshapechannel:[0,12],rawblendshapetarget:12,rawconditionalt:12,rawcontrol:12,rawcontrolnam:12,rawcoordinatesystem:12,rawdefinit:[0,12],rawdescriptor:[0,12],rawfac:12,rawgeometri:[0,12],rawjoint:[0,12],rawjointgroup:12,rawlodmap:[0,12],rawmesh:[0,12],rawpsdmatrix:12,rawsurjectivemap:12,rawtexturecoordinatevector:12,rawvector3vector:12,rawvertexlayoutvector:12,rawvertexskinweight:[0,12],rbf:20,re_aim:2,read:[0,2,3,4,5,10,14,16,17],read_all_neutral_joint:4,read_target_delta:4,readabl:[14,16,17],reader:[0,4,10,12,14,16,17],readerimpl:[0,12],readwrit:14,recalcul:[12,13],recent:20,recompil:[16,17],reconstruct:0,refer:[16,17],referenc:0,rel:0,relat:[3,10],relationship:0,releas:[16,17,20],remap:[0,12],remappedindic:[0,12],remov:[12,14,16,17],remove_cv:12,removeanimatedmap:12,removeanimatedmapcommand:12,removeblendshap:12,removeblendshapecommand:12,removejoint:12,removejointanim:12,removejointanimationcommand:[12,13],removejointcommand:[12,13],removemesh:12,removemeshcommand:[12,13],renam:[3,12,14,16,17],rename_mesh:3,renameanimatedmapcommand:[12,13],renameblendshapecommand:[12,13],renamebyindex:12,renamejointcommand:[12,13],renamemeshcommand:[12,13],renameresourcecommand:12,replac:[6,7,8,16,17],repositori:[8,15,16,17],repres:[0,2,3,4,5,6,7,12],represent:2,request:0,requir:[14,20],reserv:12,reset:[0,12],resetindic:[0,12],resetlod:[0,12],resiz:[0,12],resourc:0,rest:[12,16,17],result:10,retriev:[0,3],rh:[0,12],rig:[0,2,5,6,9,10,15,16,17,20],rig_build:[1,11,18],rig_logic_cb:5,rig_logic_command:2,rig_logic_nam:2,rigbuild:2,rigconfig:2,right:2,right_eye_aim_up_nam:2,right_eye_driver_nam:2,right_eye_joint_nam:2,riglog:5,riglogic4:9,rl4:[15,20],rl4embedded_:15,root:[0,2,5,6,7,8,12],root_dir:[6,7,8,16,17],root_lib_dir:[8,16,17],rootjointindex:[0,12],rotat:[0,2,4,12,13,14,16,17],rotateblendshapetargetdelta:12,rotatecommand:[12,13],rotateneutraljoint:12,rotatevertexposit:12,rotation_unit:4,rotations_:12,rotationunit:[0,12],row:[0,4,12],rowcount:[0,12],rowindic:[0,12],rtype:[2,3,4,5],run:[2,6,7,8,12,13,14,16,17,20],run_additional_assemble_script:2,run_after_assembl:2,runtimeerror:[5,16,17],s:[0,6,12,16,17,20],same:[0,2,4,5,8,12],save:12,sc:[0,12],scale:[12,13,16,17],scale_:12,scaleblendshapetargetdelta:12,scalecommand:[12,13],scalegeometri:12,scalejointbehavior:12,scaleneutraljoint:12,scalevertexposit:12,scene:[2,3,5,6,7,9,10,16,17,20],scopedptr:12,scratch:[14,16,17],script:[2,5,7,14,16,17,20],search:15,searchandrenam:12,section:12,sectionlookupt:12,see:[0,15,16,17],select:[0,5,15],select_aas_path:5,select_al:5,select_analog_gui_path:5,select_dna_path:5,select_gui_path:5,selector:5,separ:[0,8],sequenc:[12,13],serial:12,set:[0,2,3,4,5,6,7,8,12,13,14,15,16,17],set_filtered_mesh:2,set_progress:5,set_riglogic_cb_en:5,set_siz:5,set_skin_weight:3,set_skin_weights_to_scen:3,set_transl:3,set_unit:2,setag:[0,12],setanimatedmapcutvalu:[0,12],setanimatedmapfromvalu:[0,12],setanimatedmapindex:12,setanimatedmapindic:[0,12],setanimatedmapinputindic:[0,12],setanimatedmaplod:[0,12],setanimatedmapnam:[0,12],setanimatedmapoutputindic:[0,12],setanimatedmapslopevalu:[0,12],setanimatedmaptovalu:[0,12],setarchetyp:[0,12],setblendshapechannelindex:[0,12],setblendshapechannelindic:[0,12],setblendshapechannelinputindic:[0,12],setblendshapechannellod:[0,12],setblendshapechannelnam:[0,12],setblendshapechanneloutputindic:[0,12],setblendshapeindex:12,setblendshapeindic:12,setblendshapenameindic:0,setblendshapetargetdelta:[0,12],setblendshapetargetdeltascommand:[12,13],setblendshapetargetindex:12,setblendshapetargetvertexindic:[0,12],setcommand:12,setcondit:12,setcoordinatesystem:[0,12],setdbcomplex:[0,12],setdbmaxlod:[0,12],setdbnam:[0,12],setdelta:12,setfacevertexlayoutindic:[0,12],setfrom:[0,14],setgend:[0,12],setguicontrolnam:[0,12],setguitorawcutvalu:[0,12],setguitorawfromvalu:[0,12],setguitorawinputindic:[0,12],setguitorawoutputindic:[0,12],setguitorawslopevalu:[0,12],setguitorawtovalu:[0,12],setjointcolumncount:[0,12],setjointgroupinputindic:[0,12],setjointgroupjointindic:[0,12],setjointgrouplod:[0,12],setjointgroupoutputindic:[0,12],setjointgroupvalu:[0,12],setjointhierarchi:[0,12],setjointindex:12,setjointindic:[0,12],setjointnam:[0,12],setjointrowcount:[0,12],setlod:12,setlodanimatedmapmap:[0,12],setlodblendshapechannelmap:[0,12],setlodblendshapemap:0,setlodcount:[0,12],setlodjointmap:[0,12],setlodmeshmap:[0,12],setlodscommand:[12,13],setmask:12,setmaximuminfluencepervertex:[0,12],setmeshblendshapechannelmap:[0,12],setmeshindex:12,setmeshindic:[0,12],setmeshnam:[0,12],setmetadata:[0,12],setnam:[0,12],setnamebyindex:12,setneutraljointrot:[0,12],setneutraljointrotationscommand:[12,13,14],setneutraljointtransl:[0,12],setneutraljointtranslationscommand:[12,13],setoper:12,setorigin:12,setposit:12,setpsdcolumnindic:[0,12],setpsdcount:[0,12],setpsdrowindic:[0,12],setpsdvalu:[0,12],setrawcontrolnam:[0,12],setrot:12,setrotationunit:[0,12],setscal:12,setskinweightscommand:12,setskinweightsjointindic:[0,12],setskinweightsvalu:[0,12],setter:[0,12,13],setthreshold:12,settransl:12,settranslationunit:[0,12],setup:[6,7,20],setup_window:5,setvalu:12,setvertexindex:12,setvertexindic:12,setvertexlayout:[0,12],setvertexnorm:[0,12],setvertexposit:[0,12],setvertexpositionscommand:[12,13],setvertextexturecoordin:[0,12],setweight:12,sever:[16,17,20],shape:[0,2,3,4,5,12,13,14,16,17],share:[16,17],ship:[16,17],should:[0,2,5,6,7,8,12,15,16,17],show:[5,9,20],show_message_dialog:5,show_window:5,showcas:[14,16,17],signatur:[0,12],signaturemismatcherror:0,signaturevaluetyp:12,simpl:[0,6,10,16,17],singl:[0,2,3,16,17],size:[0,5,12],size_:12,size_t:[0,12],size_typ:0,skin:[0,2,3,4,5,6,12],skin_cb:5,skin_clust:3,skin_cluster_suffix:[2,3],skin_weight:[1,11,18],skinclust:2,skinning_method:3,skinweight:12,skinweightsdata:4,skip:2,slash:[16,17],slice:0,slope:[0,4],slope_valu:4,slopevalu:[0,12],small:[14,16,17],so:[5,10,12,13,16,17,20],some:[6,7,12,14,15,16,17],sort:0,sourc:[0,2,3,4,5,12,14,20],source_py_fil:2,space:[3,4,12],sparsifi:12,specif:[0,13,14,16,17],specifi:[0,2,3,12,13,14],sphinx:0,spring:[16,17,20],spyu:14,src:0,standalon:[16,17],start:[2,4,5,6,12,14,15],start_read:4,state:5,staticmetaobject:5,statu:[12,14,16,17],statuscod:[0,12],statusprovid:12,std:[0,12,14],step:[2,15],still:15,storag:[0,16,17],store:[0,3,4,16,17],str:[2,3,4,5,7,8],stream:[0,4,16,17],stream_:0,streamread:0,streamreaderimpl:0,streamwrit:0,streamwriterimpl:0,string:[0,2,3,12],stringpair:12,stringview:[0,12],struct:12,structur:0,subclass:[0,12],submodul:[1,11,18],subpackag:[11,18],subsequ:14,substr:2,subtract:[12,14,16,17],sudo:20,sum:0,support:[8,16,17],sure:[16,17],surjectivemap:12,swig:14,sy:[8,16,17],symbol:20,syspath:[8,16,17],system:[0,4,12,16,17],t:12,tabl:0,taken:0,target:[0,4,12,13],taro:[6,20],tcommand:12,tcondit:12,tcontain:[0,12],tderiv:12,tdm:12,templat:[0,12],temporari:0,termin:0,ters:[0,12],test:[16,17],text:5,textur:[0,3,4,12],texture_coordinate_index:4,texturecoordin:[0,12],texturecoordinateindex:[0,12],texturecoordinateuvindic:12,tfrom:12,than:[0,12,13],thats:[2,5],thei:[0,2,6,12,16,17],them:[2,5,12],themselv:0,thi:[0,2,3,5,6,7,8,9,12,14,15,16,17,20],those:[15,16,17,20],three:[16,17],threshold:[12,13],threshold_:12,through:[0,13],throughout:14,time:[2,5],titer:12,to_valu:4,togeth:15,tool:[16,17],top:[16,17],top_level_group:2,topolog:4,tovalu:[0,12],transform:[2,3,12],translat:[0,2,3,4,12,13,16,17],translatecommand:[12,13],translateneutraljoint:12,translatevertexposit:12,translation_:12,translation_unit:4,translations_:12,translationunit:[0,12],travers:0,treaderbas:[0,12],tree:5,tree_item_chang:5,triangl:12,trianglepositionindicespair:12,trust:0,tto:12,tupl:[3,4,12],two:[10,16,17,20],twriterbas:[0,12],type:[0,2,3,4,5,12],typenam:[0,12],u:0,ue5:[16,17],ui:[1,9,10,11,16,17,18],uint16_max:0,uint16_t:[0,12],uint32_t:[0,12],uncompress:0,unconfigur:12,unconstrainedlod:[0,12],unconstrainedlodcount:0,under:[0,12,14],union:3,uniqu:0,unit:[0,2,4,12],unload:[0,12],unloadbehavior:12,unloaddefinit:12,unloadgeometri:12,unorderedmap:[0,12],unorderedset:[0,12],unqualified_iter_value_typ:12,unsupport:[16,17],unus:6,up:[0,5,8],updat:[16,17,20],upper:0,us:[0,2,3,4,5,6,7,8,9,10,12,14,16,17,20],usabl:0,usag:[0,2,20],user:[15,16,17],usr:20,util:[1,11,14,18],uv:[4,12],uvbarycentricmap:12,v0:12,v1:12,v:0,valu:[0,2,3,4,5,6,7,8,12,13,14,16,17],value_typ:12,variabl:[4,14,16,17],variou:[0,4],vector3:[0,12,14],vector:[0,12,14],vectoroper:12,version:[0,12,14,16,17],version_:12,versionmismatcherror:0,vertex:[0,3,4,12,13],vertex_index:4,vertexcount:12,vertexindex:[0,12],vertexindex_:12,vertexindic:[0,12],vertexindices_:12,vertexindicesoutofboundserror:12,vertexlayout:[0,12],vertexpositionindic:12,vertic:[0,3,5,12],vertices_info:3,view:0,virtual:[0,12],visual:20,vs:[3,12],wa:[2,3,4],wai:[10,12],want:[3,10,15,16,17],warn:[16,17],we:[2,3,4,16,17,20],weight:[0,3,4,12],weightgetterfactori:12,weights_:12,well:[16,17,20],were:[0,12],when:[2,3,5,8,12],where:[0,5,12,20],whether:[0,2,3],which:[0,2,6,9,10,12,13,16,17,20],whole:[4,8],whose:[12,15],widget:[1,11,18],win32:[8,16,17],window:[5,8,9,14,16,17,20],wish:4,within:[0,4,6],without:[6,12],work:[2,3,15,16,17],workspac:15,world:3,would:0,wrapper:[2,14,16,17,20],write:[0,14,16,17],writer:[0,12,14],writerimpl:[0,12],written:14,x:[0,2,12],xaxi:12,xml:0,xs:12,xs_:12,y:[0,12],yaxi:12,you:[6,7,8,9,10,14,15,16,17,20],your:[15,16,17],ys:12,ys_:12,z:[0,12],zaxi:12,zero:0,zs:12,zs_:12},titles:["DNA","DNAViewer package","DNAViewer.builder package","DNAViewer.builder.maya package","DNAViewer.dnalib package","DNAViewer.ui package","Mesh Utilities","Build rig (build_rig
)","Environment Setup","Usage in Maya","DNAViewer","DNAViewer","DNACalib","API overview","DNACalib","Frequently Asked Questions (FAQ)","MetaHuman DNA Calibration","MetaHuman DNA Calibration","dna_calibration","<no title>","Repository Organization"],titleterms:{"do":15,"function":13,"import":6,addit:13,api:13,app:5,ask:15,behavior:4,bind:13,blendshap:13,build:[6,7,8,14],build_mesh:6,build_rig:7,builder:[2,3],c:14,calcul:13,calibr:[16,17],certain:13,chang:[13,15],code:10,command:13,config:[2,6],creat:[6,7],data:20,definit:4,depend:[16,17],descriptor:4,distribut:15,dna:[0,8,13,15,16,17],dna_calibr:18,dna_view:[2,3,4,5],dnacalib:[12,14,16,17,20],dnalib:4,dnaview:[1,2,3,4,5,10,11,16,17,20],environ:[8,16,17],error:15,exampl:[6,7,10,14,16,17,20],expect:15,extern:[16,17],faq:15,file:[15,16,17],fix:15,folder:[10,14,20],frequent:15,from:10,gener:15,geometri:4,got:15,how:[10,15],i:15,indic:[16,17],instanc:[6,7],joint:2,knowledg:[16,17],layer:4,lib:20,licens:[16,17],linux:20,load:[8,15],locat:20,maya:[3,9,10,15],mesh:[2,3,6,8],metahuman:[16,17],mismatch:15,modifi:13,modul:[2,3,4,5],note:[16,17],open:15,option:[16,17],organ:20,overview:[13,16,17],packag:[1,2,3,4,5],part:13,path:15,perform:13,pose:13,provid:13,python:14,question:15,remov:13,renam:13,repositori:20,requir:[16,17],rig:[7,8],rig_build:2,rigconfig:7,runtimeerror:15,scene:15,setup:[8,16,17],share:15,signatur:15,skin_weight:3,softwar:[16,17],structur:[10,14,20],submodul:[2,3,4,5],subpackag:1,tabl:[16,17],transform:13,ui:5,us:13,usag:[9,10,14],util:[3,6],ver:15,widget:5,work:10}})
\ No newline at end of file