├── .clang-format ├── .clang-format-ignore ├── .clang-tidy ├── .codespellrc ├── .cppcheck.supp ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── help_wanted.md │ └── new_release.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── alembic-install-dep │ │ ├── action.yml │ │ └── fix_cmake_rpath.patch │ ├── android-ci │ │ └── action.yml │ ├── assimp-install-dep │ │ └── action.yml │ ├── blosc-install-dep │ │ └── action.yml │ ├── coverage-ci │ │ └── action.yml │ ├── draco-install-dep │ │ └── action.yml │ ├── external-build-ci │ │ └── action.yml │ ├── f3d-dependencies │ │ └── action.yml │ ├── generic-ci │ │ └── action.yml │ ├── generic-dependencies │ │ └── action.yml │ ├── imath-install-dep │ │ └── action.yml │ ├── occt-install-dep │ │ ├── 0001-Adding-INSTALL_RPATH-Linux.patch │ │ └── action.yml │ ├── openexr-install-dep │ │ ├── action.yml │ │ └── include_cstdint.patch │ ├── openvdb-install-dep │ │ └── action.yml │ ├── ospray-sb-install-dep │ │ ├── 0001-Fix-INSTALL_RPATH-in-rkcommon-superbuild.patch │ │ ├── 0001-fix-embree-for-modern-clang.patch │ │ └── action.yml │ ├── pybind11-install-dep │ │ └── action.yml │ ├── python-ci │ │ └── action.yml │ ├── sanitizer-ci │ │ └── action.yml │ ├── static-analysis-ci │ │ └── action.yml │ ├── tbb-install-dep │ │ └── action.yml │ ├── usd-install-dep │ │ ├── action.yml │ │ ├── usd-install-bin-mindep.patch │ │ └── usd-install-bin.patch │ ├── vtk-dependencies │ │ └── action.yml │ ├── vtk-install-dep │ │ ├── action.yml │ │ └── set_cmp0177_policy.cmake │ ├── wasm-ci │ │ └── action.yml │ ├── webp-install-dep │ │ └── action.yml │ └── zlib-install-dep │ │ └── action.yml ├── baselines │ ├── install_example_plugin_output.png │ └── install_output.png └── workflows │ ├── build-docker-images.yml │ ├── build-website.yml │ ├── ci.yml │ ├── clean-caches.yml │ ├── labelize.yml │ ├── nightly_vtk_master.yml │ ├── public-api-warn.yml │ ├── style-checks.yml │ ├── version-timestamp-warn.yml │ └── versions.json ├── .gitignore ├── .lsan.supp ├── .prettierignore ├── .prettierrc ├── .tsan.supp ├── CMakeLists.txt ├── CMakePresets.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── THIRD_PARTY_LICENSES.md ├── application ├── CMakeLists.txt ├── F3DColorMapTools.cxx ├── F3DColorMapTools.h ├── F3DConfig.h.in ├── F3DConfigFileTools.cxx ├── F3DConfigFileTools.h ├── F3DException.h ├── F3DNSDelegate.h ├── F3DNSDelegate.mm ├── F3DOptionsTools.cxx ├── F3DOptionsTools.h ├── F3DPluginsTools.cxx ├── F3DPluginsTools.h ├── F3DStarter.cxx ├── F3DStarter.h ├── F3DSystemTools.cxx ├── F3DSystemTools.h ├── main.cxx └── testing │ ├── CMakeLists.txt │ ├── test_watch.ps1 │ └── test_watch.sh ├── cmake ├── application-config.cmake ├── f3dConfig.cmake.in ├── f3dEmbed.cmake ├── f3dOptions.cmake ├── f3dPlugin.cmake ├── f3dVersion.cmake ├── library-config.cmake ├── plugin.cxx.in ├── plugin.desktop.in ├── plugin.thumbnailer.in ├── pluginsdk-config.cmake └── readerBoilerPlate.h.in ├── codecov.yml ├── doc ├── CHANGELOG.md ├── dev │ ├── 03-GETTING_STARTED.md │ ├── 04-BUILD.md │ ├── 05-TESTING.md │ ├── 06-TOOLING.md │ ├── 07-ARCHITECTURE.md │ ├── 08-CODING_STYLE.md │ ├── 09-ROADMAPS_AND_RELEASES.md │ ├── 10-GOVERNANCE.md │ ├── 11-MAINTAINERS_AND_CONTRIBUTORS.md │ ├── 12-MENTORING.md │ └── 13-BUILD_WASM.md ├── libf3d │ ├── 01-OVERVIEW.md │ ├── 02-CLASSES.md │ ├── 03-OPTIONS.md │ ├── 04-LANGUAGE_BINDINGS.md │ └── 05-PLUGINS.md └── user │ ├── 01-QUICKSTART.md │ ├── 02-SUPPORTED_FORMATS.md │ ├── 03-OPTIONS.md │ ├── 04-INTERACTIONS.md │ ├── 05-ANIMATIONS.md │ ├── 06-CONFIGURATION_FILE.md │ ├── 07-COMMANDS.md │ ├── 08-PARSING.md │ ├── 09-COLOR_MAPS.md │ ├── 10-FINAL_SHADER.md │ ├── 11-DESKTOP_INTEGRATION.md │ ├── 12-PLUGINS.md │ └── 13-LIMITATIONS_AND_TROUBLESHOOTING.md ├── examples ├── CMakeLists.txt ├── README.md ├── libf3d │ ├── CMakeLists.txt │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── check-engine │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ │ ├── external-glfw │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ │ ├── fltk │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ │ ├── interactive-app │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ │ ├── multi-files │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ │ ├── offscreen-thumbnail │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ │ ├── qml │ │ │ ├── CMakeLists.txt │ │ │ ├── F3DRenderer.cxx │ │ │ ├── F3DRenderer.h │ │ │ ├── F3DView.cxx │ │ │ ├── F3DView.h │ │ │ ├── Main.qml │ │ │ └── main.cxx │ │ ├── qt6 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ │ ├── render-image │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ │ ├── render-interact │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── baselines │ │ │ │ ├── cow.png │ │ │ │ └── thumbnail.png │ │ │ ├── check.cxx │ │ │ └── data │ │ │ │ ├── cow.vtp │ │ │ │ └── mb │ │ │ │ ├── mb_0_0.vtu │ │ │ │ ├── mb_1_0.vtp │ │ │ │ └── mb_2_0.vtp │ │ ├── use-options-string │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ │ ├── use-options-struct │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ │ └── use-options-variant │ │ │ ├── CMakeLists.txt │ │ │ └── main.cxx │ ├── python │ │ ├── CMakeLists.txt │ │ ├── check-engine │ │ │ ├── check_engine.py │ │ │ └── test_check_engine.py │ │ ├── img-cmp │ │ │ ├── img_cmp.py │ │ │ └── test_img_cmp.py │ │ ├── interactive-app │ │ │ ├── interactive_app.py │ │ │ └── test_interactive_app.py │ │ ├── offscreen-thumbnail │ │ │ ├── offscreen_thumbnail.py │ │ │ └── test_offscreen_thumbnail.py │ │ ├── qml │ │ │ ├── Main.qml │ │ │ ├── minimal_qml.py │ │ │ └── test_minimal_qml.py │ │ ├── qt6 │ │ │ ├── minimal_qt6.py │ │ │ └── test_minimal_qt6.py │ │ ├── render-image │ │ │ ├── render_image.py │ │ │ └── test_render_image.py │ │ ├── render-interact │ │ │ ├── render_interact.py │ │ │ └── test_render_interact.py │ │ ├── render-terminal │ │ │ ├── render_terminal.py │ │ │ └── test_render_terminal.py │ │ ├── tests │ │ │ ├── baselines │ │ │ │ └── cow.png │ │ │ └── data │ │ │ │ └── cow.vtp │ │ └── tkinter │ │ │ ├── minimal_tkinter.py │ │ │ └── test_minimal_tkinter.py │ └── web │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ └── main.js │ │ └── vite.config.js └── plugins │ ├── CMakeLists.txt │ └── example-plugin │ ├── CMakeLists.txt │ ├── README.md │ ├── configs │ ├── config.d │ │ └── 10_example.json │ └── thumbnail.d │ │ └── 10_example.json │ ├── data.expl │ ├── f3d-example-formats.xml │ └── module │ ├── CMakeLists.txt │ ├── vtk.module │ ├── vtkF3DExampleReader.cxx │ └── vtkF3DExampleReader.h ├── external ├── .clang-tidy ├── VERSIONS.md ├── cxxopts │ └── cxxopts.hpp ├── dmon │ └── dmon.h ├── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── nlohmann_json │ └── nlohmann │ │ └── json.hpp └── tinyfiledialogs │ ├── .clang-tidy │ ├── tinyfiledialogs.cxx │ └── tinyfiledialogs.h ├── java ├── CMakeLists.txt ├── Camera.java ├── Engine.java ├── F3DJavaBindings.cxx ├── Options.java ├── Scene.java ├── Window.java └── testing │ ├── CMakeLists.txt │ └── TestJavaBindings.java ├── library ├── CMakeLists.txt ├── options.json ├── plugin │ ├── plugin.h │ └── reader.h ├── private │ ├── animationManager.h │ ├── camera_impl.h │ ├── config.h │ ├── context_cocoa.h │ ├── factory.h │ ├── init.h │ ├── interactor_impl.h │ ├── levenshtein.h │ ├── macros.h │ ├── options_generated.h.in │ ├── options_tools.h │ ├── scene_impl.h │ └── window_impl.h ├── public │ ├── camera.h │ ├── context.h │ ├── engine.h │ ├── exception.h │ ├── image.h │ ├── interactor.h │ ├── log.h │ ├── options.h.in │ ├── scene.h │ ├── types.h │ ├── utils.h │ └── window.h ├── src │ ├── animationManager.cxx │ ├── camera_impl.cxx │ ├── config.cxx.in │ ├── context.cxx │ ├── context_cocoa.mm │ ├── engine.cxx │ ├── factory.cxx.in │ ├── image.cxx │ ├── init.cxx │ ├── interactor.cxx │ ├── interactor_impl.cxx │ ├── levenshtein.cxx │ ├── log.cxx │ ├── options.cxx │ ├── scene_impl.cxx │ ├── types.cxx │ ├── utils.cxx │ └── window_impl.cxx └── testing │ ├── .clang-format │ ├── CMakeLists.txt │ ├── PseudoUnitTest.h │ ├── TestPseudoUnitTest.cxx │ ├── TestSDKAnimation.cxx │ ├── TestSDKCamera.cxx │ ├── TestSDKCompareWithFile.cxx │ ├── TestSDKConsole.cxx │ ├── TestSDKDeprecatedOptions.cxx │ ├── TestSDKDropZone.cxx │ ├── TestSDKDropZoneDeprecated.cxx │ ├── TestSDKDropZoneMinSize.cxx │ ├── TestSDKDropZoneNoLogo.cxx │ ├── TestSDKDynamicBackgroundColor.cxx │ ├── TestSDKDynamicFontFile.cxx │ ├── TestSDKDynamicHDRI.cxx │ ├── TestSDKDynamicLightIntensity.cxx │ ├── TestSDKDynamicProperties.cxx │ ├── TestSDKEngine.cxx │ ├── TestSDKEngineExceptions.cxx │ ├── TestSDKEngineRecreation.cxx │ ├── TestSDKExternalWindowCOCOA.mm │ ├── TestSDKExternalWindowEGL.cxx │ ├── TestSDKExternalWindowGLFW.cxx │ ├── TestSDKExternalWindowGLX.cxx │ ├── TestSDKExternalWindowOSMesa.cxx │ ├── TestSDKExternalWindowQT.cxx │ ├── TestSDKExternalWindowWGL.cxx │ ├── TestSDKHelpers.h │ ├── TestSDKImage.cxx │ ├── TestSDKInteractorCallBack.cxx │ ├── TestSDKInteractorCommand.cxx │ ├── TestSDKInteractorDocumentation.cxx │ ├── TestSDKInteractorDropFullScene.cxx │ ├── TestSDKInvalidForceReader.cxx │ ├── TestSDKLog.cxx │ ├── TestSDKMultiColoring.cxx │ ├── TestSDKMultiOptions.cxx │ ├── TestSDKOptions.cxx │ ├── TestSDKOptionsIO.cxx │ ├── TestSDKRenderAndInteract.cxx │ ├── TestSDKRenderFinalShader.cxx │ ├── TestSDKScene.cxx │ ├── TestSDKSceneFromMemory.cxx │ ├── TestSDKSceneInvalid.cxx │ ├── TestSDKStartInteractor.cxx │ ├── TestSDKTriggerInteractions.cxx │ ├── TestSDKUI.cxx │ ├── TestSDKUtils.cxx │ └── TestSDKWindowAuto.cxx ├── package.json ├── plugins ├── CMakeLists.txt ├── alembic │ ├── CMakeLists.txt │ ├── configs │ │ ├── config.d │ │ │ └── 10_alembic.json │ │ └── thumbnail.d │ │ │ └── 10_alembic.json │ ├── f3d-alembic-formats.xml │ └── module │ │ ├── CMakeLists.txt │ │ ├── Testing │ │ ├── CMakeLists.txt │ │ └── TestF3DAlembicReader.cxx │ │ ├── vtk.module │ │ ├── vtkF3DAlembicReader.cxx │ │ └── vtkF3DAlembicReader.h ├── assimp │ ├── CMakeLists.txt │ ├── collada.inl │ ├── configs │ │ ├── config.d │ │ │ └── 10_assimp.json │ │ └── thumbnail.d │ │ │ └── 10_assimp.json │ ├── f3d-assimp-formats.xml │ └── module │ │ ├── CMakeLists.txt │ │ ├── Testing │ │ ├── CMakeLists.txt │ │ ├── TestF3DAssimpImportError.cxx │ │ └── TestF3DAssimpImporter.cxx │ │ ├── vtk.module │ │ ├── vtkF3DAssimpImporter.cxx │ │ └── vtkF3DAssimpImporter.h ├── draco │ ├── CMakeLists.txt │ ├── configs │ │ ├── config.d │ │ │ └── 10_draco.json │ │ └── thumbnail.d │ │ │ └── 10_draco.json │ ├── f3d-draco-formats.xml │ └── module │ │ ├── CMakeLists.txt │ │ ├── Testing │ │ ├── CMakeLists.txt │ │ └── TestF3DDracoReader.cxx │ │ ├── vtk.module │ │ ├── vtkF3DDracoReader.cxx │ │ ├── vtkF3DDracoReader.h │ │ ├── vtkF3DGLTFDracoDocumentLoader.cxx │ │ ├── vtkF3DGLTFDracoDocumentLoader.h │ │ ├── vtkF3DGLTFDracoImporter.cxx │ │ └── vtkF3DGLTFDracoImporter.h ├── hdf │ ├── CMakeLists.txt │ ├── configs │ │ ├── config.d │ │ │ └── 10_hdf.json │ │ └── thumbnail.d │ │ │ └── 10_hdf.json │ ├── exodus.inl │ ├── f3d-hdf-formats.xml │ └── netcdf.inl ├── native │ ├── CMakeLists.txt │ ├── configs │ │ ├── config.d │ │ │ └── 10_native.json │ │ └── thumbnail.d │ │ │ └── 10_native.json │ ├── f3d-3d-formats.xml │ ├── f3d-3d-image-formats.xml │ ├── f3d-vtk-formats.xml │ ├── mdl.inl │ ├── module │ │ ├── CMakeLists.txt │ │ ├── Testing │ │ │ ├── CMakeLists.txt │ │ │ ├── TestF3DPLYReader.cxx │ │ │ ├── TestF3DQuakeMDLImporterInexistent.cxx │ │ │ ├── TestF3DQuakeMDLImporterStream.cxx │ │ │ ├── TestF3DSPZReader.cxx │ │ │ └── TestF3DSplatReader.cxx │ │ ├── vtk.module │ │ ├── vtkF3DPLYReader.cxx │ │ ├── vtkF3DPLYReader.h │ │ ├── vtkF3DQuakeMDLImporter.cxx │ │ ├── vtkF3DQuakeMDLImporter.h │ │ ├── vtkF3DQuakeMDLImporterConstants.h │ │ ├── vtkF3DSPZReader.cxx │ │ ├── vtkF3DSPZReader.h │ │ ├── vtkF3DSplatReader.cxx │ │ └── vtkF3DSplatReader.h │ ├── obj.inl │ └── stl.inl ├── occt │ ├── CMakeLists.txt │ ├── FORMAT.inl.in │ ├── configs │ │ ├── config.d │ │ │ └── 10_occt.json │ │ └── thumbnail.d │ │ │ └── 10_occt.json │ ├── f3d-occt-formats.xml │ └── module │ │ ├── CMakeLists.txt │ │ ├── Testing │ │ ├── CMakeLists.txt │ │ └── TestF3DOCCTReader.cxx │ │ ├── vtk.module │ │ ├── vtkF3DOCCTReader.cxx │ │ └── vtkF3DOCCTReader.h ├── usd │ ├── CMakeLists.txt │ ├── configs │ │ ├── config.d │ │ │ └── 10_usd.json │ │ └── thumbnail.d │ │ │ └── 10_usd.json │ ├── f3d-usd-formats.xml │ └── module │ │ ├── CMakeLists.txt │ │ ├── Testing │ │ ├── CMakeLists.txt │ │ └── TestF3DUSDImporter.cxx │ │ ├── vtk.module │ │ ├── vtkF3DUSDImporter.cxx │ │ └── vtkF3DUSDImporter.h └── vdb │ ├── CMakeLists.txt │ ├── configs │ ├── config.d │ │ └── 10_vdb.json │ └── thumbnail.d │ │ └── 10_vdb.json │ ├── f3d-vdb-formats.xml │ └── vdb.inl ├── pyproject.toml ├── python ├── CMakeLists.txt ├── F3DPythonBindings.cxx ├── __init__.py.in ├── cmake │ └── f3dPython.cmake ├── generate_stubs.py ├── py.typed ├── test_generate_stubs.py └── testing │ ├── CMakeLists.txt │ ├── test_camera.py │ ├── test_engine.py │ ├── test_image.py │ ├── test_image_compare.py │ ├── test_interactor.py │ ├── test_interactor_start.py │ ├── test_log.py │ ├── test_options.py │ ├── test_scene.py │ └── test_utils.py ├── resources ├── BundleInfo.plist.in ├── MonaspaceNeon-Regular.otf ├── app.f3d.F3D.metainfo.xml ├── colormaps │ ├── cividis.png │ ├── cubehelix.png │ ├── gist_earth.png │ ├── hot.png │ ├── inferno.png │ ├── licenses.md │ ├── magma.png │ ├── plasma.png │ ├── seismic.png │ └── viridis.png ├── completion.bash ├── completion.fish ├── completion.zsh ├── configs │ ├── config.d │ │ └── 05_all.json │ └── thumbnail.d │ │ └── 05_all.json ├── defaultHDRI.png ├── f3d.desktop ├── f3d.rc ├── logo-black.png ├── logo-mono.svg ├── logo-white.png ├── logo.icns ├── logo.ico ├── logo.svg ├── logo16.png ├── logo24.png ├── logo256.png ├── logo32.png ├── logo48.png ├── logo64.png ├── logotype-mono.svg └── logotype.svg ├── testing ├── baselines │ ├── Test3DGSPLY.png │ ├── Test3DGSPLYHDRI.png │ ├── Test3DGaussiansSplatting.png │ ├── Test3DGaussiansSplattingStochastic.png │ ├── Test3DSImporter.png │ ├── Test3MF.png │ ├── TestAMRDataSet.png │ ├── TestAlembic.png │ ├── TestAlembicAnimation.png │ ├── TestAlembicAnimationXForm.png │ ├── TestAlembicCurves.png │ ├── TestAlembicNonFaceVarying.png │ ├── TestAnimationAllAnimations.png │ ├── TestAnimationAutoplay.png │ ├── TestAnimationGenericImporter.png │ ├── TestAnimationGenericImporterPointSprites.png │ ├── TestAnimationGenericImporterScalarRange.png │ ├── TestAnimationIndexDeprecated.png │ ├── TestAnimationIndicesMulti.png │ ├── TestAnimationIndicesSingle.png │ ├── TestAnimationInputChangeColoring.png │ ├── TestAnimationInputChangePointSprites.png │ ├── TestAnimationMorphColoring.png │ ├── TestAnimationSkinColoring.png │ ├── TestAnimationTimeLimitsHigh.png │ ├── TestAnimationTimeLimitsLow.png │ ├── TestAnimationUserMatrixColoring.png │ ├── TestAnimationUserMatrixPointSprites.png │ ├── TestAssimpAnimationNegativeIndex.png │ ├── TestAssimpMetaDataImporter.png │ ├── TestAxesGridEnable.png │ ├── TestAxis.png │ ├── TestBREP.png │ ├── TestBREPDefines.png │ ├── TestBackdropOpacityMedium.png │ ├── TestBackdropOpacityOpaque.png │ ├── TestBackdropOpacityTransparent.png │ ├── TestBackfaceHidden.png │ ├── TestBackfaceVisible.png │ ├── TestBackground.png │ ├── TestBadRef.png │ ├── TestBinaryBREP.png │ ├── TestCameraClipping.png │ ├── TestCameraConfiguration.png │ ├── TestCameraDirection.png │ ├── TestCameraIndexConfiguration.png │ ├── TestCameraOrtho.png │ ├── TestCameraOrthographic.png │ ├── TestCameraPersp.png │ ├── TestCameraZoomFactor.png │ ├── TestCityGML.png │ ├── TestCollinearVectors.png │ ├── TestColorDiscretization.png │ ├── TestColorMap16bits.png │ ├── TestColorMap32bits.png │ ├── TestColorMapFile.png │ ├── TestColorMapFileFullPath.png │ ├── TestColorMapStem.png │ ├── TestColormap.png │ ├── TestCommandScriptAlias.png │ ├── TestCommandScriptAzimuth.png │ ├── TestCommandScriptBasic.png │ ├── TestCommandScriptElevation.png │ ├── TestCommandScriptRemoveCurrentFileGroup.png │ ├── TestCommandScriptRemoveFileGroups.png │ ├── TestCommandScriptReset.png │ ├── TestComponentName.png │ ├── TestConfigFileBuild.png │ ├── TestConfigFileHDRI.png │ ├── TestConfigFileMultiFileSTL.png │ ├── TestConfigFileMultiFileVTP.png │ ├── TestConfigFileUpperCase.png │ ├── TestConfigImperative.png │ ├── TestConfigOrder.png │ ├── TestConfigReset.png │ ├── TestConfigResolution.png │ ├── TestConfigStemBuild.png │ ├── TestConsoleBadgeError.png │ ├── TestConsoleBadgeQuiet.png │ ├── TestConsoleBadgeWarning.png │ ├── TestCustomOptionsNone.png │ ├── TestDAE.png │ ├── TestDAEAnimationLights.png │ ├── TestDRACO.png │ ├── TestDRACOColoring.png │ ├── TestDXF.png │ ├── TestDefaultConfigFileAlembic.png │ ├── TestDefaultConfigFileAndCommand.png │ ├── TestDefaultConfigFileAssimpDAE.png │ ├── TestDefaultConfigFileAssimpDXF.png │ ├── TestDefaultConfigFileAssimpFBX.png │ ├── TestDefaultConfigFileAssimpOFF.png │ ├── TestDefaultConfigFileDraco.png │ ├── TestDefaultConfigFileExodus.png │ ├── TestDefaultConfigFileNetCDF.png │ ├── TestDefaultConfigFileOCCT.png │ ├── TestDefaultConfigFilePLY.png │ ├── TestDefaultConfigFileQuakeMDL.png │ ├── TestDefaultConfigFileSPLAT.png │ ├── TestDefaultConfigFileSPZ.png │ ├── TestDefaultConfigFileSTL.png │ ├── TestDefaultConfigFileTIFF.png │ ├── TestDefaultConfigFileUSD.png │ ├── TestDefaultConfigFileVDB.png │ ├── TestDefaultConfigFileVTI.png │ ├── TestDefaultConfigFileVTKHDF.png │ ├── TestDefaultConfigFileVTU.png │ ├── TestDefaultConfigRemoveEmptyFileGroups.png │ ├── TestDefaultConfigTranslucent.png │ ├── TestDefines.png │ ├── TestDepthPeeling.png │ ├── TestDepthPeelingToneMapping.png │ ├── TestDicom.png │ ├── TestEdges.png │ ├── TestEmbeddedTextureFBX.png │ ├── TestExactMatch.png │ ├── TestExodus.png │ ├── TestExodusConfig.png │ ├── TestF3DRenderer.png │ ├── TestFBX.png │ ├── TestFBX16bits.png │ ├── TestFBXAnimation.png │ ├── TestFBXAnimationCamera.png │ ├── TestFBXAnimationLights.png │ ├── TestFBXBone.png │ ├── TestFBXBoneAnimation.png │ ├── TestFBXNormalMapping.png │ ├── TestFBXSkinningAnimation.png │ ├── TestFilename.png │ ├── TestFilenameCommasSpaces.png │ ├── TestFilenameHDRIFilename.png │ ├── TestFilenameWhiteBg.png │ ├── TestFinalShaderNegative.png │ ├── TestFinalShaderNegativeFileName.png │ ├── TestFont.png │ ├── TestFontScale2.png │ ├── TestFontScale3.png │ ├── TestForceReaderGLTFDraco.png │ ├── TestForceReaderPass.png │ ├── TestGLTFDracoImporter.png │ ├── TestGLTFDracoImporterWithoutCompression.png │ ├── TestGLTFImporter.png │ ├── TestGLTFImporterUnlit.png │ ├── TestGLTFImporterWithAnimation.png │ ├── TestGLTFMorph.png │ ├── TestGLTFRigArmature.png │ ├── TestGLTFRigArmatureNoArmature.png │ ├── TestGLTFRigArmatureSphereTube.png │ ├── TestGLTFRigArmatureWithOpacity.png │ ├── TestGLTFSkin.png │ ├── TestGLTFURI.png │ ├── TestGenRef.png │ ├── TestGridAbsolute.png │ ├── TestGridClipping.png │ ├── TestGridColor.png │ ├── TestGridOptions.png │ ├── TestGridUp000.png │ ├── TestGridUp100.png │ ├── TestGridUp123.png │ ├── TestGridWithDepthPeeling.png │ ├── TestGridX.png │ ├── TestGridY.png │ ├── TestGridZ.png │ ├── TestHDRI.png │ ├── TestHDRI8Bit.png │ ├── TestHDRIAmbientOnly.png │ ├── TestHDRIAmbientOnlyNoBackground.png │ ├── TestHDRIBlur.png │ ├── TestHDRIBlurCoCLarge.png │ ├── TestHDRIBlurCoCMedium.png │ ├── TestHDRIBlurCoCNegative.png │ ├── TestHDRIBlurCoCSmall.png │ ├── TestHDRIBlurCoCZero.png │ ├── TestHDRIBlurRatio.png │ ├── TestHDRICache.png │ ├── TestHDRIDefault.png │ ├── TestHDRIEXR.png │ ├── TestHDRIEdges.png │ ├── TestHDRIFilename.png │ ├── TestHDRIFilenameDefault.png │ ├── TestHDRINone.png │ ├── TestHDRIOrient.png │ ├── TestHDRIRaytracing.png │ ├── TestHDRIRaytracingAmbientOnly.png │ ├── TestHDRIRaytracingAmbientOnlyNoBackground.png │ ├── TestHDRIRaytracingNone.png │ ├── TestHDRIRaytracingSkyboxOnly.png │ ├── TestHDRISkyboxOnly.png │ ├── TestHDRIToneMapping.png │ ├── TestHDRIToneMappingSSAA.png │ ├── TestHOMEColorMapFile.png │ ├── TestHOMEConfig.png │ ├── TestHOMEFontFile.png │ ├── TestHOMEHDRI.png │ ├── TestHOMEInput.png │ ├── TestHOMEInteractionDropHDRICollapse.png │ ├── TestHOMETexture.png │ ├── TestIGES.png │ ├── TestIGESDefines.png │ ├── TestInteractionActors.png │ ├── TestInteractionAndCLIBlending.png │ ├── TestInteractionAnimation.png │ ├── TestInteractionAnimationCameraMovement.png │ ├── TestInteractionAnimationCycleAnimation.png │ ├── TestInteractionAnimationCycleAnimationSingle.png │ ├── TestInteractionAnimationDropHDRI.png │ ├── TestInteractionAnimationFBXBone.png │ ├── TestInteractionAnimationFast.png │ ├── TestInteractionAnimationFrameRate.png │ ├── TestInteractionAnimationIndexDeprecatedCycleAnimation.png │ ├── TestInteractionAnimationInvert.png │ ├── TestInteractionAnimationSlow.png │ ├── TestInteractionAxesGridToggle.png │ ├── TestInteractionCameraHotkeys.png │ ├── TestInteractionCameraUpdate.png │ ├── TestInteractionCheatsheetAnimationName.png │ ├── TestInteractionCheatsheetBlackBG.png │ ├── TestInteractionCheatsheetCentered.png │ ├── TestInteractionCheatsheetConfigFile.png │ ├── TestInteractionCheatsheetCycle.png │ ├── TestInteractionCheatsheetNoFile.png │ ├── TestInteractionCheatsheetOpacity.png │ ├── TestInteractionCheatsheetScalars.png │ ├── TestInteractionCheatsheetWhiteBG.png │ ├── TestInteractionConfigFileAndCommand.png │ ├── TestInteractionConfigFileBindings.png │ ├── TestInteractionConfigFileImperative.png │ ├── TestInteractionConfigFileImperativeNoData.png │ ├── TestInteractionConfigFileMulti.png │ ├── TestInteractionConfigFileNoColorBar.png │ ├── TestInteractionConfigFileOptional.png │ ├── TestInteractionConsoleAutoComplete.png │ ├── TestInteractionConsoleAutoCompleteCamera.png │ ├── TestInteractionConsoleAutoCompleteCandidates.png │ ├── TestInteractionConsoleAutoCompleteColoring.png │ ├── TestInteractionConsoleAutoCompleteDirCaseInsensitiveLowercaseF.png │ ├── TestInteractionConsoleAutoCompleteDirCaseInsensitiveUppercaseF.png │ ├── TestInteractionConsoleAutoCompleteDirCaseSensitive.png │ ├── TestInteractionConsoleAutoCompleteFilesystem.png │ ├── TestInteractionConsoleAutoCompleteHelp.png │ ├── TestInteractionConsoleAutoCompleteHide.png │ ├── TestInteractionConsoleAutoCompleteNoMatch.png │ ├── TestInteractionConsoleAutoCompleteReaderOptions.png │ ├── TestInteractionConsoleAutoCompleteSetDisplayCompl.png │ ├── TestInteractionConsoleAutoCompleteSetOptions.png │ ├── TestInteractionConsoleAutoCompleteToggleOptions.png │ ├── TestInteractionConsoleCamera.png │ ├── TestInteractionConsoleClear.png │ ├── TestInteractionConsoleEmptyCommand.png │ ├── TestInteractionConsoleHistory.png │ ├── TestInteractionConsoleHistoryEmpty.png │ ├── TestInteractionConsoleHistoryHide.png │ ├── TestInteractionConsoleInvalidCommand.png │ ├── TestInteractionConsoleInvalidOption.png │ ├── TestInteractionConsoleLoadNext.png │ ├── TestInteractionConsoleOpen.png │ ├── TestInteractionConsoleOpenWarningClick.png │ ├── TestInteractionConsoleOpenWarningKeyboard.png │ ├── TestInteractionConsoleOverCheatSheet.png │ ├── TestInteractionConsoleReload.png │ ├── TestInteractionConsoleRender.png │ ├── TestInteractionConsoleScrollbar.png │ ├── TestInteractionConsoleToggleGrid.png │ ├── TestInteractionConsoleTypingSceneInfo.png │ ├── TestInteractionCorrectCameraForVolumeSwitch.png │ ├── TestInteractionCycleBlending.png │ ├── TestInteractionCycleCell.png │ ├── TestInteractionCycleCellInvalidIndex.png │ ├── TestInteractionCycleComp.png │ ├── TestInteractionCycleScalars.png │ ├── TestInteractionCycleScalarsCompCheck.png │ ├── TestInteractionDirectory.png │ ├── TestInteractionDirectoryEmpty.png │ ├── TestInteractionDirectoryLoop.png │ ├── TestInteractionDragRotateVertical.png │ ├── TestInteractionDropFileBackslashes.png │ ├── TestInteractionDropFiles.png │ ├── TestInteractionDropHDRI.png │ ├── TestInteractionDropHDRIExr.png │ ├── TestInteractionDropHDRIInvert.png │ ├── TestInteractionDropHDRIModifiers.png │ ├── TestInteractionDropHDRIMulti.png │ ├── TestInteractionDropSameFiles.png │ ├── TestInteractionElevationCameraRotation.png │ ├── TestInteractionFocalPointPickingDefault.png │ ├── TestInteractionFocalPointPickingPoints.png │ ├── TestInteractionFocalPointPickingShift.png │ ├── TestInteractionHDRIBlur.png │ ├── TestInteractionHDRICache.png │ ├── TestInteractionHDRIChange.png │ ├── TestInteractionHDRIFullFromNone.png │ ├── TestInteractionHDRILoop.png │ ├── TestInteractionHDRIMove.png │ ├── TestInteractionHDRIRaytracingFullFromNone.png │ ├── TestInteractionHDRIRaytracingLoop.png │ ├── TestInteractionHDRIRaytracingRemoveAmbient.png │ ├── TestInteractionHDRIRaytracingRemoveBoth.png │ ├── TestInteractionHDRIRaytracingRemoveSkybox.png │ ├── TestInteractionHDRIReload.png │ ├── TestInteractionHDRIRemoveAmbient.png │ ├── TestInteractionHDRIRemoveBoth.png │ ├── TestInteractionHDRIRemoveSkybox.png │ ├── TestInteractionInitUpVectorOption.png │ ├── TestInteractionInvalidFile.png │ ├── TestInteractionInvertZoom.png │ ├── TestInteractionLightIntensity.png │ ├── TestInteractionLoadParentDirectory.png │ ├── TestInteractionMinimalConsoleBadgeRemains.png │ ├── TestInteractionMinimalConsoleEscape.png │ ├── TestInteractionMinimalConsoleInvalidCommand.png │ ├── TestInteractionMinimalConsoleOpen.png │ ├── TestInteractionMinimalConsoleOverCheatSheet.png │ ├── TestInteractionMinimalConsoleOverCheatSheetAndFilename.png │ ├── TestInteractionMinimalConsoleResize.png │ ├── TestInteractionMinimalConsoleReturn.png │ ├── TestInteractionMinimalConsoleValidCommand.png │ ├── TestInteractionMultiFileColoring.png │ ├── TestInteractionMultiFileDrop.png │ ├── TestInteractionMultiFileLoadParentDirectory.png │ ├── TestInteractionMultiFileVolume.png │ ├── TestInteractionNoModelScrollBar.png │ ├── TestInteractionNoModelScrollWheel.png │ ├── TestInteractionOpacity.png │ ├── TestInteractionOrthographicProjection.png │ ├── TestInteractionPanWithShift.png │ ├── TestInteractionPointCloud.png │ ├── TestInteractionPointCloudTAA.png │ ├── TestInteractionPointSpritesCycle.png │ ├── TestInteractionPostFX.png │ ├── TestInteractionRaytracingDenoise.png │ ├── TestInteractionReload.png │ ├── TestInteractionResetCamera.png │ ├── TestInteractionResetCameraWithCameraIndex.png │ ├── TestInteractionRollCameraRotation.png │ ├── TestInteractionRotateCamera90.png │ ├── TestInteractionRotateCameraMinus90.png │ ├── TestInteractionStochasticTAA.png │ ├── TestInteractionSwitchFileNextCameraKeeping.png │ ├── TestInteractionSwitchFileNoCameraKeeping.png │ ├── TestInteractionSwitchFilePrevCameraKeeping.png │ ├── TestInteractionTAA.png │ ├── TestInteractionTAADolly.png │ ├── TestInteractionTAAMiddleClick.png │ ├── TestInteractionTensorsCycleComp.png │ ├── TestInteractionTrackball.png │ ├── TestInteractionTrackballBind.png │ ├── TestInteractionVerticalDragRotate.png │ ├── TestInteractionVolumeAfterColoring.png │ ├── TestInteractionVolumeCycle.png │ ├── TestInteractionVolumeInverse.png │ ├── TestInteractionZoomToMouse.png │ ├── TestInteractionZoomToggleOrthographicProjection.png │ ├── TestInvalidFileFileNameEmpty.png │ ├── TestLightIntensityBrighter.png │ ├── TestLightIntensityBrighterFullScene.png │ ├── TestLightIntensityDarker.png │ ├── TestLightIntensityDarkerFullScene.png │ ├── TestLineWidth.png │ ├── TestLineWidthFullScene.png │ ├── TestMHD.png │ ├── TestMatchFirstConfigGlobOptionBlock.png │ ├── TestMatchSecondConfigGlobOptionBlock.png │ ├── TestMaterial.png │ ├── TestMaterialFullScene.png │ ├── TestMaxBaseIOR.png │ ├── TestMaxSizeAboveMultiFile.png │ ├── TestMaxSizeBelow.png │ ├── TestMetaData.png │ ├── TestMetaDataImporter.png │ ├── TestMinBaseIOR.png │ ├── TestMorphColoring.png │ ├── TestMultiFile.png │ ├── TestMultiFileAnimationAnySingle.png │ ├── TestMultiFileAnimationIndices.png │ ├── TestMultiFileAnimationMultiUnique.png │ ├── TestMultiFileAnimationNoAnimationSupport.png │ ├── TestMultiFileAnimationNoneMulti.png │ ├── TestMultiFileAnimationUniqueUnique.png │ ├── TestMultiFileCameraIndex.png │ ├── TestMultiFileColoring.png │ ├── TestMultiFileColoringTexture.png │ ├── TestMultiFileInvalid.png │ ├── TestMultiFileMetaData.png │ ├── TestMultiFileModeDir.png │ ├── TestMultiFileNonCoherentComponentNames.png │ ├── TestMultiFilePositionals.png │ ├── TestMultiFileRecursive.png │ ├── TestMultiFileRegexA.png │ ├── TestMultiFileRegexB.png │ ├── TestMultiFileUnsupportedFilesFileName.png │ ├── TestMultiFileVolume.png │ ├── TestMultiInputArg.png │ ├── TestMultiInputMultiArgs.png │ ├── TestMultiblockMetaData.png │ ├── TestNRRD.png │ ├── TestNetCDF.png │ ├── TestNoBackground.png │ ├── TestNoConfigWithConfig.png │ ├── TestNoFile.png │ ├── TestNoFileEmptyFileName.png │ ├── TestNonExistentFile.png │ ├── TestOBJ.png │ ├── TestOBJWebP.png │ ├── TestOBJWithTGATexture.png │ ├── TestOFF.png │ ├── TestPLY.png │ ├── TestPTS.png │ ├── TestPointCloud.png │ ├── TestPointCloudBar.png │ ├── TestPointCloudDefaultScene.png │ ├── TestPointCloudFullScene.png │ ├── TestPointCloudUG.png │ ├── TestPointCloudVolume.png │ ├── TestPythonCompareWithFile.png │ ├── TestPythonScene.png │ ├── TestPythonSceneMemory.png │ ├── TestPythonSceneRedLight.png │ ├── TestQuakeMDL.png │ ├── TestQuakeMDLActorCollection.png │ ├── TestQuakeMDLAnimationBetween.png │ ├── TestQuakeMDLAnimationGroupFrame.png │ ├── TestQuakeMDLAnimationLastFrame.png │ ├── TestQuakeMDLAnimationMulti.png │ ├── TestQuakeMDLAnimationSimpleFrame.png │ ├── TestQuakeMDLDisableAnimation.png │ ├── TestQuakeMDLGroupSkin.png │ ├── TestQuakeMDLSkinIndex.png │ ├── TestQuakeMDLSkinIndexNegative.png │ ├── TestQuakeMDLSkinIndexNonInteger.png │ ├── TestQuakeMDLSkinIndexOutOfBounds.png │ ├── TestQuakeMDLSkinIndexOverflow.png │ ├── TestRaytracingBackground.png │ ├── TestRaytracingDefaultConfigFile.png │ ├── TestRaytracingDenoise.png │ ├── TestRaytracingGLTF.png │ ├── TestRaytracingNoBackground.png │ ├── TestRaytracingNoDenoise.png │ ├── TestRaytracingPointCloud.png │ ├── TestRaytracingScalarBar.png │ ├── TestRaytracingThumbnailConfigFile.png │ ├── TestRemoveEmptyFileGroups.png │ ├── TestRenderingBackendAuto.png │ ├── TestRenderingBackendEGL.png │ ├── TestRenderingBackendGLX.png │ ├── TestRenderingBackendOSMesa.png │ ├── TestRenderingBackendWGL.png │ ├── TestSDKCompareWithFile.png │ ├── TestSDKConsole.png │ ├── TestSDKDeprecatedOptions.png │ ├── TestSDKDropZone.png │ ├── TestSDKDropZoneDeprecated.png │ ├── TestSDKDropZoneNoLogo.png │ ├── TestSDKDynamicBackgrounColor.png │ ├── TestSDKDynamicFontFile.png │ ├── TestSDKDynamicHDRI.png │ ├── TestSDKDynamicHDRIDefault.png │ ├── TestSDKDynamicHDRIExr.png │ ├── TestSDKDynamicLightIntensity-5x-brighter.png │ ├── TestSDKDynamicLightIntensity-5x-darker.png │ ├── TestSDKDynamicLightIntensity-default.png │ ├── TestSDKDynamicProperties.png │ ├── TestSDKExternalWindowCOCOA.png │ ├── TestSDKExternalWindowEGL.png │ ├── TestSDKExternalWindowGLFW.png │ ├── TestSDKExternalWindowGLX.png │ ├── TestSDKExternalWindowOSMesa.png │ ├── TestSDKExternalWindowQT.png │ ├── TestSDKExternalWindowWGL.png │ ├── TestSDKImage.png │ ├── TestSDKImage16.png │ ├── TestSDKInteractionDirectory.png │ ├── TestSDKInteractorCallBackDefault.png │ ├── TestSDKInteractorCallBackDefaultAgain.png │ ├── TestSDKInteractorCallBackModified.png │ ├── TestSDKInteractorCallBackModifiedAgain.png │ ├── TestSDKInteractorDropFullScene.png │ ├── TestSDKMultiColoring.png │ ├── TestSDKMultiOptions.png │ ├── TestSDKRenderFinalShaderNegative.png │ ├── TestSDKRenderFinalShaderVignette.png │ ├── TestSDKScene.png │ ├── TestSDKSceneFromMemory.png │ ├── TestSDKSceneRedLight.png │ ├── TestSDKTriggerInteractionsKeyPress.png │ ├── TestSDKTriggerInteractionsKeyPressMod.png │ ├── TestSDKTriggerInteractionsMousePan.png │ ├── TestSDKTriggerInteractionsMouseRotate.png │ ├── TestSDKTriggerInteractionsMouseZoom.png │ ├── TestSDKTriggerInteractionsTextInput.png │ ├── TestSDKTriggerInteractionsWheelBackward.png │ ├── TestSDKTriggerInteractionsWheelForward.png │ ├── TestSDKUIAnimationProgressColor.png │ ├── TestSDKWindowStandard.png │ ├── TestSPLAT.png │ ├── TestSPZDegree0.png │ ├── TestSPZDegree1.png │ ├── TestSPZDegree1Stochastic.png │ ├── TestSPZDegree2.png │ ├── TestSPZDegree3.png │ ├── TestSPZVersion3.png │ ├── TestSSAO.png │ ├── TestSTEP.png │ ├── TestSTEPDefines.png │ ├── TestSTL.png │ ├── TestScalars.png │ ├── TestScalarsCell.png │ ├── TestScalarsRange.png │ ├── TestScalarsWithBar.png │ ├── TestScalarsWithBarContinuity.png │ ├── TestSkinColoring.png │ ├── TestSkinningManyBones.png │ ├── TestTGATextureFBX.png │ ├── TestTIFF.png │ ├── TestTextureColor.png │ ├── TestTextureColorWithOptions.png │ ├── TestTextureEmissive.png │ ├── TestTextureMatCap.png │ ├── TestTextureMatCapWithEdges.png │ ├── TestTextureMatCapWithTCoords.png │ ├── TestTextureMaterial.png │ ├── TestTextureMaterialWithOptions.png │ ├── TestTextureNormal.png │ ├── TestTextures.png │ ├── TestTexturesTransform.png │ ├── TestTexturesTransformGL.png │ ├── TestThumbnailConfigFileAlembic.png │ ├── TestThumbnailConfigFileAssimpDAE.png │ ├── TestThumbnailConfigFileAssimpDXF.png │ ├── TestThumbnailConfigFileAssimpFBX.png │ ├── TestThumbnailConfigFileAssimpOFF.png │ ├── TestThumbnailConfigFileDraco.png │ ├── TestThumbnailConfigFileExodus.png │ ├── TestThumbnailConfigFileNetCDF.png │ ├── TestThumbnailConfigFileOCCT.png │ ├── TestThumbnailConfigFilePLY.png │ ├── TestThumbnailConfigFileQuakeMDL.png │ ├── TestThumbnailConfigFileSPLAT.png │ ├── TestThumbnailConfigFileSPZ.png │ ├── TestThumbnailConfigFileSTL.png │ ├── TestThumbnailConfigFileUSD.png │ ├── TestThumbnailConfigFileVDB.png │ ├── TestThumbnailConfigFileVTI.png │ ├── TestThumbnailConfigFileVTKHDF.png │ ├── TestThumbnailConfigFileVTU.png │ ├── TestTimeRangeLessThanZeroNegativeAnimationTime.png │ ├── TestTimeRangeLessThanZeroNoAnimationTime.png │ ├── TestTimeRangeLessThanZeroWithAnimationTime.png │ ├── TestToneMapping.png │ ├── TestUSD.png │ ├── TestUSDAGlyphs.png │ ├── TestUSDAInstancing.png │ ├── TestUSDAPrimitives.png │ ├── TestUSDAPrimitivesZAxis.png │ ├── TestUSDInterpolation.png │ ├── TestUSDPurpose.png │ ├── TestUSDTeapot.png │ ├── TestUSDZAnimated.png │ ├── TestUSDZMaterials.png │ ├── TestUSDZMemEXR.png │ ├── TestUSDZRigged.png │ ├── TestUTF8.png │ ├── TestUnsupportedFile.png │ ├── TestUpDirectionNoSign.png │ ├── TestUserMatrixColoring.png │ ├── TestVDBCommandScriptReaderOptions.png │ ├── TestVDBDefinesDownsamplingFactor.png │ ├── TestVDBPoints.png │ ├── TestVDBVolume.png │ ├── TestVRMLImporter.png │ ├── TestVTICell.png │ ├── TestVTK.png │ ├── TestVTKHDF.png │ ├── TestVTM.png │ ├── TestVTP.png │ ├── TestVTR.png │ ├── TestVTS.png │ ├── TestVTU.png │ ├── TestVerboseMultiFileCompare.png │ ├── TestVerboseWarning.png │ ├── TestVolume.png │ ├── TestVolumeCells.png │ ├── TestVolumeColoringArray.png │ ├── TestVolumeComp.png │ ├── TestVolumeDirect.png │ ├── TestVolumeInverse.png │ ├── TestVolumeMag.png │ ├── TestWasmAnimation.png │ ├── TestWasmCamera.png │ ├── TestWasmInteraction.png │ ├── TestWasmOptions.png │ ├── TestWasmSplats.png │ ├── TestWinUserProfileNonStandard.png │ ├── TestX.png │ ├── TestXBF.png │ ├── TestXBFDefines.png │ ├── TestXCAFColors.png │ ├── TestXCAFColorsXBF.png │ └── TestXDG_CONFIG_HOME.png ├── configs │ ├── 02_home.json │ ├── bindings.json │ ├── checkerboard_colorful.json │ ├── complex.json │ ├── config_order.json │ ├── exact.json.in │ ├── exodus.json │ ├── glob.json.in │ ├── hdri.json.in │ ├── imperative.json │ ├── inexistent_key.json │ ├── invalid.json │ ├── invalid_glob_exp.json │ ├── invalid_match_type.json │ ├── invalid_options.json │ ├── invalid_value.json │ ├── match_type_no_match.json │ ├── no_options.json │ ├── nonparsable_value.json │ ├── quiet.json │ ├── resolution.json │ └── verbose.json ├── data │ ├── (ノಠ益ಠ )ノ.vtp │ ├── 10x10_checker.png │ ├── 16bit.fbx │ ├── 16bit.png │ ├── AnimatedCube.usdz │ ├── AutoCompletion │ │ ├── Folder2 │ │ │ └── f3d.glb │ │ └── folder1 │ │ │ └── f3d.glb │ ├── BoxAnimated.gltf │ ├── BoxAnimated0.bin │ ├── BoxAnimated_invalid_animation.gltf │ ├── Box_draco.bin │ ├── Box_draco.gltf │ ├── CameraAnimated.glb │ ├── Cameras.gltf │ ├── Crosterian.ttf │ ├── DATA_LICENSES.md │ ├── Duck0.bin │ ├── HeadMRVolume.mhd │ ├── HeadMRVolume.raw │ ├── IM-0001-1983.dcm │ ├── InterpolationTest.glb │ ├── Lantern │ │ ├── Lantern.bin │ │ ├── Lantern.gltf │ │ ├── Lantern_baseColor.png │ │ ├── Lantern_emissive.png │ │ ├── Lantern_normal.png │ │ └── Lantern_roughnessMetallic.png │ ├── McUsd.usdz │ ├── Part-4-Buildings-V4-one.gml │ ├── PinkEggFromLW.dxf │ ├── Rec709.exr │ ├── RectGrid2.vtr │ ├── RiggedFigure.glb │ ├── RiggedSimple.usdz │ ├── SimpleMorph.gltf │ ├── SimpleSkin.gltf │ ├── Teapot.usd │ ├── UnlitTest.glb │ ├── WaterBottle.glb │ ├── Wolf.fbx │ ├── albedo.png │ ├── albedo_mod.png │ ├── alpha.glb │ ├── amr.vtkhdf │ ├── anim_test.x │ ├── animatedCamera.fbx │ ├── animatedLights.dae │ ├── animatedLights.fbx │ ├── animatedWorld.fbx │ ├── animation_with_skeleton.fbx │ ├── armor.mdl │ ├── backface.vtp │ ├── beach.nrrd │ ├── blob.vtkhdf │ ├── bluntfin.vts │ ├── bluntfin_t.vtu │ ├── bonsai.spz │ ├── bonsai_small.ply │ ├── bot2.wrl │ ├── box.exo │ ├── box.g │ ├── checkerboard_colorful.mtl │ ├── checkerboard_colorful.obj │ ├── cheese.brep │ ├── cheese.igs │ ├── cheese.stp │ ├── cheese.xbf │ ├── cow.vtk │ ├── cow.vtp │ ├── cowlow.vtp │ ├── cube_gears.3mf │ ├── cube_webp.mtl │ ├── cube_webp.obj │ ├── disk_out_ref.ex2 │ ├── dragon.vtu │ ├── drop.abc │ ├── duck.dae │ ├── duck.fbx │ ├── duckCM.tga │ ├── duck_invalid.gltf │ ├── f3d.bin.brep │ ├── f3d.brep │ ├── f3d.glb │ ├── f3d.igs │ ├── f3d.stp │ ├── f3d.tif │ ├── f3d.vtp │ ├── f3d.xbf │ ├── flame_mixed.mdl │ ├── from_abq.vtu │ ├── glyphs.usda │ ├── grayscale.exr │ ├── groupskin.mdl │ ├── hornedlizard_small_d0.spz │ ├── hornedlizard_small_d1.spz │ ├── hornedlizard_small_d2.spz │ ├── hornedlizard_small_d3.spz │ ├── icosahedron.vdb │ ├── iflamigm.3ds │ ├── image.webp │ ├── instancing.usda │ ├── invalid.brep │ ├── invalid.exr │ ├── invalid.png │ ├── invalid.so │ ├── invalid.usd │ ├── invalid.vtp │ ├── invalid.webp │ ├── invalid.xbf │ ├── invalid2.webp │ ├── invalidSH.vtp │ ├── invalid_cut.exr │ ├── kloofendal_43d_clear_1k.exr │ ├── libf3d-plugin-invalid.so │ ├── mb.vtm │ ├── mb │ │ ├── mb_0_0.vtu │ │ ├── mb_1_0.vtp │ │ ├── mb_2_0.vtp │ │ ├── mb_3_0.vtt │ │ └── recursive │ │ │ ├── f3d.glb │ │ │ ├── mb_0_0.vtu │ │ │ ├── mb_1_0.vtp │ │ │ ├── mb_2_0.vtp │ │ │ └── mb_3_0.vtt │ ├── monkey_curves.abc │ ├── multi-file │ │ ├── cube-part1of2.glb │ │ ├── cube-part1of3.glb │ │ ├── cube-part2of2.glb │ │ ├── cube-part2of3.glb │ │ ├── cube-part3of3.glb │ │ ├── tet-part1of2.glb │ │ ├── tet-part1of3.glb │ │ ├── tet-part2of2.glb │ │ ├── tet-part2of3.glb │ │ └── tet-part3of3.glb │ ├── multi │ │ ├── dragon.vtu │ │ ├── suzanne.obj │ │ ├── vase_4comp.vti │ │ ├── zcow.vtp │ │ └── zsuzanne.stl │ ├── negative_range_animated.e │ ├── normal.png │ ├── normalMapping.fbx │ ├── offset-flat-box.glb │ ├── palermo_park_1k.hdr │ ├── palermo_park_1k.tif │ ├── pdiag.vtu │ ├── phong_cube.fbx │ ├── points.ply │ ├── pointsCloud.gltf │ ├── pointsCloud.vtp │ ├── pointsCloud.vtu │ ├── primitives.usda │ ├── primitivesZ.usda │ ├── punch.fbx │ ├── purpose.usdc │ ├── red.jpg │ ├── red_mod.jpg │ ├── red_translucent_monkey.bin │ ├── red_translucent_monkey.gltf │ ├── samplePTS.pts │ ├── shanghai_bund_1k.hdr │ ├── single_timestep.e │ ├── skin.png │ ├── small.ex2 │ ├── small.splat │ ├── small.usdz │ ├── soldier_animations.mdl │ ├── sphere_points.vdb │ ├── suzanne.abc │ ├── suzanne.drc │ ├── suzanne.mtl │ ├── suzanne.not_supported │ ├── suzanne.obj │ ├── suzanne.ply │ ├── suzanne.stl │ ├── suzanne.usd │ ├── suzanneRGBA.ply │ ├── suzanne_upper.STL │ ├── teapot.off │ ├── temperature_grid.nc │ ├── tensors.vti │ ├── tetrahedron, with commas & spaces.stl │ ├── tetrahedron_non_facevarying_uv.abc │ ├── texturedCube.fbx │ ├── textures │ │ ├── tea_set_01_arm_2k.jpg │ │ └── tea_set_01_diff_2k.jpg │ ├── toTerminalText-rgb.png │ ├── toTerminalText-rgb.txt │ ├── toTerminalText-rgba.png │ ├── toTerminalText-rgba.txt │ ├── truncated_gzip.spz │ ├── tube_254bones.glb │ ├── two_quads_interp.usda │ ├── unsupportedFile.dummy │ ├── v_rock2.mdl │ ├── vase_4comp.vti │ ├── viridis16.png │ ├── viridis32.hdr │ ├── viridis8.png │ ├── w_medkit_hl.mdl │ ├── waveletArrays.vti │ ├── waveletMaterial.vti │ ├── white_grayscale.png │ ├── world.mtl │ ├── world.obj │ ├── world.png │ ├── world.tga │ ├── world_invalid.obj │ ├── world_tga.mtl │ ├── world_tga.obj │ ├── wrong_spz_gzip_corrupted.spz │ ├── wrong_spz_magic.spz │ ├── wrong_spz_version.spz │ ├── xcaf-colors.stp │ ├── xcaf-colors.xbf │ ├── xform_anim.abc │ └── zombie.mdl ├── recordings │ ├── TestHOMEInteractionDropHDRICollapse.log.in │ ├── TestInteractionActors.log │ ├── TestInteractionAndCLIBlending.log │ ├── TestInteractionAnimation.log │ ├── TestInteractionAnimationCameraMovement.log │ ├── TestInteractionAnimationCycleAnimation.log │ ├── TestInteractionAnimationCycleAnimationSingle.log │ ├── TestInteractionAnimationDropHDRI.log.in │ ├── TestInteractionAnimationFBXBone.log │ ├── TestInteractionAnimationFast.log │ ├── TestInteractionAnimationFrameRate.log │ ├── TestInteractionAnimationFrameRateSkip.log │ ├── TestInteractionAnimationIndexDeprecatedCycleAnimation.log │ ├── TestInteractionAnimationInvert.log │ ├── TestInteractionAnimationNotStopped.log │ ├── TestInteractionAnimationSlow.log │ ├── TestInteractionAxesGridToggle.log │ ├── TestInteractionCameraHotkeys.log │ ├── TestInteractionCameraUpdate.log │ ├── TestInteractionCheatsheetAnimationName.log │ ├── TestInteractionCheatsheetBlackBG.log │ ├── TestInteractionCheatsheetCentered.log │ ├── TestInteractionCheatsheetConfigFile.log │ ├── TestInteractionCheatsheetCycle.log │ ├── TestInteractionCheatsheetNoFile.log │ ├── TestInteractionCheatsheetOpacity.log │ ├── TestInteractionCheatsheetScalars.log │ ├── TestInteractionCheatsheetWhiteBG.log │ ├── TestInteractionConfigFileAndCommand.log │ ├── TestInteractionConfigFileBindings.log │ ├── TestInteractionConfigFileImperative.log │ ├── TestInteractionConfigFileImperativeNoData.log │ ├── TestInteractionConfigFileMulti.log │ ├── TestInteractionConfigFileNoColorBar.log │ ├── TestInteractionConfigFileOptional.log │ ├── TestInteractionConsoleAutoComplete.log │ ├── TestInteractionConsoleAutoCompleteCamera.log │ ├── TestInteractionConsoleAutoCompleteCandidates.log │ ├── TestInteractionConsoleAutoCompleteColoring.log │ ├── TestInteractionConsoleAutoCompleteDirCaseInsensitiveLowercaseF.log │ ├── TestInteractionConsoleAutoCompleteDirCaseInsensitiveUppercaseF.log │ ├── TestInteractionConsoleAutoCompleteDirCaseSensitive.log │ ├── TestInteractionConsoleAutoCompleteFilesystem.log │ ├── TestInteractionConsoleAutoCompleteFilesystemError.log │ ├── TestInteractionConsoleAutoCompleteHelp.log │ ├── TestInteractionConsoleAutoCompleteHide.log │ ├── TestInteractionConsoleAutoCompleteNoMatch.log │ ├── TestInteractionConsoleAutoCompleteReaderOptions.log │ ├── TestInteractionConsoleAutoCompleteSetDisplayCompl.log │ ├── TestInteractionConsoleAutoCompleteSetOptions.log │ ├── TestInteractionConsoleAutoCompleteToggleOptions.log │ ├── TestInteractionConsoleAutoCompleteTokenizeError.log │ ├── TestInteractionConsoleCamera.log │ ├── TestInteractionConsoleClear.log │ ├── TestInteractionConsoleEmptyCommand.log │ ├── TestInteractionConsoleHistory.log │ ├── TestInteractionConsoleHistoryEmpty.log │ ├── TestInteractionConsoleHistoryHide.log │ ├── TestInteractionConsoleHistoryHide2.log │ ├── TestInteractionConsoleInvalidCommand.log │ ├── TestInteractionConsoleInvalidOption.log │ ├── TestInteractionConsoleLoadNext.log │ ├── TestInteractionConsoleOpen.log │ ├── TestInteractionConsoleOpenExit.log │ ├── TestInteractionConsoleOpenWarningClick.log │ ├── TestInteractionConsoleOpenWarningKeyboard.log │ ├── TestInteractionConsoleOverCheatSheet.log │ ├── TestInteractionConsoleReload.log │ ├── TestInteractionConsoleReload2.log │ ├── TestInteractionConsoleRender.log │ ├── TestInteractionConsoleScrollbar.log │ ├── TestInteractionConsoleToggleGrid.log │ ├── TestInteractionConsoleTypingSceneInfo.log │ ├── TestInteractionCorrectCameraForVolumeSwitch.log │ ├── TestInteractionCycleAnimationNoAnimation.log │ ├── TestInteractionCycleAnimationOneAnimation.log │ ├── TestInteractionCycleBlending.log │ ├── TestInteractionCycleCell.log │ ├── TestInteractionCycleCellInvalidIndex.log │ ├── TestInteractionCycleComp.log │ ├── TestInteractionCycleScalars.log │ ├── TestInteractionCycleScalarsCompCheck.log │ ├── TestInteractionCycleVerbose.log │ ├── TestInteractionCycleVerboseLevelsUsingBinding.log │ ├── TestInteractionDirectory.log │ ├── TestInteractionDirectoryEmpty.log │ ├── TestInteractionDirectoryEmptyVerbose.log │ ├── TestInteractionDirectoryLoop.log │ ├── TestInteractionDragRotateVertical.log │ ├── TestInteractionDropFileBackslashes.log.in │ ├── TestInteractionDropFileWithQuotes.log │ ├── TestInteractionDropFiles.log.in │ ├── TestInteractionDropHDRI.log.in │ ├── TestInteractionDropHDRIExr.log.in │ ├── TestInteractionDropHDRIInvert.log.in │ ├── TestInteractionDropHDRIModifiers.log.in │ ├── TestInteractionDropHDRIMulti.log.in │ ├── TestInteractionDropSameFiles.log.in │ ├── TestInteractionDumpSceneState.log │ ├── TestInteractionElevationCameraRotation.log │ ├── TestInteractionEmptyDrop.log │ ├── TestInteractionEmptyLoadParentDirectory.log │ ├── TestInteractionFileOpen.log │ ├── TestInteractionFocalPointPickingDefault.log │ ├── TestInteractionFocalPointPickingPoints.log │ ├── TestInteractionFocalPointPickingShift.log │ ├── TestInteractionHDRIBlur.log │ ├── TestInteractionHDRICache.log │ ├── TestInteractionHDRIChange.log │ ├── TestInteractionHDRIFullFromNone.log │ ├── TestInteractionHDRILoop.log │ ├── TestInteractionHDRIMove.log │ ├── TestInteractionHDRINone.log │ ├── TestInteractionHDRIRaytracingFullFromNone.log │ ├── TestInteractionHDRIRaytracingLoop.log │ ├── TestInteractionHDRIRaytracingRemoveAmbient.log │ ├── TestInteractionHDRIRaytracingRemoveBoth.log │ ├── TestInteractionHDRIRaytracingRemoveSkybox.log │ ├── TestInteractionHDRIReload.log │ ├── TestInteractionHDRIRemoveAmbient.log │ ├── TestInteractionHDRIRemoveBoth.log │ ├── TestInteractionHDRIRemoveSkybox.log │ ├── TestInteractionInitUpVectorOption.log │ ├── TestInteractionInvalidComponent.log │ ├── TestInteractionInvalidFile.log │ ├── TestInteractionInvertZoom.log │ ├── TestInteractionLightIntensity.log │ ├── TestInteractionLoadParentDirectory.log │ ├── TestInteractionMinimalConsoleBadgeRemains.log │ ├── TestInteractionMinimalConsoleEscape.log │ ├── TestInteractionMinimalConsoleInvalidCommand.log │ ├── TestInteractionMinimalConsoleOpen.log │ ├── TestInteractionMinimalConsoleOverCheatSheet.log │ ├── TestInteractionMinimalConsoleOverCheatSheetAndFilename.log │ ├── TestInteractionMinimalConsoleResize.log │ ├── TestInteractionMinimalConsoleReturn.log │ ├── TestInteractionMinimalConsoleValidCommand.log │ ├── TestInteractionMultiFileColoring.log │ ├── TestInteractionMultiFileDrop.log.in │ ├── TestInteractionMultiFileLoadParentDirectory.log │ ├── TestInteractionMultiFileVolume.log │ ├── TestInteractionNoModelScrollBar.log │ ├── TestInteractionNoModelScrollWheel.log │ ├── TestInteractionOpacity.log │ ├── TestInteractionOrthographicProjection.log │ ├── TestInteractionPanWithShift.log │ ├── TestInteractionPointCloud.log │ ├── TestInteractionPointCloudTAA.log │ ├── TestInteractionPointSpritesCycle.log │ ├── TestInteractionPostFX.log │ ├── TestInteractionProgressReload.log │ ├── TestInteractionRaytracingDenoise.log │ ├── TestInteractionReload.log │ ├── TestInteractionResetCamera.log │ ├── TestInteractionResetCameraWithCameraIndex.log │ ├── TestInteractionRollCameraRotation.log │ ├── TestInteractionRotateCamera90.log │ ├── TestInteractionRotateCameraMinus90.log │ ├── TestInteractionSimpleExit.log │ ├── TestInteractionStochasticTAA.log │ ├── TestInteractionSwitchFileCameraKeepingByConfig.log │ ├── TestInteractionSwitchFileNextCameraKeeping.log │ ├── TestInteractionSwitchFileNoCameraKeeping.log │ ├── TestInteractionSwitchFilePrevCameraKeeping.log │ ├── TestInteractionTAA.log │ ├── TestInteractionTAADolly.log │ ├── TestInteractionTAAMiddleClick.log │ ├── TestInteractionTensorsCycleComp.log │ ├── TestInteractionTimer.log │ ├── TestInteractionTrackball.log │ ├── TestInteractionTrackballBind.log │ ├── TestInteractionVerboseLevelPreservedOnReload.log │ ├── TestInteractionVerboseWatchUnwatch.log │ ├── TestInteractionVerticalDragRotate.log │ ├── TestInteractionVolumeAfterColoring.log │ ├── TestInteractionVolumeCycle.log │ ├── TestInteractionVolumeInverse.log │ ├── TestInteractionZoomToMouse.log │ ├── TestInteractionZoomToggleOrthographicProjection.log │ ├── TestSDKEngineRecreation.log │ ├── TestSDKInteractionDirectory.log │ ├── TestSDKInteractorCallBack.log.in │ ├── TestSDKInteractorCallBackConsoleException.log │ ├── TestSDKInteractorDropFullScene.log.in │ ├── TestScreenshot.log │ ├── TestScreenshotMinimal.log │ └── TestUSDZMaterialsInterationReload.log └── scripts │ ├── TestCommandScriptAlias.txt │ ├── TestCommandScriptAzimuth.txt │ ├── TestCommandScriptBasic.txt │ ├── TestCommandScriptElevation.txt │ ├── TestCommandScriptHelp.txt │ ├── TestCommandScriptHelpInvalid.txt │ ├── TestCommandScriptInvalid.txt │ ├── TestCommandScriptInvalidReaderOptions.txt │ ├── TestCommandScriptParseOptionalBoolExtraArg.txt │ ├── TestCommandScriptPrintColoring.txt │ ├── TestCommandScriptPrintMesh.txt │ ├── TestCommandScriptPrintOptions.txt │ ├── TestCommandScriptPrintScene.txt │ ├── TestCommandScriptRaytracing.txt │ ├── TestCommandScriptRemoveCurrentFileGroup.txt │ ├── TestCommandScriptRemoveFileGroups.txt │ ├── TestCommandScriptReset.txt │ ├── TestCommandScriptVerboseMultiAnimationTimeRange.txt │ ├── TestHOMECommandScript.txt │ └── TestVDBCommandScriptReaderOptions.txt ├── vcpkg.json ├── vtkext ├── CMakeLists.txt ├── private │ ├── CMakeLists.txt │ └── module │ │ ├── CMakeLists.txt │ │ ├── F3DColoringInfoHandler.cxx │ │ ├── F3DColoringInfoHandler.h │ │ ├── F3DLog.cxx │ │ ├── F3DLog.h │ │ ├── F3DStyle.cxx │ │ ├── F3DStyle.h │ │ ├── Testing │ │ ├── CMakeLists.txt │ │ ├── TestF3DBitonicSort.cxx │ │ ├── TestF3DCachedTexturesPrint.cxx │ │ ├── TestF3DEXRMemReader.cxx │ │ ├── TestF3DEXRReader.cxx │ │ ├── TestF3DEXRReaderInvalid.cxx │ │ ├── TestF3DFpsCounter.cxx │ │ ├── TestF3DGenericImporter.cxx │ │ ├── TestF3DInteractorEventRecorder.cxx │ │ ├── TestF3DLog.cxx │ │ ├── TestF3DMetaImporterAnimation.cxx │ │ ├── TestF3DMetaImporterMultiColoring.cxx │ │ ├── TestF3DObjectFactory.cxx │ │ ├── TestF3DOpenGLGridMapper.cxx │ │ ├── TestF3DRenderPass.cxx │ │ ├── TestF3DRendererWithColoring.cxx │ │ ├── TestF3DWebPMemReader.cxx │ │ ├── TestF3DWebPReader.cxx │ │ └── TestF3DWebPReaderInvalid.cxx │ │ ├── glsl │ │ ├── vtkF3DComputeDepthCS.glsl │ │ ├── vtkF3DImguiFS.glsl │ │ ├── vtkF3DImguiVS.glsl │ │ ├── vtkF3DPointSplatVS.glsl │ │ └── vtkF3DRandomFS.glsl │ │ ├── vtk.module │ │ ├── vtkF3DAndroidLogOutputWindow.cxx │ │ ├── vtkF3DAndroidLogOutputWindow.h │ │ ├── vtkF3DCachedLUTTexture.cxx │ │ ├── vtkF3DCachedLUTTexture.h │ │ ├── vtkF3DCachedSpecularTexture.cxx │ │ ├── vtkF3DCachedSpecularTexture.h │ │ ├── vtkF3DConsoleOutputWindow.cxx │ │ ├── vtkF3DConsoleOutputWindow.h │ │ ├── vtkF3DEGLRenderWindow.cxx │ │ ├── vtkF3DEGLRenderWindow.h │ │ ├── vtkF3DEXRReader.cxx │ │ ├── vtkF3DEXRReader.h │ │ ├── vtkF3DExternalRenderWindow.cxx │ │ ├── vtkF3DExternalRenderWindow.h │ │ ├── vtkF3DGLXRenderWindow.cxx │ │ ├── vtkF3DGLXRenderWindow.h │ │ ├── vtkF3DGenericImporter.cxx │ │ ├── vtkF3DGenericImporter.h │ │ ├── vtkF3DHexagonalBokehBlurPass.cxx │ │ ├── vtkF3DHexagonalBokehBlurPass.h │ │ ├── vtkF3DImguiActor.cxx │ │ ├── vtkF3DImguiActor.h │ │ ├── vtkF3DImguiConsole.cxx │ │ ├── vtkF3DImguiConsole.h │ │ ├── vtkF3DImguiObserver.cxx │ │ ├── vtkF3DImguiObserver.h │ │ ├── vtkF3DInteractorEventRecorder.cxx │ │ ├── vtkF3DInteractorEventRecorder.h │ │ ├── vtkF3DInteractorStyle.cxx │ │ ├── vtkF3DInteractorStyle.h │ │ ├── vtkF3DMemoryMesh.cxx │ │ ├── vtkF3DMemoryMesh.h │ │ ├── vtkF3DMetaImporter.cxx │ │ ├── vtkF3DMetaImporter.h │ │ ├── vtkF3DNoRenderWindow.cxx │ │ ├── vtkF3DNoRenderWindow.h │ │ ├── vtkF3DObjectFactory.cxx │ │ ├── vtkF3DObjectFactory.h │ │ ├── vtkF3DOpenGLGridMapper.cxx │ │ ├── vtkF3DOpenGLGridMapper.h │ │ ├── vtkF3DOverlayRenderPass.cxx │ │ ├── vtkF3DOverlayRenderPass.h │ │ ├── vtkF3DPointSplatMapper.cxx │ │ ├── vtkF3DPointSplatMapper.h │ │ ├── vtkF3DPolyDataMapper.cxx │ │ ├── vtkF3DPolyDataMapper.h │ │ ├── vtkF3DPostProcessFilter.cxx │ │ ├── vtkF3DPostProcessFilter.h │ │ ├── vtkF3DRenderPass.cxx │ │ ├── vtkF3DRenderPass.h │ │ ├── vtkF3DRenderer.cxx │ │ ├── vtkF3DRenderer.h │ │ ├── vtkF3DSolidBackgroundPass.cxx │ │ ├── vtkF3DSolidBackgroundPass.h │ │ ├── vtkF3DStochasticTransparentPass.cxx │ │ ├── vtkF3DStochasticTransparentPass.h │ │ ├── vtkF3DTAAResolvePass.cxx │ │ ├── vtkF3DTAAResolvePass.h │ │ ├── vtkF3DUIActor.cxx │ │ ├── vtkF3DUIActor.h │ │ ├── vtkF3DUIObserver.cxx │ │ ├── vtkF3DUIObserver.h │ │ ├── vtkF3DUserRenderPass.cxx │ │ ├── vtkF3DUserRenderPass.h │ │ ├── vtkF3DWGLRenderWindow.cxx │ │ ├── vtkF3DWGLRenderWindow.h │ │ ├── vtkF3DWebPReader.cxx │ │ └── vtkF3DWebPReader.h └── public │ ├── CMakeLists.txt │ └── module │ ├── CMakeLists.txt │ ├── F3DUtils.cxx │ ├── F3DUtils.h │ ├── Testing │ ├── CMakeLists.txt │ └── TestF3DBitonicSort.cxx │ ├── glsl │ ├── vtkF3DBitonicSortFunctions.glsl │ ├── vtkF3DBitonicSortGlobalDisperseCS.glsl │ ├── vtkF3DBitonicSortGlobalFlipCS.glsl │ ├── vtkF3DBitonicSortLocalDisperseCS.glsl │ └── vtkF3DBitonicSortLocalSortCS.glsl │ ├── vtk.module │ ├── vtkF3DBitonicSort.cxx │ ├── vtkF3DBitonicSort.h │ ├── vtkF3DFaceVaryingPointDispatcher.cxx │ ├── vtkF3DFaceVaryingPointDispatcher.h │ ├── vtkF3DGLTFImporter.cxx │ ├── vtkF3DGLTFImporter.h │ ├── vtkF3DImporter.cxx │ └── vtkF3DImporter.h ├── webassembly ├── CMakeLists.txt ├── F3DEmscriptenBindings.cxx ├── build.sh └── testing │ ├── CMakeLists.txt │ ├── test.html.in │ ├── test_camera.js │ ├── test_engine.js │ ├── test_image.js │ ├── test_interactor.js │ ├── test_options.js │ ├── test_render.js │ ├── test_scene.js │ ├── test_splats.js │ └── utils.js └── winshellext ├── CMakeLists.txt ├── F3DShellExtension.cxx ├── F3DShellExtension.def ├── F3DShellExtensionClassFactory.h ├── F3DThumbnailProvider.cxx ├── F3DThumbnailProvider.h └── RegistryHelpers.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-format-ignore: -------------------------------------------------------------------------------- 1 | # ignore vendored libraries: 2 | ./external/**/* 3 | -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.codespellrc -------------------------------------------------------------------------------- /.cppcheck.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.cppcheck.supp -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help_wanted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/ISSUE_TEMPLATE/help_wanted.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/ISSUE_TEMPLATE/new_release.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/android-ci/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/android-ci/action.yml -------------------------------------------------------------------------------- /.github/actions/coverage-ci/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/coverage-ci/action.yml -------------------------------------------------------------------------------- /.github/actions/f3d-dependencies/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/f3d-dependencies/action.yml -------------------------------------------------------------------------------- /.github/actions/generic-ci/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/generic-ci/action.yml -------------------------------------------------------------------------------- /.github/actions/occt-install-dep/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/occt-install-dep/action.yml -------------------------------------------------------------------------------- /.github/actions/python-ci/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/python-ci/action.yml -------------------------------------------------------------------------------- /.github/actions/sanitizer-ci/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/sanitizer-ci/action.yml -------------------------------------------------------------------------------- /.github/actions/tbb-install-dep/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/tbb-install-dep/action.yml -------------------------------------------------------------------------------- /.github/actions/usd-install-dep/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/usd-install-dep/action.yml -------------------------------------------------------------------------------- /.github/actions/vtk-dependencies/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/vtk-dependencies/action.yml -------------------------------------------------------------------------------- /.github/actions/vtk-install-dep/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/vtk-install-dep/action.yml -------------------------------------------------------------------------------- /.github/actions/wasm-ci/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/wasm-ci/action.yml -------------------------------------------------------------------------------- /.github/actions/webp-install-dep/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/webp-install-dep/action.yml -------------------------------------------------------------------------------- /.github/actions/zlib-install-dep/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/actions/zlib-install-dep/action.yml -------------------------------------------------------------------------------- /.github/baselines/install_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/baselines/install_output.png -------------------------------------------------------------------------------- /.github/workflows/build-docker-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/workflows/build-docker-images.yml -------------------------------------------------------------------------------- /.github/workflows/build-website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/workflows/build-website.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/clean-caches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/workflows/clean-caches.yml -------------------------------------------------------------------------------- /.github/workflows/labelize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/workflows/labelize.yml -------------------------------------------------------------------------------- /.github/workflows/nightly_vtk_master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/workflows/nightly_vtk_master.yml -------------------------------------------------------------------------------- /.github/workflows/public-api-warn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/workflows/public-api-warn.yml -------------------------------------------------------------------------------- /.github/workflows/style-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/workflows/style-checks.yml -------------------------------------------------------------------------------- /.github/workflows/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.github/workflows/versions.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.gitignore -------------------------------------------------------------------------------- /.lsan.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.lsan.supp -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | testing/configs/invalid.json 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.tsan.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/.tsan.supp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/README.md -------------------------------------------------------------------------------- /THIRD_PARTY_LICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/THIRD_PARTY_LICENSES.md -------------------------------------------------------------------------------- /application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/CMakeLists.txt -------------------------------------------------------------------------------- /application/F3DColorMapTools.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DColorMapTools.cxx -------------------------------------------------------------------------------- /application/F3DColorMapTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DColorMapTools.h -------------------------------------------------------------------------------- /application/F3DConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DConfig.h.in -------------------------------------------------------------------------------- /application/F3DConfigFileTools.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DConfigFileTools.cxx -------------------------------------------------------------------------------- /application/F3DConfigFileTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DConfigFileTools.h -------------------------------------------------------------------------------- /application/F3DException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DException.h -------------------------------------------------------------------------------- /application/F3DNSDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DNSDelegate.h -------------------------------------------------------------------------------- /application/F3DNSDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DNSDelegate.mm -------------------------------------------------------------------------------- /application/F3DOptionsTools.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DOptionsTools.cxx -------------------------------------------------------------------------------- /application/F3DOptionsTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DOptionsTools.h -------------------------------------------------------------------------------- /application/F3DPluginsTools.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DPluginsTools.cxx -------------------------------------------------------------------------------- /application/F3DPluginsTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DPluginsTools.h -------------------------------------------------------------------------------- /application/F3DStarter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DStarter.cxx -------------------------------------------------------------------------------- /application/F3DStarter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DStarter.h -------------------------------------------------------------------------------- /application/F3DSystemTools.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DSystemTools.cxx -------------------------------------------------------------------------------- /application/F3DSystemTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/F3DSystemTools.h -------------------------------------------------------------------------------- /application/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/main.cxx -------------------------------------------------------------------------------- /application/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/testing/CMakeLists.txt -------------------------------------------------------------------------------- /application/testing/test_watch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/testing/test_watch.ps1 -------------------------------------------------------------------------------- /application/testing/test_watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/application/testing/test_watch.sh -------------------------------------------------------------------------------- /cmake/application-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/application-config.cmake -------------------------------------------------------------------------------- /cmake/f3dConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/f3dConfig.cmake.in -------------------------------------------------------------------------------- /cmake/f3dEmbed.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/f3dEmbed.cmake -------------------------------------------------------------------------------- /cmake/f3dOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/f3dOptions.cmake -------------------------------------------------------------------------------- /cmake/f3dPlugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/f3dPlugin.cmake -------------------------------------------------------------------------------- /cmake/f3dVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/f3dVersion.cmake -------------------------------------------------------------------------------- /cmake/library-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/library-config.cmake -------------------------------------------------------------------------------- /cmake/plugin.cxx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/plugin.cxx.in -------------------------------------------------------------------------------- /cmake/plugin.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/plugin.desktop.in -------------------------------------------------------------------------------- /cmake/plugin.thumbnailer.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/plugin.thumbnailer.in -------------------------------------------------------------------------------- /cmake/pluginsdk-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/pluginsdk-config.cmake -------------------------------------------------------------------------------- /cmake/readerBoilerPlate.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/cmake/readerBoilerPlate.h.in -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/CHANGELOG.md -------------------------------------------------------------------------------- /doc/dev/03-GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/dev/03-GETTING_STARTED.md -------------------------------------------------------------------------------- /doc/dev/04-BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/dev/04-BUILD.md -------------------------------------------------------------------------------- /doc/dev/05-TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/dev/05-TESTING.md -------------------------------------------------------------------------------- /doc/dev/06-TOOLING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/dev/06-TOOLING.md -------------------------------------------------------------------------------- /doc/dev/07-ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/dev/07-ARCHITECTURE.md -------------------------------------------------------------------------------- /doc/dev/08-CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/dev/08-CODING_STYLE.md -------------------------------------------------------------------------------- /doc/dev/09-ROADMAPS_AND_RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/dev/09-ROADMAPS_AND_RELEASES.md -------------------------------------------------------------------------------- /doc/dev/10-GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/dev/10-GOVERNANCE.md -------------------------------------------------------------------------------- /doc/dev/11-MAINTAINERS_AND_CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/dev/11-MAINTAINERS_AND_CONTRIBUTORS.md -------------------------------------------------------------------------------- /doc/dev/12-MENTORING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/dev/12-MENTORING.md -------------------------------------------------------------------------------- /doc/dev/13-BUILD_WASM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/dev/13-BUILD_WASM.md -------------------------------------------------------------------------------- /doc/libf3d/01-OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/libf3d/01-OVERVIEW.md -------------------------------------------------------------------------------- /doc/libf3d/02-CLASSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/libf3d/02-CLASSES.md -------------------------------------------------------------------------------- /doc/libf3d/03-OPTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/libf3d/03-OPTIONS.md -------------------------------------------------------------------------------- /doc/libf3d/04-LANGUAGE_BINDINGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/libf3d/04-LANGUAGE_BINDINGS.md -------------------------------------------------------------------------------- /doc/libf3d/05-PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/libf3d/05-PLUGINS.md -------------------------------------------------------------------------------- /doc/user/01-QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/01-QUICKSTART.md -------------------------------------------------------------------------------- /doc/user/02-SUPPORTED_FORMATS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/02-SUPPORTED_FORMATS.md -------------------------------------------------------------------------------- /doc/user/03-OPTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/03-OPTIONS.md -------------------------------------------------------------------------------- /doc/user/04-INTERACTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/04-INTERACTIONS.md -------------------------------------------------------------------------------- /doc/user/05-ANIMATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/05-ANIMATIONS.md -------------------------------------------------------------------------------- /doc/user/06-CONFIGURATION_FILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/06-CONFIGURATION_FILE.md -------------------------------------------------------------------------------- /doc/user/07-COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/07-COMMANDS.md -------------------------------------------------------------------------------- /doc/user/08-PARSING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/08-PARSING.md -------------------------------------------------------------------------------- /doc/user/09-COLOR_MAPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/09-COLOR_MAPS.md -------------------------------------------------------------------------------- /doc/user/10-FINAL_SHADER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/10-FINAL_SHADER.md -------------------------------------------------------------------------------- /doc/user/11-DESKTOP_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/11-DESKTOP_INTEGRATION.md -------------------------------------------------------------------------------- /doc/user/12-PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/doc/user/12-PLUGINS.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/libf3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/CMakeLists.txt -------------------------------------------------------------------------------- /examples/libf3d/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /examples/libf3d/cpp/check-engine/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/check-engine/main.cxx -------------------------------------------------------------------------------- /examples/libf3d/cpp/external-glfw/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/external-glfw/main.cxx -------------------------------------------------------------------------------- /examples/libf3d/cpp/fltk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/fltk/CMakeLists.txt -------------------------------------------------------------------------------- /examples/libf3d/cpp/fltk/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/fltk/main.cxx -------------------------------------------------------------------------------- /examples/libf3d/cpp/multi-files/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/multi-files/main.cxx -------------------------------------------------------------------------------- /examples/libf3d/cpp/qml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/qml/CMakeLists.txt -------------------------------------------------------------------------------- /examples/libf3d/cpp/qml/F3DRenderer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/qml/F3DRenderer.cxx -------------------------------------------------------------------------------- /examples/libf3d/cpp/qml/F3DRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/qml/F3DRenderer.h -------------------------------------------------------------------------------- /examples/libf3d/cpp/qml/F3DView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/qml/F3DView.cxx -------------------------------------------------------------------------------- /examples/libf3d/cpp/qml/F3DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/qml/F3DView.h -------------------------------------------------------------------------------- /examples/libf3d/cpp/qml/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/qml/Main.qml -------------------------------------------------------------------------------- /examples/libf3d/cpp/qml/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/qml/main.cxx -------------------------------------------------------------------------------- /examples/libf3d/cpp/qt6/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/qt6/CMakeLists.txt -------------------------------------------------------------------------------- /examples/libf3d/cpp/qt6/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/qt6/main.cxx -------------------------------------------------------------------------------- /examples/libf3d/cpp/render-image/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/render-image/main.cxx -------------------------------------------------------------------------------- /examples/libf3d/cpp/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/tests/CMakeLists.txt -------------------------------------------------------------------------------- /examples/libf3d/cpp/tests/baselines/cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/tests/baselines/cow.png -------------------------------------------------------------------------------- /examples/libf3d/cpp/tests/check.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/tests/check.cxx -------------------------------------------------------------------------------- /examples/libf3d/cpp/tests/data/cow.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/cpp/tests/data/cow.vtp -------------------------------------------------------------------------------- /examples/libf3d/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/python/CMakeLists.txt -------------------------------------------------------------------------------- /examples/libf3d/python/img-cmp/img_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/python/img-cmp/img_cmp.py -------------------------------------------------------------------------------- /examples/libf3d/python/qml/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/python/qml/Main.qml -------------------------------------------------------------------------------- /examples/libf3d/python/qml/minimal_qml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/python/qml/minimal_qml.py -------------------------------------------------------------------------------- /examples/libf3d/python/qt6/minimal_qt6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/python/qt6/minimal_qt6.py -------------------------------------------------------------------------------- /examples/libf3d/python/tests/data/cow.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/python/tests/data/cow.vtp -------------------------------------------------------------------------------- /examples/libf3d/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/web/index.html -------------------------------------------------------------------------------- /examples/libf3d/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/web/package-lock.json -------------------------------------------------------------------------------- /examples/libf3d/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/web/package.json -------------------------------------------------------------------------------- /examples/libf3d/web/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/web/src/main.js -------------------------------------------------------------------------------- /examples/libf3d/web/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/libf3d/web/vite.config.js -------------------------------------------------------------------------------- /examples/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /examples/plugins/example-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/examples/plugins/example-plugin/README.md -------------------------------------------------------------------------------- /examples/plugins/example-plugin/data.expl: -------------------------------------------------------------------------------- 1 | 0 0 0 2 | 1 1 1 3 | -2.4 -1.0 1.5 4 | -------------------------------------------------------------------------------- /external/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/.clang-tidy -------------------------------------------------------------------------------- /external/VERSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/VERSIONS.md -------------------------------------------------------------------------------- /external/cxxopts/cxxopts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/cxxopts/cxxopts.hpp -------------------------------------------------------------------------------- /external/dmon/dmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/dmon/dmon.h -------------------------------------------------------------------------------- /external/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/imgui/imconfig.h -------------------------------------------------------------------------------- /external/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/imgui/imgui.cpp -------------------------------------------------------------------------------- /external/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/imgui/imgui.h -------------------------------------------------------------------------------- /external/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /external/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /external/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/imgui/imgui_internal.h -------------------------------------------------------------------------------- /external/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /external/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /external/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /external/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /external/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /external/nlohmann_json/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/nlohmann_json/nlohmann/json.hpp -------------------------------------------------------------------------------- /external/tinyfiledialogs/.clang-tidy: -------------------------------------------------------------------------------- 1 | Checks: '-*,cppcoreguidelines-avoid-goto' 2 | -------------------------------------------------------------------------------- /external/tinyfiledialogs/tinyfiledialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/external/tinyfiledialogs/tinyfiledialogs.h -------------------------------------------------------------------------------- /java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/java/CMakeLists.txt -------------------------------------------------------------------------------- /java/Camera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/java/Camera.java -------------------------------------------------------------------------------- /java/Engine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/java/Engine.java -------------------------------------------------------------------------------- /java/F3DJavaBindings.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/java/F3DJavaBindings.cxx -------------------------------------------------------------------------------- /java/Options.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/java/Options.java -------------------------------------------------------------------------------- /java/Scene.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/java/Scene.java -------------------------------------------------------------------------------- /java/Window.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/java/Window.java -------------------------------------------------------------------------------- /java/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/java/testing/CMakeLists.txt -------------------------------------------------------------------------------- /java/testing/TestJavaBindings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/java/testing/TestJavaBindings.java -------------------------------------------------------------------------------- /library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/CMakeLists.txt -------------------------------------------------------------------------------- /library/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/options.json -------------------------------------------------------------------------------- /library/plugin/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/plugin/plugin.h -------------------------------------------------------------------------------- /library/plugin/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/plugin/reader.h -------------------------------------------------------------------------------- /library/private/animationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/animationManager.h -------------------------------------------------------------------------------- /library/private/camera_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/camera_impl.h -------------------------------------------------------------------------------- /library/private/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/config.h -------------------------------------------------------------------------------- /library/private/context_cocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/context_cocoa.h -------------------------------------------------------------------------------- /library/private/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/factory.h -------------------------------------------------------------------------------- /library/private/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/init.h -------------------------------------------------------------------------------- /library/private/interactor_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/interactor_impl.h -------------------------------------------------------------------------------- /library/private/levenshtein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/levenshtein.h -------------------------------------------------------------------------------- /library/private/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/macros.h -------------------------------------------------------------------------------- /library/private/options_generated.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/options_generated.h.in -------------------------------------------------------------------------------- /library/private/options_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/options_tools.h -------------------------------------------------------------------------------- /library/private/scene_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/scene_impl.h -------------------------------------------------------------------------------- /library/private/window_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/private/window_impl.h -------------------------------------------------------------------------------- /library/public/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/camera.h -------------------------------------------------------------------------------- /library/public/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/context.h -------------------------------------------------------------------------------- /library/public/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/engine.h -------------------------------------------------------------------------------- /library/public/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/exception.h -------------------------------------------------------------------------------- /library/public/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/image.h -------------------------------------------------------------------------------- /library/public/interactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/interactor.h -------------------------------------------------------------------------------- /library/public/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/log.h -------------------------------------------------------------------------------- /library/public/options.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/options.h.in -------------------------------------------------------------------------------- /library/public/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/scene.h -------------------------------------------------------------------------------- /library/public/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/types.h -------------------------------------------------------------------------------- /library/public/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/utils.h -------------------------------------------------------------------------------- /library/public/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/public/window.h -------------------------------------------------------------------------------- /library/src/animationManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/animationManager.cxx -------------------------------------------------------------------------------- /library/src/camera_impl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/camera_impl.cxx -------------------------------------------------------------------------------- /library/src/config.cxx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/config.cxx.in -------------------------------------------------------------------------------- /library/src/context.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/context.cxx -------------------------------------------------------------------------------- /library/src/context_cocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/context_cocoa.mm -------------------------------------------------------------------------------- /library/src/engine.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/engine.cxx -------------------------------------------------------------------------------- /library/src/factory.cxx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/factory.cxx.in -------------------------------------------------------------------------------- /library/src/image.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/image.cxx -------------------------------------------------------------------------------- /library/src/init.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/init.cxx -------------------------------------------------------------------------------- /library/src/interactor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/interactor.cxx -------------------------------------------------------------------------------- /library/src/interactor_impl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/interactor_impl.cxx -------------------------------------------------------------------------------- /library/src/levenshtein.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/levenshtein.cxx -------------------------------------------------------------------------------- /library/src/log.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/log.cxx -------------------------------------------------------------------------------- /library/src/options.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/options.cxx -------------------------------------------------------------------------------- /library/src/scene_impl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/scene_impl.cxx -------------------------------------------------------------------------------- /library/src/types.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/types.cxx -------------------------------------------------------------------------------- /library/src/utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/utils.cxx -------------------------------------------------------------------------------- /library/src/window_impl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/src/window_impl.cxx -------------------------------------------------------------------------------- /library/testing/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/.clang-format -------------------------------------------------------------------------------- /library/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/CMakeLists.txt -------------------------------------------------------------------------------- /library/testing/PseudoUnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/PseudoUnitTest.h -------------------------------------------------------------------------------- /library/testing/TestPseudoUnitTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestPseudoUnitTest.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKAnimation.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKAnimation.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKCamera.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKCamera.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKCompareWithFile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKCompareWithFile.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKConsole.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKConsole.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKDropZone.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKDropZone.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKDropZoneMinSize.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKDropZoneMinSize.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKDropZoneNoLogo.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKDropZoneNoLogo.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKDynamicFontFile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKDynamicFontFile.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKDynamicHDRI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKDynamicHDRI.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKEngine.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKEngine.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKEngineExceptions.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKEngineExceptions.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKEngineRecreation.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKEngineRecreation.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKExternalWindowQT.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKExternalWindowQT.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKHelpers.h -------------------------------------------------------------------------------- /library/testing/TestSDKImage.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKImage.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKLog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKLog.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKMultiColoring.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKMultiColoring.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKMultiOptions.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKMultiOptions.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKOptions.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKOptions.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKOptionsIO.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKOptionsIO.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKScene.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKScene.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKSceneFromMemory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKSceneFromMemory.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKSceneInvalid.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKSceneInvalid.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKStartInteractor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKStartInteractor.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKUI.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKUtils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKUtils.cxx -------------------------------------------------------------------------------- /library/testing/TestSDKWindowAuto.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/library/testing/TestSDKWindowAuto.cxx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/package.json -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/alembic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/alembic/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/alembic/f3d-alembic-formats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/alembic/f3d-alembic-formats.xml -------------------------------------------------------------------------------- /plugins/alembic/module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/alembic/module/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/alembic/module/vtk.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/alembic/module/vtk.module -------------------------------------------------------------------------------- /plugins/assimp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/assimp/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/assimp/collada.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/assimp/collada.inl -------------------------------------------------------------------------------- /plugins/assimp/f3d-assimp-formats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/assimp/f3d-assimp-formats.xml -------------------------------------------------------------------------------- /plugins/assimp/module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/assimp/module/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/assimp/module/vtk.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/assimp/module/vtk.module -------------------------------------------------------------------------------- /plugins/draco/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/draco/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/draco/f3d-draco-formats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/draco/f3d-draco-formats.xml -------------------------------------------------------------------------------- /plugins/draco/module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/draco/module/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/draco/module/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/draco/module/Testing/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/draco/module/vtk.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/draco/module/vtk.module -------------------------------------------------------------------------------- /plugins/draco/module/vtkF3DDracoReader.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/draco/module/vtkF3DDracoReader.cxx -------------------------------------------------------------------------------- /plugins/draco/module/vtkF3DDracoReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/draco/module/vtkF3DDracoReader.h -------------------------------------------------------------------------------- /plugins/hdf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/hdf/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/hdf/configs/config.d/10_hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/hdf/configs/config.d/10_hdf.json -------------------------------------------------------------------------------- /plugins/hdf/configs/thumbnail.d/10_hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/hdf/configs/thumbnail.d/10_hdf.json -------------------------------------------------------------------------------- /plugins/hdf/exodus.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/hdf/exodus.inl -------------------------------------------------------------------------------- /plugins/hdf/f3d-hdf-formats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/hdf/f3d-hdf-formats.xml -------------------------------------------------------------------------------- /plugins/hdf/netcdf.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/hdf/netcdf.inl -------------------------------------------------------------------------------- /plugins/native/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/native/f3d-3d-formats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/f3d-3d-formats.xml -------------------------------------------------------------------------------- /plugins/native/f3d-3d-image-formats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/f3d-3d-image-formats.xml -------------------------------------------------------------------------------- /plugins/native/f3d-vtk-formats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/f3d-vtk-formats.xml -------------------------------------------------------------------------------- /plugins/native/mdl.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/mdl.inl -------------------------------------------------------------------------------- /plugins/native/module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/module/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/native/module/vtk.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/module/vtk.module -------------------------------------------------------------------------------- /plugins/native/module/vtkF3DPLYReader.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/module/vtkF3DPLYReader.cxx -------------------------------------------------------------------------------- /plugins/native/module/vtkF3DPLYReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/module/vtkF3DPLYReader.h -------------------------------------------------------------------------------- /plugins/native/module/vtkF3DSPZReader.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/module/vtkF3DSPZReader.cxx -------------------------------------------------------------------------------- /plugins/native/module/vtkF3DSPZReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/module/vtkF3DSPZReader.h -------------------------------------------------------------------------------- /plugins/native/module/vtkF3DSplatReader.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/module/vtkF3DSplatReader.cxx -------------------------------------------------------------------------------- /plugins/native/module/vtkF3DSplatReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/module/vtkF3DSplatReader.h -------------------------------------------------------------------------------- /plugins/native/obj.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/obj.inl -------------------------------------------------------------------------------- /plugins/native/stl.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/native/stl.inl -------------------------------------------------------------------------------- /plugins/occt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/occt/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/occt/FORMAT.inl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/occt/FORMAT.inl.in -------------------------------------------------------------------------------- /plugins/occt/configs/config.d/10_occt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/occt/configs/config.d/10_occt.json -------------------------------------------------------------------------------- /plugins/occt/f3d-occt-formats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/occt/f3d-occt-formats.xml -------------------------------------------------------------------------------- /plugins/occt/module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/occt/module/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/occt/module/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/occt/module/Testing/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/occt/module/vtk.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/occt/module/vtk.module -------------------------------------------------------------------------------- /plugins/occt/module/vtkF3DOCCTReader.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/occt/module/vtkF3DOCCTReader.cxx -------------------------------------------------------------------------------- /plugins/occt/module/vtkF3DOCCTReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/occt/module/vtkF3DOCCTReader.h -------------------------------------------------------------------------------- /plugins/usd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/usd/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/usd/configs/config.d/10_usd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/usd/configs/config.d/10_usd.json -------------------------------------------------------------------------------- /plugins/usd/configs/thumbnail.d/10_usd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/usd/configs/thumbnail.d/10_usd.json -------------------------------------------------------------------------------- /plugins/usd/f3d-usd-formats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/usd/f3d-usd-formats.xml -------------------------------------------------------------------------------- /plugins/usd/module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/usd/module/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/usd/module/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/usd/module/Testing/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/usd/module/vtk.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/usd/module/vtk.module -------------------------------------------------------------------------------- /plugins/usd/module/vtkF3DUSDImporter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/usd/module/vtkF3DUSDImporter.cxx -------------------------------------------------------------------------------- /plugins/usd/module/vtkF3DUSDImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/usd/module/vtkF3DUSDImporter.h -------------------------------------------------------------------------------- /plugins/vdb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/vdb/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/vdb/configs/config.d/10_vdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/vdb/configs/config.d/10_vdb.json -------------------------------------------------------------------------------- /plugins/vdb/configs/thumbnail.d/10_vdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/vdb/configs/thumbnail.d/10_vdb.json -------------------------------------------------------------------------------- /plugins/vdb/f3d-vdb-formats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/vdb/f3d-vdb-formats.xml -------------------------------------------------------------------------------- /plugins/vdb/vdb.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/plugins/vdb/vdb.inl -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/CMakeLists.txt -------------------------------------------------------------------------------- /python/F3DPythonBindings.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/F3DPythonBindings.cxx -------------------------------------------------------------------------------- /python/__init__.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/__init__.py.in -------------------------------------------------------------------------------- /python/cmake/f3dPython.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/cmake/f3dPython.cmake -------------------------------------------------------------------------------- /python/generate_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/generate_stubs.py -------------------------------------------------------------------------------- /python/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/test_generate_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/test_generate_stubs.py -------------------------------------------------------------------------------- /python/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/testing/CMakeLists.txt -------------------------------------------------------------------------------- /python/testing/test_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/testing/test_camera.py -------------------------------------------------------------------------------- /python/testing/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/testing/test_engine.py -------------------------------------------------------------------------------- /python/testing/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/testing/test_image.py -------------------------------------------------------------------------------- /python/testing/test_image_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/testing/test_image_compare.py -------------------------------------------------------------------------------- /python/testing/test_interactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/testing/test_interactor.py -------------------------------------------------------------------------------- /python/testing/test_interactor_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/testing/test_interactor_start.py -------------------------------------------------------------------------------- /python/testing/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/testing/test_log.py -------------------------------------------------------------------------------- /python/testing/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/testing/test_options.py -------------------------------------------------------------------------------- /python/testing/test_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/testing/test_scene.py -------------------------------------------------------------------------------- /python/testing/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/python/testing/test_utils.py -------------------------------------------------------------------------------- /resources/BundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/BundleInfo.plist.in -------------------------------------------------------------------------------- /resources/MonaspaceNeon-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/MonaspaceNeon-Regular.otf -------------------------------------------------------------------------------- /resources/app.f3d.F3D.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/app.f3d.F3D.metainfo.xml -------------------------------------------------------------------------------- /resources/colormaps/cividis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/colormaps/cividis.png -------------------------------------------------------------------------------- /resources/colormaps/cubehelix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/colormaps/cubehelix.png -------------------------------------------------------------------------------- /resources/colormaps/gist_earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/colormaps/gist_earth.png -------------------------------------------------------------------------------- /resources/colormaps/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/colormaps/hot.png -------------------------------------------------------------------------------- /resources/colormaps/inferno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/colormaps/inferno.png -------------------------------------------------------------------------------- /resources/colormaps/licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/colormaps/licenses.md -------------------------------------------------------------------------------- /resources/colormaps/magma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/colormaps/magma.png -------------------------------------------------------------------------------- /resources/colormaps/plasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/colormaps/plasma.png -------------------------------------------------------------------------------- /resources/colormaps/seismic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/colormaps/seismic.png -------------------------------------------------------------------------------- /resources/colormaps/viridis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/colormaps/viridis.png -------------------------------------------------------------------------------- /resources/completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/completion.bash -------------------------------------------------------------------------------- /resources/completion.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/completion.fish -------------------------------------------------------------------------------- /resources/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/completion.zsh -------------------------------------------------------------------------------- /resources/configs/config.d/05_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/configs/config.d/05_all.json -------------------------------------------------------------------------------- /resources/configs/thumbnail.d/05_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/configs/thumbnail.d/05_all.json -------------------------------------------------------------------------------- /resources/defaultHDRI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/defaultHDRI.png -------------------------------------------------------------------------------- /resources/f3d.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/f3d.desktop -------------------------------------------------------------------------------- /resources/f3d.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/f3d.rc -------------------------------------------------------------------------------- /resources/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo-black.png -------------------------------------------------------------------------------- /resources/logo-mono.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo-mono.svg -------------------------------------------------------------------------------- /resources/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo-white.png -------------------------------------------------------------------------------- /resources/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo.icns -------------------------------------------------------------------------------- /resources/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo.ico -------------------------------------------------------------------------------- /resources/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo.svg -------------------------------------------------------------------------------- /resources/logo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo16.png -------------------------------------------------------------------------------- /resources/logo24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo24.png -------------------------------------------------------------------------------- /resources/logo256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo256.png -------------------------------------------------------------------------------- /resources/logo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo32.png -------------------------------------------------------------------------------- /resources/logo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo48.png -------------------------------------------------------------------------------- /resources/logo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logo64.png -------------------------------------------------------------------------------- /resources/logotype-mono.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logotype-mono.svg -------------------------------------------------------------------------------- /resources/logotype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/resources/logotype.svg -------------------------------------------------------------------------------- /testing/baselines/Test3DGSPLY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/Test3DGSPLY.png -------------------------------------------------------------------------------- /testing/baselines/Test3DGSPLYHDRI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/Test3DGSPLYHDRI.png -------------------------------------------------------------------------------- /testing/baselines/Test3DSImporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/Test3DSImporter.png -------------------------------------------------------------------------------- /testing/baselines/Test3MF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/Test3MF.png -------------------------------------------------------------------------------- /testing/baselines/TestAMRDataSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestAMRDataSet.png -------------------------------------------------------------------------------- /testing/baselines/TestAlembic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestAlembic.png -------------------------------------------------------------------------------- /testing/baselines/TestAlembicAnimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestAlembicAnimation.png -------------------------------------------------------------------------------- /testing/baselines/TestAlembicCurves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestAlembicCurves.png -------------------------------------------------------------------------------- /testing/baselines/TestAnimationAutoplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestAnimationAutoplay.png -------------------------------------------------------------------------------- /testing/baselines/TestAxesGridEnable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestAxesGridEnable.png -------------------------------------------------------------------------------- /testing/baselines/TestAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestAxis.png -------------------------------------------------------------------------------- /testing/baselines/TestBREP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestBREP.png -------------------------------------------------------------------------------- /testing/baselines/TestBREPDefines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestBREPDefines.png -------------------------------------------------------------------------------- /testing/baselines/TestBackfaceHidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestBackfaceHidden.png -------------------------------------------------------------------------------- /testing/baselines/TestBackfaceVisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestBackfaceVisible.png -------------------------------------------------------------------------------- /testing/baselines/TestBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestBackground.png -------------------------------------------------------------------------------- /testing/baselines/TestBadRef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestBadRef.png -------------------------------------------------------------------------------- /testing/baselines/TestBinaryBREP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestBinaryBREP.png -------------------------------------------------------------------------------- /testing/baselines/TestCameraClipping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestCameraClipping.png -------------------------------------------------------------------------------- /testing/baselines/TestCameraDirection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestCameraDirection.png -------------------------------------------------------------------------------- /testing/baselines/TestCameraOrtho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestCameraOrtho.png -------------------------------------------------------------------------------- /testing/baselines/TestCameraPersp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestCameraPersp.png -------------------------------------------------------------------------------- /testing/baselines/TestCameraZoomFactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestCameraZoomFactor.png -------------------------------------------------------------------------------- /testing/baselines/TestCityGML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestCityGML.png -------------------------------------------------------------------------------- /testing/baselines/TestCollinearVectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestCollinearVectors.png -------------------------------------------------------------------------------- /testing/baselines/TestColorMap16bits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestColorMap16bits.png -------------------------------------------------------------------------------- /testing/baselines/TestColorMap32bits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestColorMap32bits.png -------------------------------------------------------------------------------- /testing/baselines/TestColorMapFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestColorMapFile.png -------------------------------------------------------------------------------- /testing/baselines/TestColorMapStem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestColorMapStem.png -------------------------------------------------------------------------------- /testing/baselines/TestColormap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestColormap.png -------------------------------------------------------------------------------- /testing/baselines/TestComponentName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestComponentName.png -------------------------------------------------------------------------------- /testing/baselines/TestConfigFileBuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestConfigFileBuild.png -------------------------------------------------------------------------------- /testing/baselines/TestConfigFileHDRI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestConfigFileHDRI.png -------------------------------------------------------------------------------- /testing/baselines/TestConfigImperative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestConfigImperative.png -------------------------------------------------------------------------------- /testing/baselines/TestConfigOrder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestConfigOrder.png -------------------------------------------------------------------------------- /testing/baselines/TestConfigReset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestConfigReset.png -------------------------------------------------------------------------------- /testing/baselines/TestConfigResolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestConfigResolution.png -------------------------------------------------------------------------------- /testing/baselines/TestConfigStemBuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestConfigStemBuild.png -------------------------------------------------------------------------------- /testing/baselines/TestConsoleBadgeError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestConsoleBadgeError.png -------------------------------------------------------------------------------- /testing/baselines/TestConsoleBadgeQuiet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestConsoleBadgeQuiet.png -------------------------------------------------------------------------------- /testing/baselines/TestCustomOptionsNone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestCustomOptionsNone.png -------------------------------------------------------------------------------- /testing/baselines/TestDAE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestDAE.png -------------------------------------------------------------------------------- /testing/baselines/TestDRACO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestDRACO.png -------------------------------------------------------------------------------- /testing/baselines/TestDRACOColoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestDRACOColoring.png -------------------------------------------------------------------------------- /testing/baselines/TestDXF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestDXF.png -------------------------------------------------------------------------------- /testing/baselines/TestDefines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestDefines.png -------------------------------------------------------------------------------- /testing/baselines/TestDepthPeeling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestDepthPeeling.png -------------------------------------------------------------------------------- /testing/baselines/TestDicom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestDicom.png -------------------------------------------------------------------------------- /testing/baselines/TestEdges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestEdges.png -------------------------------------------------------------------------------- /testing/baselines/TestExactMatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestExactMatch.png -------------------------------------------------------------------------------- /testing/baselines/TestExodus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestExodus.png -------------------------------------------------------------------------------- /testing/baselines/TestExodusConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestExodusConfig.png -------------------------------------------------------------------------------- /testing/baselines/TestF3DRenderer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestF3DRenderer.png -------------------------------------------------------------------------------- /testing/baselines/TestFBX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestFBX.png -------------------------------------------------------------------------------- /testing/baselines/TestFBX16bits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestFBX16bits.png -------------------------------------------------------------------------------- /testing/baselines/TestFBXAnimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestFBXAnimation.png -------------------------------------------------------------------------------- /testing/baselines/TestFBXBone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestFBXBone.png -------------------------------------------------------------------------------- /testing/baselines/TestFBXBoneAnimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestFBXBoneAnimation.png -------------------------------------------------------------------------------- /testing/baselines/TestFBXNormalMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestFBXNormalMapping.png -------------------------------------------------------------------------------- /testing/baselines/TestFilename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestFilename.png -------------------------------------------------------------------------------- /testing/baselines/TestFilenameWhiteBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestFilenameWhiteBg.png -------------------------------------------------------------------------------- /testing/baselines/TestFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestFont.png -------------------------------------------------------------------------------- /testing/baselines/TestFontScale2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestFontScale2.png -------------------------------------------------------------------------------- /testing/baselines/TestFontScale3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestFontScale3.png -------------------------------------------------------------------------------- /testing/baselines/TestForceReaderPass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestForceReaderPass.png -------------------------------------------------------------------------------- /testing/baselines/TestGLTFDracoImporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGLTFDracoImporter.png -------------------------------------------------------------------------------- /testing/baselines/TestGLTFImporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGLTFImporter.png -------------------------------------------------------------------------------- /testing/baselines/TestGLTFImporterUnlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGLTFImporterUnlit.png -------------------------------------------------------------------------------- /testing/baselines/TestGLTFMorph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGLTFMorph.png -------------------------------------------------------------------------------- /testing/baselines/TestGLTFRigArmature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGLTFRigArmature.png -------------------------------------------------------------------------------- /testing/baselines/TestGLTFSkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGLTFSkin.png -------------------------------------------------------------------------------- /testing/baselines/TestGLTFURI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGLTFURI.png -------------------------------------------------------------------------------- /testing/baselines/TestGenRef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGenRef.png -------------------------------------------------------------------------------- /testing/baselines/TestGridAbsolute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGridAbsolute.png -------------------------------------------------------------------------------- /testing/baselines/TestGridClipping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGridClipping.png -------------------------------------------------------------------------------- /testing/baselines/TestGridColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGridColor.png -------------------------------------------------------------------------------- /testing/baselines/TestGridOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGridOptions.png -------------------------------------------------------------------------------- /testing/baselines/TestGridUp000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGridUp000.png -------------------------------------------------------------------------------- /testing/baselines/TestGridUp100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGridUp100.png -------------------------------------------------------------------------------- /testing/baselines/TestGridUp123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGridUp123.png -------------------------------------------------------------------------------- /testing/baselines/TestGridX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGridX.png -------------------------------------------------------------------------------- /testing/baselines/TestGridY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGridY.png -------------------------------------------------------------------------------- /testing/baselines/TestGridZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestGridZ.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRI.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRI8Bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRI8Bit.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIAmbientOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIAmbientOnly.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIBlur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIBlur.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIBlurCoCLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIBlurCoCLarge.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIBlurCoCMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIBlurCoCMedium.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIBlurCoCSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIBlurCoCSmall.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIBlurCoCZero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIBlurCoCZero.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIBlurRatio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIBlurRatio.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRICache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRICache.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIDefault.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIEXR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIEXR.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIEdges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIEdges.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIFilename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIFilename.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRINone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRINone.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIOrient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIOrient.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIRaytracing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIRaytracing.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRISkyboxOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRISkyboxOnly.png -------------------------------------------------------------------------------- /testing/baselines/TestHDRIToneMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHDRIToneMapping.png -------------------------------------------------------------------------------- /testing/baselines/TestHOMEColorMapFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHOMEColorMapFile.png -------------------------------------------------------------------------------- /testing/baselines/TestHOMEConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHOMEConfig.png -------------------------------------------------------------------------------- /testing/baselines/TestHOMEFontFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHOMEFontFile.png -------------------------------------------------------------------------------- /testing/baselines/TestHOMEHDRI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHOMEHDRI.png -------------------------------------------------------------------------------- /testing/baselines/TestHOMEInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHOMEInput.png -------------------------------------------------------------------------------- /testing/baselines/TestHOMETexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestHOMETexture.png -------------------------------------------------------------------------------- /testing/baselines/TestIGES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestIGES.png -------------------------------------------------------------------------------- /testing/baselines/TestIGESDefines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestIGESDefines.png -------------------------------------------------------------------------------- /testing/baselines/TestInteractionActors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestInteractionActors.png -------------------------------------------------------------------------------- /testing/baselines/TestInteractionPostFX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestInteractionPostFX.png -------------------------------------------------------------------------------- /testing/baselines/TestInteractionReload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestInteractionReload.png -------------------------------------------------------------------------------- /testing/baselines/TestInteractionTAA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestInteractionTAA.png -------------------------------------------------------------------------------- /testing/baselines/TestLineWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestLineWidth.png -------------------------------------------------------------------------------- /testing/baselines/TestMHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMHD.png -------------------------------------------------------------------------------- /testing/baselines/TestMaterial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMaterial.png -------------------------------------------------------------------------------- /testing/baselines/TestMaterialFullScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMaterialFullScene.png -------------------------------------------------------------------------------- /testing/baselines/TestMaxBaseIOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMaxBaseIOR.png -------------------------------------------------------------------------------- /testing/baselines/TestMaxSizeBelow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMaxSizeBelow.png -------------------------------------------------------------------------------- /testing/baselines/TestMetaData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMetaData.png -------------------------------------------------------------------------------- /testing/baselines/TestMetaDataImporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMetaDataImporter.png -------------------------------------------------------------------------------- /testing/baselines/TestMinBaseIOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMinBaseIOR.png -------------------------------------------------------------------------------- /testing/baselines/TestMorphColoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMorphColoring.png -------------------------------------------------------------------------------- /testing/baselines/TestMultiFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMultiFile.png -------------------------------------------------------------------------------- /testing/baselines/TestMultiFileColoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMultiFileColoring.png -------------------------------------------------------------------------------- /testing/baselines/TestMultiFileInvalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMultiFileInvalid.png -------------------------------------------------------------------------------- /testing/baselines/TestMultiFileMetaData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMultiFileMetaData.png -------------------------------------------------------------------------------- /testing/baselines/TestMultiFileModeDir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMultiFileModeDir.png -------------------------------------------------------------------------------- /testing/baselines/TestMultiFileRegexA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMultiFileRegexA.png -------------------------------------------------------------------------------- /testing/baselines/TestMultiFileRegexB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMultiFileRegexB.png -------------------------------------------------------------------------------- /testing/baselines/TestMultiFileVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMultiFileVolume.png -------------------------------------------------------------------------------- /testing/baselines/TestMultiInputArg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestMultiInputArg.png -------------------------------------------------------------------------------- /testing/baselines/TestNRRD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestNRRD.png -------------------------------------------------------------------------------- /testing/baselines/TestNetCDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestNetCDF.png -------------------------------------------------------------------------------- /testing/baselines/TestNoBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestNoBackground.png -------------------------------------------------------------------------------- /testing/baselines/TestNoFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestNoFile.png -------------------------------------------------------------------------------- /testing/baselines/TestNonExistentFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestNonExistentFile.png -------------------------------------------------------------------------------- /testing/baselines/TestOBJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestOBJ.png -------------------------------------------------------------------------------- /testing/baselines/TestOBJWebP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestOBJWebP.png -------------------------------------------------------------------------------- /testing/baselines/TestOBJWithTGATexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestOBJWithTGATexture.png -------------------------------------------------------------------------------- /testing/baselines/TestOFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestOFF.png -------------------------------------------------------------------------------- /testing/baselines/TestPLY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestPLY.png -------------------------------------------------------------------------------- /testing/baselines/TestPTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestPTS.png -------------------------------------------------------------------------------- /testing/baselines/TestPointCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestPointCloud.png -------------------------------------------------------------------------------- /testing/baselines/TestPointCloudBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestPointCloudBar.png -------------------------------------------------------------------------------- /testing/baselines/TestPointCloudUG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestPointCloudUG.png -------------------------------------------------------------------------------- /testing/baselines/TestPointCloudVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestPointCloudVolume.png -------------------------------------------------------------------------------- /testing/baselines/TestPythonScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestPythonScene.png -------------------------------------------------------------------------------- /testing/baselines/TestPythonSceneMemory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestPythonSceneMemory.png -------------------------------------------------------------------------------- /testing/baselines/TestQuakeMDL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestQuakeMDL.png -------------------------------------------------------------------------------- /testing/baselines/TestQuakeMDLGroupSkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestQuakeMDLGroupSkin.png -------------------------------------------------------------------------------- /testing/baselines/TestQuakeMDLSkinIndex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestQuakeMDLSkinIndex.png -------------------------------------------------------------------------------- /testing/baselines/TestRaytracingDenoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestRaytracingDenoise.png -------------------------------------------------------------------------------- /testing/baselines/TestRaytracingGLTF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestRaytracingGLTF.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKConsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKConsole.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKDropZone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKDropZone.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKDropZoneNoLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKDropZoneNoLogo.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKDynamicHDRI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKDynamicHDRI.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKDynamicHDRIExr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKDynamicHDRIExr.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKImage.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKImage16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKImage16.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKMultiColoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKMultiColoring.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKMultiOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKMultiOptions.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKScene.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKSceneRedLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKSceneRedLight.png -------------------------------------------------------------------------------- /testing/baselines/TestSDKWindowStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSDKWindowStandard.png -------------------------------------------------------------------------------- /testing/baselines/TestSPLAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSPLAT.png -------------------------------------------------------------------------------- /testing/baselines/TestSPZDegree0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSPZDegree0.png -------------------------------------------------------------------------------- /testing/baselines/TestSPZDegree1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSPZDegree1.png -------------------------------------------------------------------------------- /testing/baselines/TestSPZDegree2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSPZDegree2.png -------------------------------------------------------------------------------- /testing/baselines/TestSPZDegree3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSPZDegree3.png -------------------------------------------------------------------------------- /testing/baselines/TestSPZVersion3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSPZVersion3.png -------------------------------------------------------------------------------- /testing/baselines/TestSSAO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSSAO.png -------------------------------------------------------------------------------- /testing/baselines/TestSTEP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSTEP.png -------------------------------------------------------------------------------- /testing/baselines/TestSTEPDefines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSTEPDefines.png -------------------------------------------------------------------------------- /testing/baselines/TestSTL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSTL.png -------------------------------------------------------------------------------- /testing/baselines/TestScalars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestScalars.png -------------------------------------------------------------------------------- /testing/baselines/TestScalarsCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestScalarsCell.png -------------------------------------------------------------------------------- /testing/baselines/TestScalarsRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestScalarsRange.png -------------------------------------------------------------------------------- /testing/baselines/TestScalarsWithBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestScalarsWithBar.png -------------------------------------------------------------------------------- /testing/baselines/TestSkinColoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSkinColoring.png -------------------------------------------------------------------------------- /testing/baselines/TestSkinningManyBones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestSkinningManyBones.png -------------------------------------------------------------------------------- /testing/baselines/TestTGATextureFBX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestTGATextureFBX.png -------------------------------------------------------------------------------- /testing/baselines/TestTIFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestTIFF.png -------------------------------------------------------------------------------- /testing/baselines/TestTextureColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestTextureColor.png -------------------------------------------------------------------------------- /testing/baselines/TestTextureEmissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestTextureEmissive.png -------------------------------------------------------------------------------- /testing/baselines/TestTextureMatCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestTextureMatCap.png -------------------------------------------------------------------------------- /testing/baselines/TestTextureMaterial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestTextureMaterial.png -------------------------------------------------------------------------------- /testing/baselines/TestTextureNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestTextureNormal.png -------------------------------------------------------------------------------- /testing/baselines/TestTextures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestTextures.png -------------------------------------------------------------------------------- /testing/baselines/TestTexturesTransform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestTexturesTransform.png -------------------------------------------------------------------------------- /testing/baselines/TestToneMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestToneMapping.png -------------------------------------------------------------------------------- /testing/baselines/TestUSD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUSD.png -------------------------------------------------------------------------------- /testing/baselines/TestUSDAGlyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUSDAGlyphs.png -------------------------------------------------------------------------------- /testing/baselines/TestUSDAInstancing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUSDAInstancing.png -------------------------------------------------------------------------------- /testing/baselines/TestUSDAPrimitives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUSDAPrimitives.png -------------------------------------------------------------------------------- /testing/baselines/TestUSDInterpolation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUSDInterpolation.png -------------------------------------------------------------------------------- /testing/baselines/TestUSDPurpose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUSDPurpose.png -------------------------------------------------------------------------------- /testing/baselines/TestUSDTeapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUSDTeapot.png -------------------------------------------------------------------------------- /testing/baselines/TestUSDZAnimated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUSDZAnimated.png -------------------------------------------------------------------------------- /testing/baselines/TestUSDZMaterials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUSDZMaterials.png -------------------------------------------------------------------------------- /testing/baselines/TestUSDZMemEXR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUSDZMemEXR.png -------------------------------------------------------------------------------- /testing/baselines/TestUSDZRigged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUSDZRigged.png -------------------------------------------------------------------------------- /testing/baselines/TestUTF8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestUTF8.png -------------------------------------------------------------------------------- /testing/baselines/TestVDBPoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVDBPoints.png -------------------------------------------------------------------------------- /testing/baselines/TestVDBVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVDBVolume.png -------------------------------------------------------------------------------- /testing/baselines/TestVRMLImporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVRMLImporter.png -------------------------------------------------------------------------------- /testing/baselines/TestVTICell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVTICell.png -------------------------------------------------------------------------------- /testing/baselines/TestVTK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVTK.png -------------------------------------------------------------------------------- /testing/baselines/TestVTKHDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVTKHDF.png -------------------------------------------------------------------------------- /testing/baselines/TestVTM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVTM.png -------------------------------------------------------------------------------- /testing/baselines/TestVTP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVTP.png -------------------------------------------------------------------------------- /testing/baselines/TestVTR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVTR.png -------------------------------------------------------------------------------- /testing/baselines/TestVTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVTS.png -------------------------------------------------------------------------------- /testing/baselines/TestVTU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVTU.png -------------------------------------------------------------------------------- /testing/baselines/TestVerboseWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVerboseWarning.png -------------------------------------------------------------------------------- /testing/baselines/TestVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVolume.png -------------------------------------------------------------------------------- /testing/baselines/TestVolumeCells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVolumeCells.png -------------------------------------------------------------------------------- /testing/baselines/TestVolumeComp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVolumeComp.png -------------------------------------------------------------------------------- /testing/baselines/TestVolumeDirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVolumeDirect.png -------------------------------------------------------------------------------- /testing/baselines/TestVolumeInverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVolumeInverse.png -------------------------------------------------------------------------------- /testing/baselines/TestVolumeMag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestVolumeMag.png -------------------------------------------------------------------------------- /testing/baselines/TestWasmAnimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestWasmAnimation.png -------------------------------------------------------------------------------- /testing/baselines/TestWasmCamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestWasmCamera.png -------------------------------------------------------------------------------- /testing/baselines/TestWasmOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestWasmOptions.png -------------------------------------------------------------------------------- /testing/baselines/TestWasmSplats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestWasmSplats.png -------------------------------------------------------------------------------- /testing/baselines/TestX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestX.png -------------------------------------------------------------------------------- /testing/baselines/TestXBF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestXBF.png -------------------------------------------------------------------------------- /testing/baselines/TestXBFDefines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestXBFDefines.png -------------------------------------------------------------------------------- /testing/baselines/TestXCAFColors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestXCAFColors.png -------------------------------------------------------------------------------- /testing/baselines/TestXCAFColorsXBF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/baselines/TestXCAFColorsXBF.png -------------------------------------------------------------------------------- /testing/configs/02_home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/02_home.json -------------------------------------------------------------------------------- /testing/configs/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/bindings.json -------------------------------------------------------------------------------- /testing/configs/complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/complex.json -------------------------------------------------------------------------------- /testing/configs/config_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/config_order.json -------------------------------------------------------------------------------- /testing/configs/exact.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/exact.json.in -------------------------------------------------------------------------------- /testing/configs/exodus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/exodus.json -------------------------------------------------------------------------------- /testing/configs/glob.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/glob.json.in -------------------------------------------------------------------------------- /testing/configs/hdri.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/hdri.json.in -------------------------------------------------------------------------------- /testing/configs/imperative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/imperative.json -------------------------------------------------------------------------------- /testing/configs/inexistent_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/inexistent_key.json -------------------------------------------------------------------------------- /testing/configs/invalid.json: -------------------------------------------------------------------------------- 1 | This is not a valid json file 2 | -------------------------------------------------------------------------------- /testing/configs/invalid_glob_exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/invalid_glob_exp.json -------------------------------------------------------------------------------- /testing/configs/invalid_match_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/invalid_match_type.json -------------------------------------------------------------------------------- /testing/configs/invalid_options.json: -------------------------------------------------------------------------------- 1 | ["options"] 2 | -------------------------------------------------------------------------------- /testing/configs/invalid_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/invalid_value.json -------------------------------------------------------------------------------- /testing/configs/match_type_no_match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/match_type_no_match.json -------------------------------------------------------------------------------- /testing/configs/no_options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/no_options.json -------------------------------------------------------------------------------- /testing/configs/nonparsable_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/nonparsable_value.json -------------------------------------------------------------------------------- /testing/configs/quiet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/quiet.json -------------------------------------------------------------------------------- /testing/configs/resolution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/resolution.json -------------------------------------------------------------------------------- /testing/configs/verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/configs/verbose.json -------------------------------------------------------------------------------- /testing/data/(ノಠ益ಠ )ノ.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/(ノಠ益ಠ )ノ.vtp -------------------------------------------------------------------------------- /testing/data/10x10_checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/10x10_checker.png -------------------------------------------------------------------------------- /testing/data/16bit.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/16bit.fbx -------------------------------------------------------------------------------- /testing/data/16bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/16bit.png -------------------------------------------------------------------------------- /testing/data/AnimatedCube.usdz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/AnimatedCube.usdz -------------------------------------------------------------------------------- /testing/data/BoxAnimated.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/BoxAnimated.gltf -------------------------------------------------------------------------------- /testing/data/BoxAnimated0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/BoxAnimated0.bin -------------------------------------------------------------------------------- /testing/data/Box_draco.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Box_draco.bin -------------------------------------------------------------------------------- /testing/data/Box_draco.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Box_draco.gltf -------------------------------------------------------------------------------- /testing/data/CameraAnimated.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/CameraAnimated.glb -------------------------------------------------------------------------------- /testing/data/Cameras.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Cameras.gltf -------------------------------------------------------------------------------- /testing/data/Crosterian.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Crosterian.ttf -------------------------------------------------------------------------------- /testing/data/DATA_LICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/DATA_LICENSES.md -------------------------------------------------------------------------------- /testing/data/Duck0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Duck0.bin -------------------------------------------------------------------------------- /testing/data/HeadMRVolume.mhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/HeadMRVolume.mhd -------------------------------------------------------------------------------- /testing/data/HeadMRVolume.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/HeadMRVolume.raw -------------------------------------------------------------------------------- /testing/data/IM-0001-1983.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/IM-0001-1983.dcm -------------------------------------------------------------------------------- /testing/data/InterpolationTest.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/InterpolationTest.glb -------------------------------------------------------------------------------- /testing/data/Lantern/Lantern.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Lantern/Lantern.bin -------------------------------------------------------------------------------- /testing/data/Lantern/Lantern.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Lantern/Lantern.gltf -------------------------------------------------------------------------------- /testing/data/Lantern/Lantern_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Lantern/Lantern_normal.png -------------------------------------------------------------------------------- /testing/data/McUsd.usdz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/McUsd.usdz -------------------------------------------------------------------------------- /testing/data/Part-4-Buildings-V4-one.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Part-4-Buildings-V4-one.gml -------------------------------------------------------------------------------- /testing/data/PinkEggFromLW.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/PinkEggFromLW.dxf -------------------------------------------------------------------------------- /testing/data/Rec709.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Rec709.exr -------------------------------------------------------------------------------- /testing/data/RectGrid2.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/RectGrid2.vtr -------------------------------------------------------------------------------- /testing/data/RiggedFigure.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/RiggedFigure.glb -------------------------------------------------------------------------------- /testing/data/RiggedSimple.usdz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/RiggedSimple.usdz -------------------------------------------------------------------------------- /testing/data/SimpleMorph.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/SimpleMorph.gltf -------------------------------------------------------------------------------- /testing/data/SimpleSkin.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/SimpleSkin.gltf -------------------------------------------------------------------------------- /testing/data/Teapot.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Teapot.usd -------------------------------------------------------------------------------- /testing/data/UnlitTest.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/UnlitTest.glb -------------------------------------------------------------------------------- /testing/data/WaterBottle.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/WaterBottle.glb -------------------------------------------------------------------------------- /testing/data/Wolf.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/Wolf.fbx -------------------------------------------------------------------------------- /testing/data/albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/albedo.png -------------------------------------------------------------------------------- /testing/data/albedo_mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/albedo_mod.png -------------------------------------------------------------------------------- /testing/data/alpha.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/alpha.glb -------------------------------------------------------------------------------- /testing/data/amr.vtkhdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/amr.vtkhdf -------------------------------------------------------------------------------- /testing/data/anim_test.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/anim_test.x -------------------------------------------------------------------------------- /testing/data/animatedCamera.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/animatedCamera.fbx -------------------------------------------------------------------------------- /testing/data/animatedLights.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/animatedLights.dae -------------------------------------------------------------------------------- /testing/data/animatedLights.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/animatedLights.fbx -------------------------------------------------------------------------------- /testing/data/animatedWorld.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/animatedWorld.fbx -------------------------------------------------------------------------------- /testing/data/animation_with_skeleton.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/animation_with_skeleton.fbx -------------------------------------------------------------------------------- /testing/data/armor.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/armor.mdl -------------------------------------------------------------------------------- /testing/data/backface.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/backface.vtp -------------------------------------------------------------------------------- /testing/data/beach.nrrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/beach.nrrd -------------------------------------------------------------------------------- /testing/data/blob.vtkhdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/blob.vtkhdf -------------------------------------------------------------------------------- /testing/data/bluntfin.vts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/bluntfin.vts -------------------------------------------------------------------------------- /testing/data/bluntfin_t.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/bluntfin_t.vtu -------------------------------------------------------------------------------- /testing/data/bonsai.spz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/bonsai.spz -------------------------------------------------------------------------------- /testing/data/bonsai_small.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/bonsai_small.ply -------------------------------------------------------------------------------- /testing/data/bot2.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/bot2.wrl -------------------------------------------------------------------------------- /testing/data/box.exo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/box.exo -------------------------------------------------------------------------------- /testing/data/box.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/box.g -------------------------------------------------------------------------------- /testing/data/checkerboard_colorful.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/checkerboard_colorful.mtl -------------------------------------------------------------------------------- /testing/data/checkerboard_colorful.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/checkerboard_colorful.obj -------------------------------------------------------------------------------- /testing/data/cheese.brep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/cheese.brep -------------------------------------------------------------------------------- /testing/data/cheese.igs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/cheese.igs -------------------------------------------------------------------------------- /testing/data/cheese.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/cheese.stp -------------------------------------------------------------------------------- /testing/data/cheese.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/cheese.xbf -------------------------------------------------------------------------------- /testing/data/cow.vtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/cow.vtk -------------------------------------------------------------------------------- /testing/data/cow.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/cow.vtp -------------------------------------------------------------------------------- /testing/data/cowlow.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/cowlow.vtp -------------------------------------------------------------------------------- /testing/data/cube_gears.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/cube_gears.3mf -------------------------------------------------------------------------------- /testing/data/cube_webp.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/cube_webp.mtl -------------------------------------------------------------------------------- /testing/data/cube_webp.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/cube_webp.obj -------------------------------------------------------------------------------- /testing/data/disk_out_ref.ex2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/disk_out_ref.ex2 -------------------------------------------------------------------------------- /testing/data/dragon.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/dragon.vtu -------------------------------------------------------------------------------- /testing/data/drop.abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/drop.abc -------------------------------------------------------------------------------- /testing/data/duck.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/duck.dae -------------------------------------------------------------------------------- /testing/data/duck.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/duck.fbx -------------------------------------------------------------------------------- /testing/data/duckCM.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/duckCM.tga -------------------------------------------------------------------------------- /testing/data/duck_invalid.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/duck_invalid.gltf -------------------------------------------------------------------------------- /testing/data/f3d.bin.brep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/f3d.bin.brep -------------------------------------------------------------------------------- /testing/data/f3d.brep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/f3d.brep -------------------------------------------------------------------------------- /testing/data/f3d.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/f3d.glb -------------------------------------------------------------------------------- /testing/data/f3d.igs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/f3d.igs -------------------------------------------------------------------------------- /testing/data/f3d.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/f3d.stp -------------------------------------------------------------------------------- /testing/data/f3d.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/f3d.tif -------------------------------------------------------------------------------- /testing/data/f3d.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/f3d.vtp -------------------------------------------------------------------------------- /testing/data/f3d.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/f3d.xbf -------------------------------------------------------------------------------- /testing/data/flame_mixed.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/flame_mixed.mdl -------------------------------------------------------------------------------- /testing/data/from_abq.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/from_abq.vtu -------------------------------------------------------------------------------- /testing/data/glyphs.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/glyphs.usda -------------------------------------------------------------------------------- /testing/data/grayscale.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/grayscale.exr -------------------------------------------------------------------------------- /testing/data/groupskin.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/groupskin.mdl -------------------------------------------------------------------------------- /testing/data/hornedlizard_small_d0.spz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/hornedlizard_small_d0.spz -------------------------------------------------------------------------------- /testing/data/hornedlizard_small_d1.spz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/hornedlizard_small_d1.spz -------------------------------------------------------------------------------- /testing/data/hornedlizard_small_d2.spz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/hornedlizard_small_d2.spz -------------------------------------------------------------------------------- /testing/data/hornedlizard_small_d3.spz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/hornedlizard_small_d3.spz -------------------------------------------------------------------------------- /testing/data/icosahedron.vdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/icosahedron.vdb -------------------------------------------------------------------------------- /testing/data/iflamigm.3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/iflamigm.3ds -------------------------------------------------------------------------------- /testing/data/image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/image.webp -------------------------------------------------------------------------------- /testing/data/instancing.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/instancing.usda -------------------------------------------------------------------------------- /testing/data/invalid.brep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/data/invalid.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/invalid.exr -------------------------------------------------------------------------------- /testing/data/invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/invalid.png -------------------------------------------------------------------------------- /testing/data/invalid.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/invalid.so -------------------------------------------------------------------------------- /testing/data/invalid.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/invalid.usd -------------------------------------------------------------------------------- /testing/data/invalid.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/invalid.vtp -------------------------------------------------------------------------------- /testing/data/invalid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/invalid.webp -------------------------------------------------------------------------------- /testing/data/invalid.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/invalid.xbf -------------------------------------------------------------------------------- /testing/data/invalid2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/invalid2.webp -------------------------------------------------------------------------------- /testing/data/invalidSH.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/invalidSH.vtp -------------------------------------------------------------------------------- /testing/data/invalid_cut.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/invalid_cut.exr -------------------------------------------------------------------------------- /testing/data/kloofendal_43d_clear_1k.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/kloofendal_43d_clear_1k.exr -------------------------------------------------------------------------------- /testing/data/libf3d-plugin-invalid.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/libf3d-plugin-invalid.so -------------------------------------------------------------------------------- /testing/data/mb.vtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/mb.vtm -------------------------------------------------------------------------------- /testing/data/mb/mb_0_0.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/mb/mb_0_0.vtu -------------------------------------------------------------------------------- /testing/data/mb/mb_1_0.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/mb/mb_1_0.vtp -------------------------------------------------------------------------------- /testing/data/mb/mb_2_0.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/mb/mb_2_0.vtp -------------------------------------------------------------------------------- /testing/data/mb/mb_3_0.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/mb/mb_3_0.vtt -------------------------------------------------------------------------------- /testing/data/mb/recursive/f3d.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/mb/recursive/f3d.glb -------------------------------------------------------------------------------- /testing/data/mb/recursive/mb_0_0.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/mb/recursive/mb_0_0.vtu -------------------------------------------------------------------------------- /testing/data/mb/recursive/mb_1_0.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/mb/recursive/mb_1_0.vtp -------------------------------------------------------------------------------- /testing/data/mb/recursive/mb_2_0.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/mb/recursive/mb_2_0.vtp -------------------------------------------------------------------------------- /testing/data/mb/recursive/mb_3_0.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/mb/recursive/mb_3_0.vtt -------------------------------------------------------------------------------- /testing/data/monkey_curves.abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/monkey_curves.abc -------------------------------------------------------------------------------- /testing/data/multi-file/tet-part1of2.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/multi-file/tet-part1of2.glb -------------------------------------------------------------------------------- /testing/data/multi-file/tet-part1of3.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/multi-file/tet-part1of3.glb -------------------------------------------------------------------------------- /testing/data/multi-file/tet-part2of2.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/multi-file/tet-part2of2.glb -------------------------------------------------------------------------------- /testing/data/multi-file/tet-part2of3.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/multi-file/tet-part2of3.glb -------------------------------------------------------------------------------- /testing/data/multi-file/tet-part3of3.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/multi-file/tet-part3of3.glb -------------------------------------------------------------------------------- /testing/data/multi/dragon.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/multi/dragon.vtu -------------------------------------------------------------------------------- /testing/data/multi/suzanne.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/multi/suzanne.obj -------------------------------------------------------------------------------- /testing/data/multi/vase_4comp.vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/multi/vase_4comp.vti -------------------------------------------------------------------------------- /testing/data/multi/zcow.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/multi/zcow.vtp -------------------------------------------------------------------------------- /testing/data/multi/zsuzanne.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/multi/zsuzanne.stl -------------------------------------------------------------------------------- /testing/data/negative_range_animated.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/negative_range_animated.e -------------------------------------------------------------------------------- /testing/data/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/normal.png -------------------------------------------------------------------------------- /testing/data/normalMapping.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/normalMapping.fbx -------------------------------------------------------------------------------- /testing/data/offset-flat-box.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/offset-flat-box.glb -------------------------------------------------------------------------------- /testing/data/palermo_park_1k.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/palermo_park_1k.hdr -------------------------------------------------------------------------------- /testing/data/palermo_park_1k.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/palermo_park_1k.tif -------------------------------------------------------------------------------- /testing/data/pdiag.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/pdiag.vtu -------------------------------------------------------------------------------- /testing/data/phong_cube.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/phong_cube.fbx -------------------------------------------------------------------------------- /testing/data/points.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/points.ply -------------------------------------------------------------------------------- /testing/data/pointsCloud.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/pointsCloud.gltf -------------------------------------------------------------------------------- /testing/data/pointsCloud.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/pointsCloud.vtp -------------------------------------------------------------------------------- /testing/data/pointsCloud.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/pointsCloud.vtu -------------------------------------------------------------------------------- /testing/data/primitives.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/primitives.usda -------------------------------------------------------------------------------- /testing/data/primitivesZ.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/primitivesZ.usda -------------------------------------------------------------------------------- /testing/data/punch.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/punch.fbx -------------------------------------------------------------------------------- /testing/data/purpose.usdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/purpose.usdc -------------------------------------------------------------------------------- /testing/data/red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/red.jpg -------------------------------------------------------------------------------- /testing/data/red_mod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/red_mod.jpg -------------------------------------------------------------------------------- /testing/data/red_translucent_monkey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/red_translucent_monkey.bin -------------------------------------------------------------------------------- /testing/data/red_translucent_monkey.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/red_translucent_monkey.gltf -------------------------------------------------------------------------------- /testing/data/samplePTS.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/samplePTS.pts -------------------------------------------------------------------------------- /testing/data/shanghai_bund_1k.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/shanghai_bund_1k.hdr -------------------------------------------------------------------------------- /testing/data/single_timestep.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/single_timestep.e -------------------------------------------------------------------------------- /testing/data/skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/skin.png -------------------------------------------------------------------------------- /testing/data/small.ex2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/small.ex2 -------------------------------------------------------------------------------- /testing/data/small.splat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/small.splat -------------------------------------------------------------------------------- /testing/data/small.usdz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/small.usdz -------------------------------------------------------------------------------- /testing/data/soldier_animations.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/soldier_animations.mdl -------------------------------------------------------------------------------- /testing/data/sphere_points.vdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/sphere_points.vdb -------------------------------------------------------------------------------- /testing/data/suzanne.abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/suzanne.abc -------------------------------------------------------------------------------- /testing/data/suzanne.drc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/suzanne.drc -------------------------------------------------------------------------------- /testing/data/suzanne.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/suzanne.mtl -------------------------------------------------------------------------------- /testing/data/suzanne.not_supported: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/suzanne.not_supported -------------------------------------------------------------------------------- /testing/data/suzanne.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/suzanne.obj -------------------------------------------------------------------------------- /testing/data/suzanne.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/suzanne.ply -------------------------------------------------------------------------------- /testing/data/suzanne.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/suzanne.stl -------------------------------------------------------------------------------- /testing/data/suzanne.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/suzanne.usd -------------------------------------------------------------------------------- /testing/data/suzanneRGBA.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/suzanneRGBA.ply -------------------------------------------------------------------------------- /testing/data/suzanne_upper.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/suzanne_upper.STL -------------------------------------------------------------------------------- /testing/data/teapot.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/teapot.off -------------------------------------------------------------------------------- /testing/data/temperature_grid.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/temperature_grid.nc -------------------------------------------------------------------------------- /testing/data/tensors.vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/tensors.vti -------------------------------------------------------------------------------- /testing/data/texturedCube.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/texturedCube.fbx -------------------------------------------------------------------------------- /testing/data/toTerminalText-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/toTerminalText-rgb.png -------------------------------------------------------------------------------- /testing/data/toTerminalText-rgb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/toTerminalText-rgb.txt -------------------------------------------------------------------------------- /testing/data/toTerminalText-rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/toTerminalText-rgba.png -------------------------------------------------------------------------------- /testing/data/toTerminalText-rgba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/toTerminalText-rgba.txt -------------------------------------------------------------------------------- /testing/data/truncated_gzip.spz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/truncated_gzip.spz -------------------------------------------------------------------------------- /testing/data/tube_254bones.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/tube_254bones.glb -------------------------------------------------------------------------------- /testing/data/two_quads_interp.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/two_quads_interp.usda -------------------------------------------------------------------------------- /testing/data/unsupportedFile.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/data/v_rock2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/v_rock2.mdl -------------------------------------------------------------------------------- /testing/data/vase_4comp.vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/vase_4comp.vti -------------------------------------------------------------------------------- /testing/data/viridis16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/viridis16.png -------------------------------------------------------------------------------- /testing/data/viridis32.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/viridis32.hdr -------------------------------------------------------------------------------- /testing/data/viridis8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/viridis8.png -------------------------------------------------------------------------------- /testing/data/w_medkit_hl.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/w_medkit_hl.mdl -------------------------------------------------------------------------------- /testing/data/waveletArrays.vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/waveletArrays.vti -------------------------------------------------------------------------------- /testing/data/waveletMaterial.vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/waveletMaterial.vti -------------------------------------------------------------------------------- /testing/data/white_grayscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/white_grayscale.png -------------------------------------------------------------------------------- /testing/data/world.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/world.mtl -------------------------------------------------------------------------------- /testing/data/world.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/world.obj -------------------------------------------------------------------------------- /testing/data/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/world.png -------------------------------------------------------------------------------- /testing/data/world.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/world.tga -------------------------------------------------------------------------------- /testing/data/world_invalid.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/world_invalid.obj -------------------------------------------------------------------------------- /testing/data/world_tga.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/world_tga.mtl -------------------------------------------------------------------------------- /testing/data/world_tga.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/world_tga.obj -------------------------------------------------------------------------------- /testing/data/wrong_spz_magic.spz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/wrong_spz_magic.spz -------------------------------------------------------------------------------- /testing/data/wrong_spz_version.spz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/wrong_spz_version.spz -------------------------------------------------------------------------------- /testing/data/xcaf-colors.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/xcaf-colors.stp -------------------------------------------------------------------------------- /testing/data/xcaf-colors.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/xcaf-colors.xbf -------------------------------------------------------------------------------- /testing/data/xform_anim.abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/xform_anim.abc -------------------------------------------------------------------------------- /testing/data/zombie.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/data/zombie.mdl -------------------------------------------------------------------------------- /testing/recordings/TestScreenshot.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/testing/recordings/TestScreenshot.log -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptHelp.txt: -------------------------------------------------------------------------------- 1 | help set 2 | -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptHelpInvalid.txt: -------------------------------------------------------------------------------- 1 | help invalid 2 | -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptInvalid.txt: -------------------------------------------------------------------------------- 1 | INVALID_COMMAND_1 2 | -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptInvalidReaderOptions.txt: -------------------------------------------------------------------------------- 1 | set_reader_option invalid value 2 | -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptParseOptionalBoolExtraArg.txt: -------------------------------------------------------------------------------- 1 | load_previous_file_group true extra 2 | -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptPrintColoring.txt: -------------------------------------------------------------------------------- 1 | print_coloring_info 2 | -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptPrintMesh.txt: -------------------------------------------------------------------------------- 1 | print_mesh_info 2 | -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptPrintOptions.txt: -------------------------------------------------------------------------------- 1 | print_options_info 2 | -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptPrintScene.txt: -------------------------------------------------------------------------------- 1 | print_scene_info 2 | -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptRemoveCurrentFileGroup.txt: -------------------------------------------------------------------------------- 1 | remove_current_file_group 2 | -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptRemoveFileGroups.txt: -------------------------------------------------------------------------------- 1 | remove_file_groups -------------------------------------------------------------------------------- /testing/scripts/TestCommandScriptReset.txt: -------------------------------------------------------------------------------- 1 | reset render.show_edges 2 | load_next_file_group 3 | -------------------------------------------------------------------------------- /testing/scripts/TestHOMECommandScript.txt: -------------------------------------------------------------------------------- 1 | print_scene_info 2 | -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vcpkg.json -------------------------------------------------------------------------------- /vtkext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/CMakeLists.txt -------------------------------------------------------------------------------- /vtkext/private/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/CMakeLists.txt -------------------------------------------------------------------------------- /vtkext/private/module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/CMakeLists.txt -------------------------------------------------------------------------------- /vtkext/private/module/F3DLog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/F3DLog.cxx -------------------------------------------------------------------------------- /vtkext/private/module/F3DLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/F3DLog.h -------------------------------------------------------------------------------- /vtkext/private/module/F3DStyle.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/F3DStyle.cxx -------------------------------------------------------------------------------- /vtkext/private/module/F3DStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/F3DStyle.h -------------------------------------------------------------------------------- /vtkext/private/module/vtk.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/vtk.module -------------------------------------------------------------------------------- /vtkext/private/module/vtkF3DEXRReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/vtkF3DEXRReader.h -------------------------------------------------------------------------------- /vtkext/private/module/vtkF3DImguiActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/vtkF3DImguiActor.h -------------------------------------------------------------------------------- /vtkext/private/module/vtkF3DMemoryMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/vtkF3DMemoryMesh.h -------------------------------------------------------------------------------- /vtkext/private/module/vtkF3DRenderPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/vtkF3DRenderPass.h -------------------------------------------------------------------------------- /vtkext/private/module/vtkF3DRenderer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/vtkF3DRenderer.cxx -------------------------------------------------------------------------------- /vtkext/private/module/vtkF3DRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/vtkF3DRenderer.h -------------------------------------------------------------------------------- /vtkext/private/module/vtkF3DUIActor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/vtkF3DUIActor.cxx -------------------------------------------------------------------------------- /vtkext/private/module/vtkF3DUIActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/vtkF3DUIActor.h -------------------------------------------------------------------------------- /vtkext/private/module/vtkF3DUIObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/vtkF3DUIObserver.h -------------------------------------------------------------------------------- /vtkext/private/module/vtkF3DWebPReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/private/module/vtkF3DWebPReader.h -------------------------------------------------------------------------------- /vtkext/public/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/public/CMakeLists.txt -------------------------------------------------------------------------------- /vtkext/public/module/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/public/module/CMakeLists.txt -------------------------------------------------------------------------------- /vtkext/public/module/F3DUtils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/public/module/F3DUtils.cxx -------------------------------------------------------------------------------- /vtkext/public/module/F3DUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/public/module/F3DUtils.h -------------------------------------------------------------------------------- /vtkext/public/module/vtk.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/public/module/vtk.module -------------------------------------------------------------------------------- /vtkext/public/module/vtkF3DBitonicSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/public/module/vtkF3DBitonicSort.h -------------------------------------------------------------------------------- /vtkext/public/module/vtkF3DImporter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/public/module/vtkF3DImporter.cxx -------------------------------------------------------------------------------- /vtkext/public/module/vtkF3DImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/vtkext/public/module/vtkF3DImporter.h -------------------------------------------------------------------------------- /webassembly/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/CMakeLists.txt -------------------------------------------------------------------------------- /webassembly/F3DEmscriptenBindings.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/F3DEmscriptenBindings.cxx -------------------------------------------------------------------------------- /webassembly/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/build.sh -------------------------------------------------------------------------------- /webassembly/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/testing/CMakeLists.txt -------------------------------------------------------------------------------- /webassembly/testing/test.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/testing/test.html.in -------------------------------------------------------------------------------- /webassembly/testing/test_camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/testing/test_camera.js -------------------------------------------------------------------------------- /webassembly/testing/test_engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/testing/test_engine.js -------------------------------------------------------------------------------- /webassembly/testing/test_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/testing/test_image.js -------------------------------------------------------------------------------- /webassembly/testing/test_interactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/testing/test_interactor.js -------------------------------------------------------------------------------- /webassembly/testing/test_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/testing/test_options.js -------------------------------------------------------------------------------- /webassembly/testing/test_render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/testing/test_render.js -------------------------------------------------------------------------------- /webassembly/testing/test_scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/testing/test_scene.js -------------------------------------------------------------------------------- /webassembly/testing/test_splats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/testing/test_splats.js -------------------------------------------------------------------------------- /webassembly/testing/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/webassembly/testing/utils.js -------------------------------------------------------------------------------- /winshellext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/winshellext/CMakeLists.txt -------------------------------------------------------------------------------- /winshellext/F3DShellExtension.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/winshellext/F3DShellExtension.cxx -------------------------------------------------------------------------------- /winshellext/F3DShellExtension.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/winshellext/F3DShellExtension.def -------------------------------------------------------------------------------- /winshellext/F3DThumbnailProvider.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/winshellext/F3DThumbnailProvider.cxx -------------------------------------------------------------------------------- /winshellext/F3DThumbnailProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/winshellext/F3DThumbnailProvider.h -------------------------------------------------------------------------------- /winshellext/RegistryHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3d-app/f3d/HEAD/winshellext/RegistryHelpers.h --------------------------------------------------------------------------------