├── .gitignore ├── LICENSE ├── ModelCenter ├── CMakeLists.txt ├── README.md ├── ThirdParty │ └── assimp │ │ ├── bin │ │ ├── assimp-vc142-mt.dll │ │ ├── assimp-vc142-mtd.dll │ │ └── assimp.exe │ │ ├── include │ │ └── assimp │ │ │ ├── Base64.hpp │ │ │ ├── BaseImporter.h │ │ │ ├── Bitmap.h │ │ │ ├── BlobIOSystem.h │ │ │ ├── ByteSwapper.h │ │ │ ├── ColladaMetaData.h │ │ │ ├── Compiler │ │ │ ├── poppack1.h │ │ │ ├── pstdint.h │ │ │ └── pushpack1.h │ │ │ ├── CreateAnimMesh.h │ │ │ ├── DefaultIOStream.h │ │ │ ├── DefaultIOSystem.h │ │ │ ├── DefaultLogger.hpp │ │ │ ├── Exceptional.h │ │ │ ├── Exporter.hpp │ │ │ ├── GenericProperty.h │ │ │ ├── GltfMaterial.h │ │ │ ├── Hash.h │ │ │ ├── IOStream.hpp │ │ │ ├── IOStreamBuffer.h │ │ │ ├── IOSystem.hpp │ │ │ ├── Importer.hpp │ │ │ ├── LineSplitter.h │ │ │ ├── LogAux.h │ │ │ ├── LogStream.hpp │ │ │ ├── Logger.hpp │ │ │ ├── MathFunctions.h │ │ │ ├── MemoryIOWrapper.h │ │ │ ├── NullLogger.hpp │ │ │ ├── ObjMaterial.h │ │ │ ├── ParsingUtils.h │ │ │ ├── Profiler.h │ │ │ ├── ProgressHandler.hpp │ │ │ ├── RemoveComments.h │ │ │ ├── SGSpatialSort.h │ │ │ ├── SceneCombiner.h │ │ │ ├── SkeletonMeshBuilder.h │ │ │ ├── SmallVector.h │ │ │ ├── SmoothingGroups.h │ │ │ ├── SmoothingGroups.inl │ │ │ ├── SpatialSort.h │ │ │ ├── StandardShapes.h │ │ │ ├── StreamReader.h │ │ │ ├── StreamWriter.h │ │ │ ├── StringComparison.h │ │ │ ├── StringUtils.h │ │ │ ├── Subdivision.h │ │ │ ├── TinyFormatter.h │ │ │ ├── Vertex.h │ │ │ ├── XMLTools.h │ │ │ ├── XmlParser.h │ │ │ ├── ZipArchiveIOSystem.h │ │ │ ├── aabb.h │ │ │ ├── ai_assert.h │ │ │ ├── anim.h │ │ │ ├── camera.h │ │ │ ├── cexport.h │ │ │ ├── cfileio.h │ │ │ ├── cimport.h │ │ │ ├── color4.h │ │ │ ├── color4.inl │ │ │ ├── commonMetaData.h │ │ │ ├── config.h │ │ │ ├── defs.h │ │ │ ├── fast_atof.h │ │ │ ├── importerdesc.h │ │ │ ├── light.h │ │ │ ├── material.h │ │ │ ├── material.inl │ │ │ ├── matrix3x3.h │ │ │ ├── matrix3x3.inl │ │ │ ├── matrix4x4.h │ │ │ ├── matrix4x4.inl │ │ │ ├── mesh.h │ │ │ ├── metadata.h │ │ │ ├── pbrmaterial.h │ │ │ ├── postprocess.h │ │ │ ├── qnan.h │ │ │ ├── quaternion.h │ │ │ ├── quaternion.inl │ │ │ ├── scene.h │ │ │ ├── texture.h │ │ │ ├── types.h │ │ │ ├── vector2.h │ │ │ ├── vector2.inl │ │ │ ├── vector3.h │ │ │ ├── vector3.inl │ │ │ └── version.h │ │ └── lib │ │ ├── assimp-vc142-mt.lib │ │ ├── assimp-vc142-mtd.lib │ │ ├── cmake │ │ └── assimp-5.2 │ │ │ ├── assimpConfig.cmake │ │ │ ├── assimpConfigVersion.cmake │ │ │ ├── assimpTargets-debug.cmake │ │ │ ├── assimpTargets-release.cmake │ │ │ └── assimpTargets.cmake │ │ ├── pkgconfig │ │ └── assimp.pc │ │ ├── zlibstatic.lib │ │ └── zlibstaticd.lib └── src │ ├── FbxMeshCenter.cpp │ └── tt.fbx ├── README.md ├── VertexOffset ├── CMakeLists.txt ├── Common.cpp ├── Common.h ├── README.md ├── tt.fbx └── vertexoffset.cpp └── WtmsMerge ├── README.md └── wtmsmerge.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/LICENSE -------------------------------------------------------------------------------- /ModelCenter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/CMakeLists.txt -------------------------------------------------------------------------------- /ModelCenter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/README.md -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/bin/assimp-vc142-mt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/bin/assimp-vc142-mt.dll -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/bin/assimp-vc142-mtd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/bin/assimp-vc142-mtd.dll -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/bin/assimp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/bin/assimp.exe -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Base64.hpp -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/BaseImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/BaseImporter.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Bitmap.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/BlobIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/BlobIOSystem.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/ByteSwapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/ByteSwapper.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/ColladaMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/ColladaMetaData.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Compiler/poppack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Compiler/poppack1.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Compiler/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Compiler/pstdint.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Compiler/pushpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Compiler/pushpack1.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/CreateAnimMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/CreateAnimMesh.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/DefaultIOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/DefaultIOStream.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/DefaultIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/DefaultIOSystem.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/DefaultLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/DefaultLogger.hpp -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Exceptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Exceptional.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Exporter.hpp -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/GenericProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/GenericProperty.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/GltfMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/GltfMaterial.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Hash.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/IOStream.hpp -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/IOStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/IOStreamBuffer.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Importer.hpp -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/LineSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/LineSplitter.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/LogAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/LogAux.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/LogStream.hpp -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/MathFunctions.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/MemoryIOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/MemoryIOWrapper.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/NullLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/NullLogger.hpp -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/ObjMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/ObjMaterial.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/ParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/ParsingUtils.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Profiler.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/ProgressHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/ProgressHandler.hpp -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/RemoveComments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/RemoveComments.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/SGSpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/SGSpatialSort.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/SceneCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/SceneCombiner.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/SkeletonMeshBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/SkeletonMeshBuilder.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/SmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/SmallVector.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/SmoothingGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/SmoothingGroups.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/SmoothingGroups.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/SmoothingGroups.inl -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/SpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/SpatialSort.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/StandardShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/StandardShapes.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/StreamReader.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/StreamWriter.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/StringComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/StringComparison.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/StringUtils.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Subdivision.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/TinyFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/TinyFormatter.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/Vertex.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/XMLTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/XMLTools.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/XmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/XmlParser.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/ZipArchiveIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/ZipArchiveIOSystem.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/aabb.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/ai_assert.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/anim.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/camera.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/cexport.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/cfileio.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/cimport.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/color4.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/color4.inl -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/commonMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/commonMetaData.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/config.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/defs.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/fast_atof.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/importerdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/importerdesc.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/light.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/material.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/material.inl -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/matrix3x3.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/matrix4x4.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/mesh.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/metadata.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/pbrmaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/pbrmaterial.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/postprocess.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/qnan.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/quaternion.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/quaternion.inl -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/scene.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/texture.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/types.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/vector2.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/vector2.inl -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/vector3.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/vector3.inl -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/include/assimp/version.h -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/lib/assimp-vc142-mt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/lib/assimp-vc142-mt.lib -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/lib/assimp-vc142-mtd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/lib/assimp-vc142-mtd.lib -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/lib/cmake/assimp-5.2/assimpConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/lib/cmake/assimp-5.2/assimpConfig.cmake -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/lib/cmake/assimp-5.2/assimpConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/lib/cmake/assimp-5.2/assimpConfigVersion.cmake -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/lib/cmake/assimp-5.2/assimpTargets-debug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/lib/cmake/assimp-5.2/assimpTargets-debug.cmake -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/lib/cmake/assimp-5.2/assimpTargets-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/lib/cmake/assimp-5.2/assimpTargets-release.cmake -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/lib/cmake/assimp-5.2/assimpTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/lib/cmake/assimp-5.2/assimpTargets.cmake -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/lib/pkgconfig/assimp.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/lib/pkgconfig/assimp.pc -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/lib/zlibstatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/lib/zlibstatic.lib -------------------------------------------------------------------------------- /ModelCenter/ThirdParty/assimp/lib/zlibstaticd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/ThirdParty/assimp/lib/zlibstaticd.lib -------------------------------------------------------------------------------- /ModelCenter/src/FbxMeshCenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/src/FbxMeshCenter.cpp -------------------------------------------------------------------------------- /ModelCenter/src/tt.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/ModelCenter/src/tt.fbx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/README.md -------------------------------------------------------------------------------- /VertexOffset/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/VertexOffset/CMakeLists.txt -------------------------------------------------------------------------------- /VertexOffset/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/VertexOffset/Common.cpp -------------------------------------------------------------------------------- /VertexOffset/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/VertexOffset/Common.h -------------------------------------------------------------------------------- /VertexOffset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/VertexOffset/README.md -------------------------------------------------------------------------------- /VertexOffset/tt.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/VertexOffset/tt.fbx -------------------------------------------------------------------------------- /VertexOffset/vertexoffset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/VertexOffset/vertexoffset.cpp -------------------------------------------------------------------------------- /WtmsMerge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/WtmsMerge/README.md -------------------------------------------------------------------------------- /WtmsMerge/wtmsmerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveta/ModelProcess/HEAD/WtmsMerge/wtmsmerge.py --------------------------------------------------------------------------------