├── .gitignore ├── LICENSE ├── README.md └── src ├── CMakeLists.txt ├── fbxdocument.cpp ├── fbxdocument.h ├── fbxdump.cpp ├── fbxnode.cpp ├── fbxnode.h ├── fbxproperty.cpp ├── fbxproperty.h ├── fbxutil.cpp ├── fbxutil.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build* 2 | CMakeLists.txt.user 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/README.md -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/fbxdocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/src/fbxdocument.cpp -------------------------------------------------------------------------------- /src/fbxdocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/src/fbxdocument.h -------------------------------------------------------------------------------- /src/fbxdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/src/fbxdump.cpp -------------------------------------------------------------------------------- /src/fbxnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/src/fbxnode.cpp -------------------------------------------------------------------------------- /src/fbxnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/src/fbxnode.h -------------------------------------------------------------------------------- /src/fbxproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/src/fbxproperty.cpp -------------------------------------------------------------------------------- /src/fbxproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/src/fbxproperty.h -------------------------------------------------------------------------------- /src/fbxutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/src/fbxutil.cpp -------------------------------------------------------------------------------- /src/fbxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/src/fbxutil.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskorepa/fbx/HEAD/src/main.cpp --------------------------------------------------------------------------------