gitextract_3kysormy/ ├── .gitignore ├── LICENSE ├── README.md ├── config/ │ ├── config.yaml │ ├── data_curation/ │ │ └── default.yaml │ ├── data_rendering/ │ │ └── default.yaml │ ├── mapping/ │ │ └── default.yaml │ ├── obj_ids_metadata.json │ ├── output_rendering/ │ │ └── default.yaml │ ├── paths/ │ │ └── default.yaml │ ├── physics/ │ │ └── default.yaml │ ├── segmentation/ │ │ └── default.yaml │ ├── training/ │ │ └── default.yaml │ ├── training_3d/ │ │ └── default.yaml │ └── voxelization/ │ └── default.yaml ├── data_curation/ │ ├── cat_dict.json │ ├── download_objaverse.py │ ├── manual_data_filtering_correction.py │ ├── manual_sim_validation.py │ ├── objaverse_selection.py │ ├── render_blender.py │ └── render_objaverse_classes.py ├── data_readme.md ├── docs/ │ └── Cochin_Bold/ │ ├── Cochin_Bold.otf │ └── readme.html ├── nbs/ │ ├── pixie.ipynb │ └── real_scene.ipynb ├── normalization_stats/ │ ├── material_statistics.json │ └── normalization_ranges.yaml ├── pipeline.py ├── pixie/ │ ├── __init__.py │ ├── blender/ │ │ ├── __init__.py │ │ ├── apply_feature_colors.py │ │ ├── empty_scene.blend │ │ ├── generate_blendernerf_data.py │ │ ├── render_glb.py │ │ └── render_gs.py │ ├── metrics.py │ ├── training_utils.py │ ├── utils.py │ ├── viz_utils.py │ ├── vlm_labeler/ │ │ ├── __init__.py │ │ ├── vlm_data_filtering.py │ │ ├── vlm_parse_seg_critic.py │ │ ├── vlm_phys_judge.py │ │ ├── vlm_phys_sampler.py │ │ ├── vlm_seg.py │ │ ├── vlm_seg_class_instruction.py │ │ ├── vlm_seg_critic.py │ │ └── vlm_viz_seg_candidates.py │ └── voxel/ │ ├── __init__.py │ ├── map_pred_to_coords.py │ ├── segmentation.py │ ├── viz_segmentation.py │ └── voxelize.py ├── render.py ├── scripts/ │ ├── download_data.py │ ├── download_models.py │ ├── upload_data.py │ └── upload_models.py ├── setup.py └── third_party/ ├── PhysGaussian/ │ ├── .gitignore │ ├── .gitmodules │ ├── config/ │ │ ├── objaverse/ │ │ │ ├── custom_flowers_config.json │ │ │ ├── custom_fruit_config.json │ │ │ ├── custom_grass_config.json │ │ │ ├── custom_jello_block_config.json │ │ │ ├── custom_jelly_block_config.json │ │ │ ├── custom_metal_config.json │ │ │ ├── custom_metal_crates_config.json │ │ │ ├── custom_mud_config.json │ │ │ ├── custom_rocks_config.json │ │ │ ├── custom_rubber_ducks_and_toys_config.json │ │ │ ├── custom_sand_config.json │ │ │ ├── custom_shrubs_config.json │ │ │ ├── custom_snow_and_mud_config.json │ │ │ ├── custom_snow_config.json │ │ │ ├── custom_soda_cans_config.json │ │ │ ├── custom_sport_balls_config.json │ │ │ ├── custom_tree_config.json │ │ │ └── custom_water-like_bodies_config.json │ │ └── real_scene/ │ │ ├── custom_bonsai_config.json │ │ ├── custom_bouquet_config.json │ │ ├── custom_burger_config.json │ │ └── custom_vasedeck_config.json │ ├── gaussian-splatting/ │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── SIBR_viewers/ │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── cmake/ │ │ │ │ ├── linux/ │ │ │ │ │ ├── MSVCsetUserCommand.cmake │ │ │ │ │ ├── Modules/ │ │ │ │ │ │ ├── FindASSIMP.cmake │ │ │ │ │ │ ├── FindEGL.cmake │ │ │ │ │ │ ├── FindEmbree.cmake │ │ │ │ │ │ ├── FindFFMPEG.cmake │ │ │ │ │ │ └── FindGLFW.cmake │ │ │ │ │ ├── Win3rdParty.cmake │ │ │ │ │ ├── cmake_policies.cmake │ │ │ │ │ ├── dependencies.cmake │ │ │ │ │ ├── downloadAndExtractZipFile.cmake │ │ │ │ │ ├── git_describe.cmake │ │ │ │ │ ├── include_once.cmake │ │ │ │ │ ├── install_runtime.cmake │ │ │ │ │ ├── parse_arguments_multi.cmake │ │ │ │ │ └── sibr_library.cmake │ │ │ │ └── windows/ │ │ │ │ ├── MSVCsetUserCommand.cmake │ │ │ │ ├── Modules/ │ │ │ │ │ ├── FindASSIMP.cmake │ │ │ │ │ ├── FindEmbree.cmake │ │ │ │ │ └── FindFFmpeg.cmake │ │ │ │ ├── Win3rdParty.cmake │ │ │ │ ├── cmake_policies.cmake │ │ │ │ ├── dependencies.cmake │ │ │ │ ├── downloadAndExtractZipFile.cmake │ │ │ │ ├── git_describe.cmake │ │ │ │ ├── include_once.cmake │ │ │ │ ├── install_runtime.cmake │ │ │ │ ├── parse_arguments_multi.cmake │ │ │ │ └── sibr_library.cmake │ │ │ ├── docs/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── doxyfile.in │ │ │ │ ├── doxygen_prebuild.cmake.in │ │ │ │ ├── layout.xml.in │ │ │ │ └── pages/ │ │ │ │ ├── 1_Getting_Started.dox │ │ │ │ ├── 2_Projects.dox │ │ │ │ ├── 2_Projects.dox.in │ │ │ │ ├── 3_Tutorials.dox │ │ │ │ ├── 4_Architecture.dox │ │ │ │ └── Tutorials/ │ │ │ │ ├── How to generate your dataset/ │ │ │ │ │ ├── How_to_create_dataset_from_colmap.dox │ │ │ │ │ └── How_to_create_dataset_from_realitycapture.dox │ │ │ │ ├── How to setup your own project/ │ │ │ │ │ ├── Configuring_your_project.dox │ │ │ │ │ ├── Creating_your_library.dox │ │ │ │ │ ├── Documenting_a_project.dox │ │ │ │ │ └── Project_structure.dox │ │ │ │ ├── How_to_generate_your_dataset.dox │ │ │ │ ├── How_to_setup_your_own_project.dox │ │ │ │ ├── Paths_and_cameras.dox │ │ │ │ └── Useful_sibr_elements.dox │ │ │ └── src/ │ │ │ ├── CMakeLists.txt │ │ │ ├── core/ │ │ │ │ ├── graphics/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Camera.cpp │ │ │ │ │ ├── Camera.hpp │ │ │ │ │ ├── Config.hpp │ │ │ │ │ ├── Frustum.cpp │ │ │ │ │ ├── Frustum.hpp │ │ │ │ │ ├── GPUQuery.cpp │ │ │ │ │ ├── GPUQuery.hpp │ │ │ │ │ ├── GUI.cpp │ │ │ │ │ ├── GUI.hpp │ │ │ │ │ ├── Image.cpp │ │ │ │ │ ├── Image.hpp │ │ │ │ │ ├── Input.cpp │ │ │ │ │ ├── Input.hpp │ │ │ │ │ ├── MaterialMesh.cpp │ │ │ │ │ ├── MaterialMesh.hpp │ │ │ │ │ ├── Mesh.cpp │ │ │ │ │ ├── Mesh.hpp │ │ │ │ │ ├── MeshBufferGL.cpp │ │ │ │ │ ├── MeshBufferGL.hpp │ │ │ │ │ ├── RenderTarget.cpp │ │ │ │ │ ├── RenderTarget.hpp │ │ │ │ │ ├── RenderUtility.cpp │ │ │ │ │ ├── RenderUtility.hpp │ │ │ │ │ ├── Shader.cpp │ │ │ │ │ ├── Shader.hpp │ │ │ │ │ ├── Shader.inl │ │ │ │ │ ├── Texture.cpp │ │ │ │ │ ├── Texture.hpp │ │ │ │ │ ├── Types.hpp │ │ │ │ │ ├── Utils.cpp │ │ │ │ │ ├── Utils.hpp │ │ │ │ │ ├── Viewport.cpp │ │ │ │ │ ├── Viewport.hpp │ │ │ │ │ ├── Window.cpp │ │ │ │ │ ├── Window.hpp │ │ │ │ │ ├── resources/ │ │ │ │ │ │ └── imgui_default.ini │ │ │ │ │ └── sibr_graphics.dox │ │ │ │ ├── imgproc/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.hpp │ │ │ │ │ ├── CropScaleImageUtility.cpp │ │ │ │ │ ├── CropScaleImageUtility.hpp │ │ │ │ │ ├── DistordCropUtility.cpp │ │ │ │ │ ├── DistordCropUtility.hpp │ │ │ │ │ ├── MRFSolver.cpp │ │ │ │ │ ├── MRFSolver.h │ │ │ │ │ ├── MeshTexturing.cpp │ │ │ │ │ ├── MeshTexturing.hpp │ │ │ │ │ ├── PoissonReconstruction.cpp │ │ │ │ │ ├── PoissonReconstruction.hpp │ │ │ │ │ └── sibr_imgproc.dox │ │ │ │ ├── raycaster/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CameraRaycaster.cpp │ │ │ │ │ ├── CameraRaycaster.hpp │ │ │ │ │ ├── Config.hpp │ │ │ │ │ ├── Intersector2D.cpp │ │ │ │ │ ├── Intersector2D.h │ │ │ │ │ ├── KdTree.hpp │ │ │ │ │ ├── PlaneEstimator.cpp │ │ │ │ │ ├── PlaneEstimator.hpp │ │ │ │ │ ├── Ray.cpp │ │ │ │ │ ├── Ray.hpp │ │ │ │ │ ├── Raycaster.cpp │ │ │ │ │ ├── Raycaster.hpp │ │ │ │ │ ├── VoxelGrid.cpp │ │ │ │ │ ├── VoxelGrid.hpp │ │ │ │ │ └── sibr_raycaster.dox │ │ │ │ ├── renderer/ │ │ │ │ │ ├── AddShadowRenderer.cpp │ │ │ │ │ ├── AddShadowRenderer.hpp │ │ │ │ │ ├── BinaryMeshRenderer.cpp │ │ │ │ │ ├── BinaryMeshRenderer.hpp │ │ │ │ │ ├── BlurRenderer.cpp │ │ │ │ │ ├── BlurRenderer.hpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ColoredMeshRenderer.cpp │ │ │ │ │ ├── ColoredMeshRenderer.hpp │ │ │ │ │ ├── Config.hpp │ │ │ │ │ ├── CopyRenderer.cpp │ │ │ │ │ ├── CopyRenderer.hpp │ │ │ │ │ ├── DepthRenderer.cpp │ │ │ │ │ ├── DepthRenderer.hpp │ │ │ │ │ ├── NormalRenderer.cpp │ │ │ │ │ ├── NormalRenderer.hpp │ │ │ │ │ ├── PointBasedRenderer.cpp │ │ │ │ │ ├── PointBasedRenderer.hpp │ │ │ │ │ ├── PoissonRenderer.cpp │ │ │ │ │ ├── PoissonRenderer.hpp │ │ │ │ │ ├── PositionRender.cpp │ │ │ │ │ ├── PositionRender.hpp │ │ │ │ │ ├── RenderMaskHolder.cpp │ │ │ │ │ ├── RenderMaskHolder.hpp │ │ │ │ │ ├── ShadowMapRenderer.cpp │ │ │ │ │ ├── ShadowMapRenderer.hpp │ │ │ │ │ ├── TexturedMeshRenderer.cpp │ │ │ │ │ ├── TexturedMeshRenderer.hpp │ │ │ │ │ ├── shaders/ │ │ │ │ │ │ ├── addshadow.frag │ │ │ │ │ │ ├── blur.frag │ │ │ │ │ │ ├── colored_mesh.frag │ │ │ │ │ │ ├── colored_mesh.vert │ │ │ │ │ │ ├── copy.frag │ │ │ │ │ │ ├── copy_depth.frag │ │ │ │ │ │ ├── depthRenderer.fp │ │ │ │ │ │ ├── depthRenderer.vp │ │ │ │ │ │ ├── emotive_relight.frag │ │ │ │ │ │ ├── emotive_relight.vert │ │ │ │ │ │ ├── hdrEnvMap.frag │ │ │ │ │ │ ├── hdrEnvMap.vert │ │ │ │ │ │ ├── longlat.gp │ │ │ │ │ │ ├── longlat.tcs │ │ │ │ │ │ ├── longlat.tes │ │ │ │ │ │ ├── longlat.vp │ │ │ │ │ │ ├── longlatColor.fp │ │ │ │ │ │ ├── longlatDepth.fp │ │ │ │ │ │ ├── noproj.vert │ │ │ │ │ │ ├── normalRenderer.fp │ │ │ │ │ │ ├── normalRenderer.vp │ │ │ │ │ │ ├── normalRendererGen.gp │ │ │ │ │ │ ├── normalRendererGen.vp │ │ │ │ │ │ ├── poisson_diverg.frag │ │ │ │ │ │ ├── poisson_interp.frag │ │ │ │ │ │ ├── poisson_jacobi.frag │ │ │ │ │ │ ├── poisson_restrict.frag │ │ │ │ │ │ ├── positionReflectedDirRenderer.frag │ │ │ │ │ │ ├── positionReflectedDirRenderer.vert │ │ │ │ │ │ ├── positionRenderer.frag │ │ │ │ │ │ ├── positionRenderer.vert │ │ │ │ │ │ ├── shadowMapRenderer.fp │ │ │ │ │ │ ├── shadowMapRenderer.vp │ │ │ │ │ │ ├── texture-invert.frag │ │ │ │ │ │ ├── texture.frag │ │ │ │ │ │ ├── texture.vert │ │ │ │ │ │ ├── textured_mesh.frag │ │ │ │ │ │ ├── textured_mesh.vert │ │ │ │ │ │ └── textured_mesh_flipY.vert │ │ │ │ │ └── sibr_renderer.dox │ │ │ │ ├── scene/ │ │ │ │ │ ├── BasicIBRScene.cpp │ │ │ │ │ ├── BasicIBRScene.hpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CalibratedCameras.cpp │ │ │ │ │ ├── CalibratedCameras.hpp │ │ │ │ │ ├── Config.hpp │ │ │ │ │ ├── ICalibratedCameras.hpp │ │ │ │ │ ├── IIBRScene.hpp │ │ │ │ │ ├── IInputImages.hpp │ │ │ │ │ ├── IParseData.hpp │ │ │ │ │ ├── IProxyMesh.hpp │ │ │ │ │ ├── InputImages.cpp │ │ │ │ │ ├── InputImages.hpp │ │ │ │ │ ├── ParseData.cpp │ │ │ │ │ ├── ParseData.hpp │ │ │ │ │ ├── ProxyMesh.cpp │ │ │ │ │ ├── ProxyMesh.hpp │ │ │ │ │ ├── RenderTargetTextures.cpp │ │ │ │ │ ├── RenderTargetTextures.hpp │ │ │ │ │ └── sibr_scene.dox │ │ │ │ ├── system/ │ │ │ │ │ ├── Array2d.hpp │ │ │ │ │ ├── ByteStream.cpp │ │ │ │ │ ├── ByteStream.hpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CommandLineArgs.cpp │ │ │ │ │ ├── CommandLineArgs.hpp │ │ │ │ │ ├── Config.cpp │ │ │ │ │ ├── Config.hpp │ │ │ │ │ ├── LoadingProgress.cpp │ │ │ │ │ ├── LoadingProgress.hpp │ │ │ │ │ ├── MD5.h │ │ │ │ │ ├── Matrix.cpp │ │ │ │ │ ├── Matrix.hpp │ │ │ │ │ ├── MatrixBasePlugin.hpp │ │ │ │ │ ├── MatrixPlugin.hpp │ │ │ │ │ ├── Quaternion.cpp │ │ │ │ │ ├── Quaternion.hpp │ │ │ │ │ ├── Rect.hpp │ │ │ │ │ ├── SimpleTimer.hpp │ │ │ │ │ ├── String.cpp │ │ │ │ │ ├── String.hpp │ │ │ │ │ ├── ThreadIdWorker.cpp │ │ │ │ │ ├── ThreadIdWorker.hpp │ │ │ │ │ ├── Transform3.hpp │ │ │ │ │ ├── Utils.cpp │ │ │ │ │ ├── Utils.hpp │ │ │ │ │ ├── Vector.cpp │ │ │ │ │ ├── Vector.hpp │ │ │ │ │ ├── VectorUtils.cpp │ │ │ │ │ ├── VectorUtils.hpp │ │ │ │ │ ├── XMLTree.cpp │ │ │ │ │ ├── XMLTree.h │ │ │ │ │ └── sibr_system.dox │ │ │ │ ├── video/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.hpp │ │ │ │ │ ├── FFmpegVideoEncoder.cpp │ │ │ │ │ ├── FFmpegVideoEncoder.hpp │ │ │ │ │ ├── MultipleVideoDecoder.hpp │ │ │ │ │ ├── Video.cpp │ │ │ │ │ ├── Video.hpp │ │ │ │ │ ├── VideoUtils.cpp │ │ │ │ │ ├── VideoUtils.hpp │ │ │ │ │ └── sibr_video.dox │ │ │ │ └── view/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Config.hpp │ │ │ │ ├── DatasetView.cpp │ │ │ │ ├── DatasetView.hpp │ │ │ │ ├── FPSCamera.cpp │ │ │ │ ├── FPSCamera.hpp │ │ │ │ ├── FPSCounter.cpp │ │ │ │ ├── FPSCounter.hpp │ │ │ │ ├── IBRBasicUtils.cpp │ │ │ │ ├── IBRBasicUtils.hpp │ │ │ │ ├── ICameraHandler.cpp │ │ │ │ ├── ICameraHandler.hpp │ │ │ │ ├── ImageView.cpp │ │ │ │ ├── ImageView.hpp │ │ │ │ ├── ImagesGrid.cpp │ │ │ │ ├── ImagesGrid.hpp │ │ │ │ ├── InteractiveCameraHandler.cpp │ │ │ │ ├── InteractiveCameraHandler.hpp │ │ │ │ ├── MultiMeshManager.cpp │ │ │ │ ├── MultiMeshManager.hpp │ │ │ │ ├── MultiViewManager.cpp │ │ │ │ ├── MultiViewManager.hpp │ │ │ │ ├── Orbit.cpp │ │ │ │ ├── Orbit.hpp │ │ │ │ ├── RenderingMode.cpp │ │ │ │ ├── RenderingMode.hpp │ │ │ │ ├── SceneDebugView.cpp │ │ │ │ ├── SceneDebugView.hpp │ │ │ │ ├── Skybox.cpp │ │ │ │ ├── Skybox.hpp │ │ │ │ ├── TrackBall.cpp │ │ │ │ ├── TrackBall.h │ │ │ │ ├── UIShortcuts.cpp │ │ │ │ ├── UIShortcuts.hpp │ │ │ │ ├── ViewBase.cpp │ │ │ │ ├── ViewBase.hpp │ │ │ │ ├── interface/ │ │ │ │ │ ├── Interface.cpp │ │ │ │ │ ├── Interface.h │ │ │ │ │ ├── InterfaceUtils.cpp │ │ │ │ │ ├── InterfaceUtils.h │ │ │ │ │ ├── MeshViewer.cpp │ │ │ │ │ └── MeshViewer.h │ │ │ │ ├── shaders/ │ │ │ │ │ ├── alpha_colored_mesh.frag │ │ │ │ │ ├── alpha_colored_mesh.vert │ │ │ │ │ ├── alpha_colored_per_triangle_normals.geom │ │ │ │ │ ├── alpha_colored_per_triangle_normals.vert │ │ │ │ │ ├── alpha_colored_per_vertex_normals.geom │ │ │ │ │ ├── alpha_colored_per_vertex_normals.vert │ │ │ │ │ ├── alpha_points.frag │ │ │ │ │ ├── alpha_points.vert │ │ │ │ │ ├── alpha_uv_tex.frag │ │ │ │ │ ├── alpha_uv_tex_array.frag │ │ │ │ │ ├── alphaimgview.fp │ │ │ │ │ ├── alphaimgview.vp │ │ │ │ │ ├── anaglyph.fp │ │ │ │ │ ├── anaglyph.vp │ │ │ │ │ ├── axisgizmo.fp │ │ │ │ │ ├── axisgizmo.vp │ │ │ │ │ ├── camstub.fp │ │ │ │ │ ├── camstub.vp │ │ │ │ │ ├── depth.fp │ │ │ │ │ ├── depth.vp │ │ │ │ │ ├── depthonly.fp │ │ │ │ │ ├── depthonly.vp │ │ │ │ │ ├── image_viewer.frag │ │ │ │ │ ├── image_viewer.vert │ │ │ │ │ ├── mesh_color.fp │ │ │ │ │ ├── mesh_color.vp │ │ │ │ │ ├── mesh_debugview.fp │ │ │ │ │ ├── mesh_debugview.vp │ │ │ │ │ ├── mesh_normal.fp │ │ │ │ │ ├── mesh_normal.vp │ │ │ │ │ ├── number.fp │ │ │ │ │ ├── number.vp │ │ │ │ │ ├── skybox.fp │ │ │ │ │ ├── skybox.vp │ │ │ │ │ ├── text-imgui.fp │ │ │ │ │ ├── text-imgui.vp │ │ │ │ │ ├── texture.fp │ │ │ │ │ ├── texture.vp │ │ │ │ │ ├── topview.fp │ │ │ │ │ ├── topview.vp │ │ │ │ │ └── uv_mesh.vert │ │ │ │ └── sibr_view.dox │ │ │ └── projects/ │ │ │ ├── dataset_tools/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── documentation/ │ │ │ │ │ ├── dataset_tools.dox │ │ │ │ │ ├── dataset_tools_doc.cmake │ │ │ │ │ └── fullColmapProcess.dox │ │ │ │ ├── preprocess/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── alignMeshes/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── cameraConverter/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── clippingPlanes/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── converters/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── bundle.py │ │ │ │ │ │ ├── colmap2sibr.py │ │ │ │ │ │ ├── generate_list_images.py │ │ │ │ │ │ ├── get_image_size.py │ │ │ │ │ │ ├── ibr_convert_old_to_new.py │ │ │ │ │ │ ├── ibr_preprocess_rc_to_sibr.py │ │ │ │ │ │ ├── meshlab/ │ │ │ │ │ │ │ ├── simplify.mlx │ │ │ │ │ │ │ ├── simplify200.mlx │ │ │ │ │ │ │ ├── simplify250.mlx │ │ │ │ │ │ │ ├── simplify300.mlx │ │ │ │ │ │ │ ├── simplify350.mlx │ │ │ │ │ │ │ └── wedge_to_vertex_uvs.mlx │ │ │ │ │ │ ├── simplify_mesh.py │ │ │ │ │ │ └── wedge_to_vertex_uvs.py │ │ │ │ │ ├── cropFromCenter/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── distordCrop/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── fullColmapProcess/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ColmapProcessSteps.json │ │ │ │ │ │ ├── ColmapQualityParameters.json │ │ │ │ │ │ ├── SelectiveColmapProcessSteps.json │ │ │ │ │ │ ├── colmap2nerf.py │ │ │ │ │ │ ├── fullColmapProcess.py │ │ │ │ │ │ ├── read_write_model.py │ │ │ │ │ │ ├── selectiveColmapProcess.py │ │ │ │ │ │ ├── selective_colmap_process.py │ │ │ │ │ │ └── textureOnly.py │ │ │ │ │ ├── meshroomPythonScripts/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── ULR.py │ │ │ │ │ ├── nvmToSIBR/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── prepareColmap4Sibr/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── realityCaptureTools/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetVariables.bat │ │ │ │ │ │ ├── exportModel.xml │ │ │ │ │ │ ├── fixup.bat │ │ │ │ │ │ ├── processRCSteps.json │ │ │ │ │ │ ├── rc_tools.py │ │ │ │ │ │ ├── registrationConfig.xml │ │ │ │ │ │ └── runRC.bat │ │ │ │ │ ├── textureMesh/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── tonemapper/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── unwrapMesh/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.cpp │ │ │ │ │ └── utils/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── TaskPipeline.py │ │ │ │ │ ├── color.py │ │ │ │ │ ├── commands.py │ │ │ │ │ ├── convert.py │ │ │ │ │ ├── datasets.py │ │ │ │ │ └── paths.py │ │ │ │ └── scripts/ │ │ │ │ └── processRC.py │ │ │ └── ulr/ │ │ │ ├── CMakeLists.txt │ │ │ ├── apps/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ulr/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── resources/ │ │ │ │ │ └── sibr_ulr_app.ini │ │ │ │ └── ulrv2/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── resources/ │ │ │ │ └── sibr_ulrv2_app.ini │ │ │ ├── documentation/ │ │ │ │ ├── IBR_ULR.dox │ │ │ │ └── ulr_doc.cmake │ │ │ └── renderer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.hpp │ │ │ ├── ULRRenderer.cpp │ │ │ ├── ULRRenderer.hpp │ │ │ ├── ULRV2Renderer.cpp │ │ │ ├── ULRV2Renderer.hpp │ │ │ ├── ULRV2View.cpp │ │ │ ├── ULRV2View.hpp │ │ │ ├── ULRV3Renderer.cpp │ │ │ ├── ULRV3Renderer.hpp │ │ │ ├── ULRV3View.cpp │ │ │ ├── ULRV3View.hpp │ │ │ ├── ULRView.cpp │ │ │ ├── ULRView.hpp │ │ │ └── shaders/ │ │ │ ├── ulr.vert │ │ │ ├── ulr1.frag │ │ │ ├── ulr2.frag │ │ │ ├── ulr_intersect.frag │ │ │ ├── ulr_intersect.vert │ │ │ ├── ulr_v2.frag │ │ │ ├── ulr_v2.vert │ │ │ ├── ulr_v2_alt.frag │ │ │ ├── ulr_v3.frag │ │ │ ├── ulr_v3.vert │ │ │ ├── ulr_v3_alt.frag │ │ │ └── ulr_v3_fast.frag │ │ ├── arguments/ │ │ │ └── __init__.py │ │ ├── convert.py │ │ ├── environment.yml │ │ ├── full_eval.py │ │ ├── gaussian_renderer/ │ │ │ ├── __init__.py │ │ │ └── network_gui.py │ │ ├── lpipsPyTorch/ │ │ │ ├── __init__.py │ │ │ └── modules/ │ │ │ ├── lpips.py │ │ │ ├── networks.py │ │ │ └── utils.py │ │ ├── metrics.py │ │ ├── render.py │ │ ├── scene/ │ │ │ ├── __init__.py │ │ │ ├── cameras.py │ │ │ ├── colmap_loader.py │ │ │ ├── dataset_readers.py │ │ │ └── gaussian_model.py │ │ ├── submodules/ │ │ │ ├── diff-gaussian-rasterization/ │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitmodules │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── cuda_rasterizer/ │ │ │ │ │ ├── auxiliary.h │ │ │ │ │ ├── backward.cu │ │ │ │ │ ├── backward.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── forward.cu │ │ │ │ │ ├── forward.h │ │ │ │ │ ├── rasterizer.h │ │ │ │ │ ├── rasterizer_impl.cu │ │ │ │ │ └── rasterizer_impl.h │ │ │ │ ├── diff_gaussian_rasterization/ │ │ │ │ │ └── __init__.py │ │ │ │ ├── ext.cpp │ │ │ │ ├── rasterize_points.cu │ │ │ │ ├── rasterize_points.h │ │ │ │ ├── setup.py │ │ │ │ └── third_party/ │ │ │ │ ├── glm/ │ │ │ │ │ ├── .appveyor.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── cmake/ │ │ │ │ │ │ └── cmake_uninstall.cmake.in │ │ │ │ │ ├── copying.txt │ │ │ │ │ ├── doc/ │ │ │ │ │ │ ├── api/ │ │ │ │ │ │ │ ├── a00001_source.html │ │ │ │ │ │ │ ├── a00002_source.html │ │ │ │ │ │ │ ├── a00003_source.html │ │ │ │ │ │ │ ├── a00004_source.html │ │ │ │ │ │ │ ├── a00005_source.html │ │ │ │ │ │ │ ├── a00006_source.html │ │ │ │ │ │ │ ├── a00007.html │ │ │ │ │ │ │ ├── a00007_source.html │ │ │ │ │ │ │ ├── a00008.html │ │ │ │ │ │ │ ├── a00008_source.html │ │ │ │ │ │ │ ├── a00009.html │ │ │ │ │ │ │ ├── a00009_source.html │ │ │ │ │ │ │ ├── a00010.html │ │ │ │ │ │ │ ├── a00010_source.html │ │ │ │ │ │ │ ├── a00011.html │ │ │ │ │ │ │ ├── a00011_source.html │ │ │ │ │ │ │ ├── a00012.html │ │ │ │ │ │ │ ├── a00012_source.html │ │ │ │ │ │ │ ├── a00013.html │ │ │ │ │ │ │ ├── a00013_source.html │ │ │ │ │ │ │ ├── a00014.html │ │ │ │ │ │ │ ├── a00014_source.html │ │ │ │ │ │ │ ├── a00015.html │ │ │ │ │ │ │ ├── a00015_source.html │ │ │ │ │ │ │ ├── a00016.html │ │ │ │ │ │ │ ├── a00016_source.html │ │ │ │ │ │ │ ├── a00017.html │ │ │ │ │ │ │ ├── a00017_source.html │ │ │ │ │ │ │ ├── a00018.html │ │ │ │ │ │ │ ├── a00018_source.html │ │ │ │ │ │ │ ├── a00019_source.html │ │ │ │ │ │ │ ├── a00020_source.html │ │ │ │ │ │ │ ├── a00021.html │ │ │ │ │ │ │ ├── a00021_source.html │ │ │ │ │ │ │ ├── a00022.html │ │ │ │ │ │ │ ├── a00022_source.html │ │ │ │ │ │ │ ├── a00023.html │ │ │ │ │ │ │ ├── a00023_source.html │ │ │ │ │ │ │ ├── a00024.html │ │ │ │ │ │ │ ├── a00024_source.html │ │ │ │ │ │ │ ├── a00025.html │ │ │ │ │ │ │ ├── a00025_source.html │ │ │ │ │ │ │ ├── a00026.html │ │ │ │ │ │ │ ├── a00026_source.html │ │ │ │ │ │ │ ├── a00027.html │ │ │ │ │ │ │ ├── a00027_source.html │ │ │ │ │ │ │ ├── a00028.html │ │ │ │ │ │ │ ├── a00028_source.html │ │ │ │ │ │ │ ├── a00029.html │ │ │ │ │ │ │ ├── a00029_source.html │ │ │ │ │ │ │ ├── a00030.html │ │ │ │ │ │ │ ├── a00030_source.html │ │ │ │ │ │ │ ├── a00031.html │ │ │ │ │ │ │ ├── a00031_source.html │ │ │ │ │ │ │ ├── a00032.html │ │ │ │ │ │ │ ├── a00032_source.html │ │ │ │ │ │ │ ├── a00033.html │ │ │ │ │ │ │ ├── a00033_source.html │ │ │ │ │ │ │ ├── a00034.html │ │ │ │ │ │ │ ├── a00034_source.html │ │ │ │ │ │ │ ├── a00035_source.html │ │ │ │ │ │ │ ├── a00036.html │ │ │ │ │ │ │ ├── a00036_source.html │ │ │ │ │ │ │ ├── a00037.html │ │ │ │ │ │ │ ├── a00037_source.html │ │ │ │ │ │ │ ├── a00038.html │ │ │ │ │ │ │ ├── a00038_source.html │ │ │ │ │ │ │ ├── a00039.html │ │ │ │ │ │ │ ├── a00039_source.html │ │ │ │ │ │ │ ├── a00040.html │ │ │ │ │ │ │ ├── a00040_source.html │ │ │ │ │ │ │ ├── a00041.html │ │ │ │ │ │ │ ├── a00041_source.html │ │ │ │ │ │ │ ├── a00042.html │ │ │ │ │ │ │ ├── a00042_source.html │ │ │ │ │ │ │ ├── a00043.html │ │ │ │ │ │ │ ├── a00043_source.html │ │ │ │ │ │ │ ├── a00044.html │ │ │ │ │ │ │ ├── a00044_source.html │ │ │ │ │ │ │ ├── a00045.html │ │ │ │ │ │ │ ├── a00045_source.html │ │ │ │ │ │ │ ├── a00046.html │ │ │ │ │ │ │ ├── a00046_source.html │ │ │ │ │ │ │ ├── a00047_source.html │ │ │ │ │ │ │ ├── a00048.html │ │ │ │ │ │ │ ├── a00048_source.html │ │ │ │ │ │ │ ├── a00049.html │ │ │ │ │ │ │ ├── a00049_source.html │ │ │ │ │ │ │ ├── a00050.html │ │ │ │ │ │ │ ├── a00050_source.html │ │ │ │ │ │ │ ├── a00051.html │ │ │ │ │ │ │ ├── a00051_source.html │ │ │ │ │ │ │ ├── a00052.html │ │ │ │ │ │ │ ├── a00052_source.html │ │ │ │ │ │ │ ├── a00053.html │ │ │ │ │ │ │ ├── a00053_source.html │ │ │ │ │ │ │ ├── a00054.html │ │ │ │ │ │ │ ├── a00054_source.html │ │ │ │ │ │ │ ├── a00055.html │ │ │ │ │ │ │ ├── a00055_source.html │ │ │ │ │ │ │ ├── a00056.html │ │ │ │ │ │ │ ├── a00056_source.html │ │ │ │ │ │ │ ├── a00057.html │ │ │ │ │ │ │ ├── a00057_source.html │ │ │ │ │ │ │ ├── a00058.html │ │ │ │ │ │ │ ├── a00058_source.html │ │ │ │ │ │ │ ├── a00059.html │ │ │ │ │ │ │ ├── a00059_source.html │ │ │ │ │ │ │ ├── a00060.html │ │ │ │ │ │ │ ├── a00060_source.html │ │ │ │ │ │ │ ├── a00061.html │ │ │ │ │ │ │ ├── a00061_source.html │ │ │ │ │ │ │ ├── a00062.html │ │ │ │ │ │ │ ├── a00062_source.html │ │ │ │ │ │ │ ├── a00063.html │ │ │ │ │ │ │ ├── a00063_source.html │ │ │ │ │ │ │ ├── a00064.html │ │ │ │ │ │ │ ├── a00064_source.html │ │ │ │ │ │ │ ├── a00065.html │ │ │ │ │ │ │ ├── a00065_source.html │ │ │ │ │ │ │ ├── a00066.html │ │ │ │ │ │ │ ├── a00066_source.html │ │ │ │ │ │ │ ├── a00067.html │ │ │ │ │ │ │ ├── a00067_source.html │ │ │ │ │ │ │ ├── a00068.html │ │ │ │ │ │ │ ├── a00068_source.html │ │ │ │ │ │ │ ├── a00069.html │ │ │ │ │ │ │ ├── a00069_source.html │ │ │ │ │ │ │ ├── a00070.html │ │ │ │ │ │ │ ├── a00070_source.html │ │ │ │ │ │ │ ├── a00071.html │ │ │ │ │ │ │ ├── a00071_source.html │ │ │ │ │ │ │ ├── a00072.html │ │ │ │ │ │ │ ├── a00072_source.html │ │ │ │ │ │ │ ├── a00073.html │ │ │ │ │ │ │ ├── a00073_source.html │ │ │ │ │ │ │ ├── a00074.html │ │ │ │ │ │ │ ├── a00074_source.html │ │ │ │ │ │ │ ├── a00075.html │ │ │ │ │ │ │ ├── a00075_source.html │ │ │ │ │ │ │ ├── a00076.html │ │ │ │ │ │ │ ├── a00076_source.html │ │ │ │ │ │ │ ├── a00077.html │ │ │ │ │ │ │ ├── a00077_source.html │ │ │ │ │ │ │ ├── a00078.html │ │ │ │ │ │ │ ├── a00078_source.html │ │ │ │ │ │ │ ├── a00079.html │ │ │ │ │ │ │ ├── a00079_source.html │ │ │ │ │ │ │ ├── a00080.html │ │ │ │ │ │ │ ├── a00080_source.html │ │ │ │ │ │ │ ├── a00081.html │ │ │ │ │ │ │ ├── a00081_source.html │ │ │ │ │ │ │ ├── a00082.html │ │ │ │ │ │ │ ├── a00082_source.html │ │ │ │ │ │ │ ├── a00083.html │ │ │ │ │ │ │ ├── a00083_source.html │ │ │ │ │ │ │ ├── a00084.html │ │ │ │ │ │ │ ├── a00084_source.html │ │ │ │ │ │ │ ├── a00085.html │ │ │ │ │ │ │ ├── a00085_source.html │ │ │ │ │ │ │ ├── a00086.html │ │ │ │ │ │ │ ├── a00086_source.html │ │ │ │ │ │ │ ├── a00087.html │ │ │ │ │ │ │ ├── a00087_source.html │ │ │ │ │ │ │ ├── a00088.html │ │ │ │ │ │ │ ├── a00088_source.html │ │ │ │ │ │ │ ├── a00089.html │ │ │ │ │ │ │ ├── a00089_source.html │ │ │ │ │ │ │ ├── a00090.html │ │ │ │ │ │ │ ├── a00090_source.html │ │ │ │ │ │ │ ├── a00091.html │ │ │ │ │ │ │ ├── a00091_source.html │ │ │ │ │ │ │ ├── a00092.html │ │ │ │ │ │ │ ├── a00092_source.html │ │ │ │ │ │ │ ├── a00093.html │ │ │ │ │ │ │ ├── a00093_source.html │ │ │ │ │ │ │ ├── a00094.html │ │ │ │ │ │ │ ├── a00094_source.html │ │ │ │ │ │ │ ├── a00095_source.html │ │ │ │ │ │ │ ├── a00096.html │ │ │ │ │ │ │ ├── a00096_source.html │ │ │ │ │ │ │ ├── a00097.html │ │ │ │ │ │ │ ├── a00097_source.html │ │ │ │ │ │ │ ├── a00098.html │ │ │ │ │ │ │ ├── a00098_source.html │ │ │ │ │ │ │ ├── a00099.html │ │ │ │ │ │ │ ├── a00099_source.html │ │ │ │ │ │ │ ├── a00100.html │ │ │ │ │ │ │ ├── a00100_source.html │ │ │ │ │ │ │ ├── a00101.html │ │ │ │ │ │ │ ├── a00101_source.html │ │ │ │ │ │ │ ├── a00102.html │ │ │ │ │ │ │ ├── a00102_source.html │ │ │ │ │ │ │ ├── a00103.html │ │ │ │ │ │ │ ├── a00103_source.html │ │ │ │ │ │ │ ├── a00104.html │ │ │ │ │ │ │ ├── a00104_source.html │ │ │ │ │ │ │ ├── a00105.html │ │ │ │ │ │ │ ├── a00105_source.html │ │ │ │ │ │ │ ├── a00106.html │ │ │ │ │ │ │ ├── a00106_source.html │ │ │ │ │ │ │ ├── a00107.html │ │ │ │ │ │ │ ├── a00107_source.html │ │ │ │ │ │ │ ├── a00108.html │ │ │ │ │ │ │ ├── a00108_source.html │ │ │ │ │ │ │ ├── a00109.html │ │ │ │ │ │ │ ├── a00109_source.html │ │ │ │ │ │ │ ├── a00110.html │ │ │ │ │ │ │ ├── a00110_source.html │ │ │ │ │ │ │ ├── a00111.html │ │ │ │ │ │ │ ├── a00111_source.html │ │ │ │ │ │ │ ├── a00112.html │ │ │ │ │ │ │ ├── a00112_source.html │ │ │ │ │ │ │ ├── a00113.html │ │ │ │ │ │ │ ├── a00113_source.html │ │ │ │ │ │ │ ├── a00114.html │ │ │ │ │ │ │ ├── a00114_source.html │ │ │ │ │ │ │ ├── a00115.html │ │ │ │ │ │ │ ├── a00115_source.html │ │ │ │ │ │ │ ├── a00116.html │ │ │ │ │ │ │ ├── a00116_source.html │ │ │ │ │ │ │ ├── a00117.html │ │ │ │ │ │ │ ├── a00117_source.html │ │ │ │ │ │ │ ├── a00118.html │ │ │ │ │ │ │ ├── a00118_source.html │ │ │ │ │ │ │ ├── a00119.html │ │ │ │ │ │ │ ├── a00119_source.html │ │ │ │ │ │ │ ├── a00120.html │ │ │ │ │ │ │ ├── a00120_source.html │ │ │ │ │ │ │ ├── a00121.html │ │ │ │ │ │ │ ├── a00121_source.html │ │ │ │ │ │ │ ├── a00122.html │ │ │ │ │ │ │ ├── a00122_source.html │ │ │ │ │ │ │ ├── a00123.html │ │ │ │ │ │ │ ├── a00123_source.html │ │ │ │ │ │ │ ├── a00124_source.html │ │ │ │ │ │ │ ├── a00125.html │ │ │ │ │ │ │ ├── a00125_source.html │ │ │ │ │ │ │ ├── a00126.html │ │ │ │ │ │ │ ├── a00126_source.html │ │ │ │ │ │ │ ├── a00127.html │ │ │ │ │ │ │ ├── a00127_source.html │ │ │ │ │ │ │ ├── a00128.html │ │ │ │ │ │ │ ├── a00128_source.html │ │ │ │ │ │ │ ├── a00129.html │ │ │ │ │ │ │ ├── a00129_source.html │ │ │ │ │ │ │ ├── a00130.html │ │ │ │ │ │ │ ├── a00130_source.html │ │ │ │ │ │ │ ├── a00131.html │ │ │ │ │ │ │ ├── a00131_source.html │ │ │ │ │ │ │ ├── a00132.html │ │ │ │ │ │ │ ├── a00132_source.html │ │ │ │ │ │ │ ├── a00133.html │ │ │ │ │ │ │ ├── a00133_source.html │ │ │ │ │ │ │ ├── a00134.html │ │ │ │ │ │ │ ├── a00134_source.html │ │ │ │ │ │ │ ├── a00135.html │ │ │ │ │ │ │ ├── a00135_source.html │ │ │ │ │ │ │ ├── a00136.html │ │ │ │ │ │ │ ├── a00136_source.html │ │ │ │ │ │ │ ├── a00137.html │ │ │ │ │ │ │ ├── a00137_source.html │ │ │ │ │ │ │ ├── a00138.html │ │ │ │ │ │ │ ├── a00138_source.html │ │ │ │ │ │ │ ├── a00139.html │ │ │ │ │ │ │ ├── a00139_source.html │ │ │ │ │ │ │ ├── a00140.html │ │ │ │ │ │ │ ├── a00140_source.html │ │ │ │ │ │ │ ├── a00141.html │ │ │ │ │ │ │ ├── a00141_source.html │ │ │ │ │ │ │ ├── a00142.html │ │ │ │ │ │ │ ├── a00142_source.html │ │ │ │ │ │ │ ├── a00143.html │ │ │ │ │ │ │ ├── a00143_source.html │ │ │ │ │ │ │ ├── a00144.html │ │ │ │ │ │ │ ├── a00144_source.html │ │ │ │ │ │ │ ├── a00145.html │ │ │ │ │ │ │ ├── a00145_source.html │ │ │ │ │ │ │ ├── a00146.html │ │ │ │ │ │ │ ├── a00146_source.html │ │ │ │ │ │ │ ├── a00147.html │ │ │ │ │ │ │ ├── a00147_source.html │ │ │ │ │ │ │ ├── a00148.html │ │ │ │ │ │ │ ├── a00148_source.html │ │ │ │ │ │ │ ├── a00149.html │ │ │ │ │ │ │ ├── a00149_source.html │ │ │ │ │ │ │ ├── a00150.html │ │ │ │ │ │ │ ├── a00150_source.html │ │ │ │ │ │ │ ├── a00151.html │ │ │ │ │ │ │ ├── a00151_source.html │ │ │ │ │ │ │ ├── a00152.html │ │ │ │ │ │ │ ├── a00152_source.html │ │ │ │ │ │ │ ├── a00153_source.html │ │ │ │ │ │ │ ├── a00154.html │ │ │ │ │ │ │ ├── a00154_source.html │ │ │ │ │ │ │ ├── a00155.html │ │ │ │ │ │ │ ├── a00155_source.html │ │ │ │ │ │ │ ├── a00156.html │ │ │ │ │ │ │ ├── a00156_source.html │ │ │ │ │ │ │ ├── a00157.html │ │ │ │ │ │ │ ├── a00157_source.html │ │ │ │ │ │ │ ├── a00158.html │ │ │ │ │ │ │ ├── a00158_source.html │ │ │ │ │ │ │ ├── a00159.html │ │ │ │ │ │ │ ├── a00159_source.html │ │ │ │ │ │ │ ├── a00160.html │ │ │ │ │ │ │ ├── a00160_source.html │ │ │ │ │ │ │ ├── a00161.html │ │ │ │ │ │ │ ├── a00161_source.html │ │ │ │ │ │ │ ├── a00162.html │ │ │ │ │ │ │ ├── a00162_source.html │ │ │ │ │ │ │ ├── a00163_source.html │ │ │ │ │ │ │ ├── a00164_source.html │ │ │ │ │ │ │ ├── a00165.html │ │ │ │ │ │ │ ├── a00165_source.html │ │ │ │ │ │ │ ├── a00166.html │ │ │ │ │ │ │ ├── a00166_source.html │ │ │ │ │ │ │ ├── a00167.html │ │ │ │ │ │ │ ├── a00167_source.html │ │ │ │ │ │ │ ├── a00168.html │ │ │ │ │ │ │ ├── a00168_source.html │ │ │ │ │ │ │ ├── a00169.html │ │ │ │ │ │ │ ├── a00169_source.html │ │ │ │ │ │ │ ├── a00170.html │ │ │ │ │ │ │ ├── a00170_source.html │ │ │ │ │ │ │ ├── a00171.html │ │ │ │ │ │ │ ├── a00171_source.html │ │ │ │ │ │ │ ├── a00172.html │ │ │ │ │ │ │ ├── a00172_source.html │ │ │ │ │ │ │ ├── a00173.html │ │ │ │ │ │ │ ├── a00173_source.html │ │ │ │ │ │ │ ├── a00174.html │ │ │ │ │ │ │ ├── a00174_source.html │ │ │ │ │ │ │ ├── a00175.html │ │ │ │ │ │ │ ├── a00175_source.html │ │ │ │ │ │ │ ├── a00176.html │ │ │ │ │ │ │ ├── a00176_source.html │ │ │ │ │ │ │ ├── a00177.html │ │ │ │ │ │ │ ├── a00177_source.html │ │ │ │ │ │ │ ├── a00178.html │ │ │ │ │ │ │ ├── a00178_source.html │ │ │ │ │ │ │ ├── a00179.html │ │ │ │ │ │ │ ├── a00179_source.html │ │ │ │ │ │ │ ├── a00180.html │ │ │ │ │ │ │ ├── a00180_source.html │ │ │ │ │ │ │ ├── a00181.html │ │ │ │ │ │ │ ├── a00181_source.html │ │ │ │ │ │ │ ├── a00182.html │ │ │ │ │ │ │ ├── a00182_source.html │ │ │ │ │ │ │ ├── a00183.html │ │ │ │ │ │ │ ├── a00183_source.html │ │ │ │ │ │ │ ├── a00184.html │ │ │ │ │ │ │ ├── a00184_source.html │ │ │ │ │ │ │ ├── a00185.html │ │ │ │ │ │ │ ├── a00185_source.html │ │ │ │ │ │ │ ├── a00186.html │ │ │ │ │ │ │ ├── a00186_source.html │ │ │ │ │ │ │ ├── a00187.html │ │ │ │ │ │ │ ├── a00187_source.html │ │ │ │ │ │ │ ├── a00188.html │ │ │ │ │ │ │ ├── a00188_source.html │ │ │ │ │ │ │ ├── a00189.html │ │ │ │ │ │ │ ├── a00189_source.html │ │ │ │ │ │ │ ├── a00190.html │ │ │ │ │ │ │ ├── a00190_source.html │ │ │ │ │ │ │ ├── a00191.html │ │ │ │ │ │ │ ├── a00191_source.html │ │ │ │ │ │ │ ├── a00192.html │ │ │ │ │ │ │ ├── a00192_source.html │ │ │ │ │ │ │ ├── a00193.html │ │ │ │ │ │ │ ├── a00193_source.html │ │ │ │ │ │ │ ├── a00194.html │ │ │ │ │ │ │ ├── a00194_source.html │ │ │ │ │ │ │ ├── a00195.html │ │ │ │ │ │ │ ├── a00195_source.html │ │ │ │ │ │ │ ├── a00196.html │ │ │ │ │ │ │ ├── a00196_source.html │ │ │ │ │ │ │ ├── a00197.html │ │ │ │ │ │ │ ├── a00197_source.html │ │ │ │ │ │ │ ├── a00198.html │ │ │ │ │ │ │ ├── a00198_source.html │ │ │ │ │ │ │ ├── a00199.html │ │ │ │ │ │ │ ├── a00199_source.html │ │ │ │ │ │ │ ├── a00200.html │ │ │ │ │ │ │ ├── a00200_source.html │ │ │ │ │ │ │ ├── a00201.html │ │ │ │ │ │ │ ├── a00201_source.html │ │ │ │ │ │ │ ├── a00202.html │ │ │ │ │ │ │ ├── a00202_source.html │ │ │ │ │ │ │ ├── a00203.html │ │ │ │ │ │ │ ├── a00203_source.html │ │ │ │ │ │ │ ├── a00204.html │ │ │ │ │ │ │ ├── a00204_source.html │ │ │ │ │ │ │ ├── a00205.html │ │ │ │ │ │ │ ├── a00205_source.html │ │ │ │ │ │ │ ├── a00206.html │ │ │ │ │ │ │ ├── a00206_source.html │ │ │ │ │ │ │ ├── a00207.html │ │ │ │ │ │ │ ├── a00207_source.html │ │ │ │ │ │ │ ├── a00208.html │ │ │ │ │ │ │ ├── a00208_source.html │ │ │ │ │ │ │ ├── a00209.html │ │ │ │ │ │ │ ├── a00209_source.html │ │ │ │ │ │ │ ├── a00210.html │ │ │ │ │ │ │ ├── a00210_source.html │ │ │ │ │ │ │ ├── a00211.html │ │ │ │ │ │ │ ├── a00211_source.html │ │ │ │ │ │ │ ├── a00212.html │ │ │ │ │ │ │ ├── a00212_source.html │ │ │ │ │ │ │ ├── a00213.html │ │ │ │ │ │ │ ├── a00213_source.html │ │ │ │ │ │ │ ├── a00214.html │ │ │ │ │ │ │ ├── a00214_source.html │ │ │ │ │ │ │ ├── a00215.html │ │ │ │ │ │ │ ├── a00215_source.html │ │ │ │ │ │ │ ├── a00216.html │ │ │ │ │ │ │ ├── a00216_source.html │ │ │ │ │ │ │ ├── a00217.html │ │ │ │ │ │ │ ├── a00217_source.html │ │ │ │ │ │ │ ├── a00218.html │ │ │ │ │ │ │ ├── a00218_source.html │ │ │ │ │ │ │ ├── a00219.html │ │ │ │ │ │ │ ├── a00219_source.html │ │ │ │ │ │ │ ├── a00220.html │ │ │ │ │ │ │ ├── a00220_source.html │ │ │ │ │ │ │ ├── a00221.html │ │ │ │ │ │ │ ├── a00221_source.html │ │ │ │ │ │ │ ├── a00222.html │ │ │ │ │ │ │ ├── a00222_source.html │ │ │ │ │ │ │ ├── a00223.html │ │ │ │ │ │ │ ├── a00223_source.html │ │ │ │ │ │ │ ├── a00224.html │ │ │ │ │ │ │ ├── a00224_source.html │ │ │ │ │ │ │ ├── a00225.html │ │ │ │ │ │ │ ├── a00225_source.html │ │ │ │ │ │ │ ├── a00226.html │ │ │ │ │ │ │ ├── a00226_source.html │ │ │ │ │ │ │ ├── a00227.html │ │ │ │ │ │ │ ├── a00227_source.html │ │ │ │ │ │ │ ├── a00228.html │ │ │ │ │ │ │ ├── a00228_source.html │ │ │ │ │ │ │ ├── a00229.html │ │ │ │ │ │ │ ├── a00229_source.html │ │ │ │ │ │ │ ├── a00230.html │ │ │ │ │ │ │ ├── a00230_source.html │ │ │ │ │ │ │ ├── a00231.html │ │ │ │ │ │ │ ├── a00231_source.html │ │ │ │ │ │ │ ├── a00232.html │ │ │ │ │ │ │ ├── a00232_source.html │ │ │ │ │ │ │ ├── a00233.html │ │ │ │ │ │ │ ├── a00233_source.html │ │ │ │ │ │ │ ├── a00234.html │ │ │ │ │ │ │ ├── a00234_source.html │ │ │ │ │ │ │ ├── a00235.html │ │ │ │ │ │ │ ├── a00235_source.html │ │ │ │ │ │ │ ├── a00241.html │ │ │ │ │ │ │ ├── a00242.html │ │ │ │ │ │ │ ├── a00243.html │ │ │ │ │ │ │ ├── a00244.html │ │ │ │ │ │ │ ├── a00245.html │ │ │ │ │ │ │ ├── a00246.html │ │ │ │ │ │ │ ├── a00247.html │ │ │ │ │ │ │ ├── a00248.html │ │ │ │ │ │ │ ├── a00249.html │ │ │ │ │ │ │ ├── a00250.html │ │ │ │ │ │ │ ├── a00251.html │ │ │ │ │ │ │ ├── a00252.html │ │ │ │ │ │ │ ├── a00253.html │ │ │ │ │ │ │ ├── a00254.html │ │ │ │ │ │ │ ├── a00255.html │ │ │ │ │ │ │ ├── a00256.html │ │ │ │ │ │ │ ├── a00257.html │ │ │ │ │ │ │ ├── a00258.html │ │ │ │ │ │ │ ├── a00259.html │ │ │ │ │ │ │ ├── a00260.html │ │ │ │ │ │ │ ├── a00261.html │ │ │ │ │ │ │ ├── a00262.html │ │ │ │ │ │ │ ├── a00263.html │ │ │ │ │ │ │ ├── a00264.html │ │ │ │ │ │ │ ├── a00265.html │ │ │ │ │ │ │ ├── a00266.html │ │ │ │ │ │ │ ├── a00267.html │ │ │ │ │ │ │ ├── a00268.html │ │ │ │ │ │ │ ├── a00269.html │ │ │ │ │ │ │ ├── a00270.html │ │ │ │ │ │ │ ├── a00271.html │ │ │ │ │ │ │ ├── a00272.html │ │ │ │ │ │ │ ├── a00273.html │ │ │ │ │ │ │ ├── a00274.html │ │ │ │ │ │ │ ├── a00275.html │ │ │ │ │ │ │ ├── a00276.html │ │ │ │ │ │ │ ├── a00277.html │ │ │ │ │ │ │ ├── a00278.html │ │ │ │ │ │ │ ├── a00279.html │ │ │ │ │ │ │ ├── a00280.html │ │ │ │ │ │ │ ├── a00281.html │ │ │ │ │ │ │ ├── a00282.html │ │ │ │ │ │ │ ├── a00283.html │ │ │ │ │ │ │ ├── a00284.html │ │ │ │ │ │ │ ├── a00285.html │ │ │ │ │ │ │ ├── a00286.html │ │ │ │ │ │ │ ├── a00287.html │ │ │ │ │ │ │ ├── a00288.html │ │ │ │ │ │ │ ├── a00289.html │ │ │ │ │ │ │ ├── a00290.html │ │ │ │ │ │ │ ├── a00291.html │ │ │ │ │ │ │ ├── a00292.html │ │ │ │ │ │ │ ├── a00293.html │ │ │ │ │ │ │ ├── a00294.html │ │ │ │ │ │ │ ├── a00295.html │ │ │ │ │ │ │ ├── a00296.html │ │ │ │ │ │ │ ├── a00297.html │ │ │ │ │ │ │ ├── a00298.html │ │ │ │ │ │ │ ├── a00299.html │ │ │ │ │ │ │ ├── a00300.html │ │ │ │ │ │ │ ├── a00301.html │ │ │ │ │ │ │ ├── a00302.html │ │ │ │ │ │ │ ├── a00303.html │ │ │ │ │ │ │ ├── a00304.html │ │ │ │ │ │ │ ├── a00305.html │ │ │ │ │ │ │ ├── a00306.html │ │ │ │ │ │ │ ├── a00307.html │ │ │ │ │ │ │ ├── a00308.html │ │ │ │ │ │ │ ├── a00309.html │ │ │ │ │ │ │ ├── a00310.html │ │ │ │ │ │ │ ├── a00311.html │ │ │ │ │ │ │ ├── a00312.html │ │ │ │ │ │ │ ├── a00313.html │ │ │ │ │ │ │ ├── a00314.html │ │ │ │ │ │ │ ├── a00315.html │ │ │ │ │ │ │ ├── a00316.html │ │ │ │ │ │ │ ├── a00317.html │ │ │ │ │ │ │ ├── a00318.html │ │ │ │ │ │ │ ├── a00319.html │ │ │ │ │ │ │ ├── a00320.html │ │ │ │ │ │ │ ├── a00321.html │ │ │ │ │ │ │ ├── a00322.html │ │ │ │ │ │ │ ├── a00323.html │ │ │ │ │ │ │ ├── a00324.html │ │ │ │ │ │ │ ├── a00325.html │ │ │ │ │ │ │ ├── a00326.html │ │ │ │ │ │ │ ├── a00327.html │ │ │ │ │ │ │ ├── a00328.html │ │ │ │ │ │ │ ├── a00329.html │ │ │ │ │ │ │ ├── a00330.html │ │ │ │ │ │ │ ├── a00331.html │ │ │ │ │ │ │ ├── a00332.html │ │ │ │ │ │ │ ├── a00333.html │ │ │ │ │ │ │ ├── a00334.html │ │ │ │ │ │ │ ├── a00335.html │ │ │ │ │ │ │ ├── a00336.html │ │ │ │ │ │ │ ├── a00337.html │ │ │ │ │ │ │ ├── a00338.html │ │ │ │ │ │ │ ├── a00339.html │ │ │ │ │ │ │ ├── a00340.html │ │ │ │ │ │ │ ├── a00341.html │ │ │ │ │ │ │ ├── a00342.html │ │ │ │ │ │ │ ├── a00343.html │ │ │ │ │ │ │ ├── a00344.html │ │ │ │ │ │ │ ├── a00345.html │ │ │ │ │ │ │ ├── a00346.html │ │ │ │ │ │ │ ├── a00347.html │ │ │ │ │ │ │ ├── a00348.html │ │ │ │ │ │ │ ├── a00349.html │ │ │ │ │ │ │ ├── a00350.html │ │ │ │ │ │ │ ├── a00351.html │ │ │ │ │ │ │ ├── a00352.html │ │ │ │ │ │ │ ├── a00353.html │ │ │ │ │ │ │ ├── a00354.html │ │ │ │ │ │ │ ├── a00355.html │ │ │ │ │ │ │ ├── a00356.html │ │ │ │ │ │ │ ├── a00357.html │ │ │ │ │ │ │ ├── a00358.html │ │ │ │ │ │ │ ├── a00359.html │ │ │ │ │ │ │ ├── a00360.html │ │ │ │ │ │ │ ├── a00361.html │ │ │ │ │ │ │ ├── a00362.html │ │ │ │ │ │ │ ├── a00363.html │ │ │ │ │ │ │ ├── a00364.html │ │ │ │ │ │ │ ├── a00365.html │ │ │ │ │ │ │ ├── a00366.html │ │ │ │ │ │ │ ├── a00367.html │ │ │ │ │ │ │ ├── a00368.html │ │ │ │ │ │ │ ├── a00369.html │ │ │ │ │ │ │ ├── a00370.html │ │ │ │ │ │ │ ├── a00371.html │ │ │ │ │ │ │ ├── a00372.html │ │ │ │ │ │ │ ├── a00373.html │ │ │ │ │ │ │ ├── a00374.html │ │ │ │ │ │ │ ├── dir_033f5edb0915b828d2c46ed4804e5503.html │ │ │ │ │ │ │ ├── dir_3a581ba30d25676e4b797b1f96d53b45.html │ │ │ │ │ │ │ ├── dir_44e5e654415abd9ca6fdeaddaff8565e.html │ │ │ │ │ │ │ ├── dir_4c6bd29c73fa4e5a2509e1c15f846751.html │ │ │ │ │ │ │ ├── dir_5189610d3ba09ec39b766fb99b34cd93.html │ │ │ │ │ │ │ ├── dir_6b66465792d005310484819a0eb0b0d3.html │ │ │ │ │ │ │ ├── dir_9e5fe034a00e89334fd5186c3e7db156.html │ │ │ │ │ │ │ ├── dir_a8bee7be44182a33f3820393ae0b105d.html │ │ │ │ │ │ │ ├── dir_cef2d71d502cb69a9252bca2297d9549.html │ │ │ │ │ │ │ ├── dir_d9496f0844b48bc7e53b5af8c99b9ab2.html │ │ │ │ │ │ │ ├── dir_f35778ec600a1b9bbc4524e62e226aa2.html │ │ │ │ │ │ │ ├── doxygen.css │ │ │ │ │ │ │ ├── dynsections.js │ │ │ │ │ │ │ ├── files.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── modules.html │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ ├── all_0.html │ │ │ │ │ │ │ │ ├── all_0.js │ │ │ │ │ │ │ │ ├── all_1.html │ │ │ │ │ │ │ │ ├── all_1.js │ │ │ │ │ │ │ │ ├── all_10.html │ │ │ │ │ │ │ │ ├── all_10.js │ │ │ │ │ │ │ │ ├── all_11.html │ │ │ │ │ │ │ │ ├── all_11.js │ │ │ │ │ │ │ │ ├── all_12.html │ │ │ │ │ │ │ │ ├── all_12.js │ │ │ │ │ │ │ │ ├── all_13.html │ │ │ │ │ │ │ │ ├── all_13.js │ │ │ │ │ │ │ │ ├── all_14.html │ │ │ │ │ │ │ │ ├── all_14.js │ │ │ │ │ │ │ │ ├── all_15.html │ │ │ │ │ │ │ │ ├── all_15.js │ │ │ │ │ │ │ │ ├── all_16.html │ │ │ │ │ │ │ │ ├── all_16.js │ │ │ │ │ │ │ │ ├── all_2.html │ │ │ │ │ │ │ │ ├── all_2.js │ │ │ │ │ │ │ │ ├── all_3.html │ │ │ │ │ │ │ │ ├── all_3.js │ │ │ │ │ │ │ │ ├── all_4.html │ │ │ │ │ │ │ │ ├── all_4.js │ │ │ │ │ │ │ │ ├── all_5.html │ │ │ │ │ │ │ │ ├── all_5.js │ │ │ │ │ │ │ │ ├── all_6.html │ │ │ │ │ │ │ │ ├── all_6.js │ │ │ │ │ │ │ │ ├── all_7.html │ │ │ │ │ │ │ │ ├── all_7.js │ │ │ │ │ │ │ │ ├── all_8.html │ │ │ │ │ │ │ │ ├── all_8.js │ │ │ │ │ │ │ │ ├── all_9.html │ │ │ │ │ │ │ │ ├── all_9.js │ │ │ │ │ │ │ │ ├── all_a.html │ │ │ │ │ │ │ │ ├── all_a.js │ │ │ │ │ │ │ │ ├── all_b.html │ │ │ │ │ │ │ │ ├── all_b.js │ │ │ │ │ │ │ │ ├── all_c.html │ │ │ │ │ │ │ │ ├── all_c.js │ │ │ │ │ │ │ │ ├── all_d.html │ │ │ │ │ │ │ │ ├── all_d.js │ │ │ │ │ │ │ │ ├── all_e.html │ │ │ │ │ │ │ │ ├── all_e.js │ │ │ │ │ │ │ │ ├── all_f.html │ │ │ │ │ │ │ │ ├── all_f.js │ │ │ │ │ │ │ │ ├── files_0.html │ │ │ │ │ │ │ │ ├── files_0.js │ │ │ │ │ │ │ │ ├── files_1.html │ │ │ │ │ │ │ │ ├── files_1.js │ │ │ │ │ │ │ │ ├── files_10.html │ │ │ │ │ │ │ │ ├── files_10.js │ │ │ │ │ │ │ │ ├── files_11.html │ │ │ │ │ │ │ │ ├── files_11.js │ │ │ │ │ │ │ │ ├── files_12.html │ │ │ │ │ │ │ │ ├── files_12.js │ │ │ │ │ │ │ │ ├── files_13.html │ │ │ │ │ │ │ │ ├── files_13.js │ │ │ │ │ │ │ │ ├── files_14.html │ │ │ │ │ │ │ │ ├── files_14.js │ │ │ │ │ │ │ │ ├── files_2.html │ │ │ │ │ │ │ │ ├── files_2.js │ │ │ │ │ │ │ │ ├── files_3.html │ │ │ │ │ │ │ │ ├── files_3.js │ │ │ │ │ │ │ │ ├── files_4.html │ │ │ │ │ │ │ │ ├── files_4.js │ │ │ │ │ │ │ │ ├── files_5.html │ │ │ │ │ │ │ │ ├── files_5.js │ │ │ │ │ │ │ │ ├── files_6.html │ │ │ │ │ │ │ │ ├── files_6.js │ │ │ │ │ │ │ │ ├── files_7.html │ │ │ │ │ │ │ │ ├── files_7.js │ │ │ │ │ │ │ │ ├── files_8.html │ │ │ │ │ │ │ │ ├── files_8.js │ │ │ │ │ │ │ │ ├── files_9.html │ │ │ │ │ │ │ │ ├── files_9.js │ │ │ │ │ │ │ │ ├── files_a.html │ │ │ │ │ │ │ │ ├── files_a.js │ │ │ │ │ │ │ │ ├── files_b.html │ │ │ │ │ │ │ │ ├── files_b.js │ │ │ │ │ │ │ │ ├── files_c.html │ │ │ │ │ │ │ │ ├── files_c.js │ │ │ │ │ │ │ │ ├── files_d.html │ │ │ │ │ │ │ │ ├── files_d.js │ │ │ │ │ │ │ │ ├── files_e.html │ │ │ │ │ │ │ │ ├── files_e.js │ │ │ │ │ │ │ │ ├── files_f.html │ │ │ │ │ │ │ │ ├── files_f.js │ │ │ │ │ │ │ │ ├── functions_0.html │ │ │ │ │ │ │ │ ├── functions_0.js │ │ │ │ │ │ │ │ ├── functions_1.html │ │ │ │ │ │ │ │ ├── functions_1.js │ │ │ │ │ │ │ │ ├── functions_10.html │ │ │ │ │ │ │ │ ├── functions_10.js │ │ │ │ │ │ │ │ ├── functions_11.html │ │ │ │ │ │ │ │ ├── functions_11.js │ │ │ │ │ │ │ │ ├── functions_12.html │ │ │ │ │ │ │ │ ├── functions_12.js │ │ │ │ │ │ │ │ ├── functions_13.html │ │ │ │ │ │ │ │ ├── functions_13.js │ │ │ │ │ │ │ │ ├── functions_14.html │ │ │ │ │ │ │ │ ├── functions_14.js │ │ │ │ │ │ │ │ ├── functions_15.html │ │ │ │ │ │ │ │ ├── functions_15.js │ │ │ │ │ │ │ │ ├── functions_16.html │ │ │ │ │ │ │ │ ├── functions_16.js │ │ │ │ │ │ │ │ ├── functions_2.html │ │ │ │ │ │ │ │ ├── functions_2.js │ │ │ │ │ │ │ │ ├── functions_3.html │ │ │ │ │ │ │ │ ├── functions_3.js │ │ │ │ │ │ │ │ ├── functions_4.html │ │ │ │ │ │ │ │ ├── functions_4.js │ │ │ │ │ │ │ │ ├── functions_5.html │ │ │ │ │ │ │ │ ├── functions_5.js │ │ │ │ │ │ │ │ ├── functions_6.html │ │ │ │ │ │ │ │ ├── functions_6.js │ │ │ │ │ │ │ │ ├── functions_7.html │ │ │ │ │ │ │ │ ├── functions_7.js │ │ │ │ │ │ │ │ ├── functions_8.html │ │ │ │ │ │ │ │ ├── functions_8.js │ │ │ │ │ │ │ │ ├── functions_9.html │ │ │ │ │ │ │ │ ├── functions_9.js │ │ │ │ │ │ │ │ ├── functions_a.html │ │ │ │ │ │ │ │ ├── functions_a.js │ │ │ │ │ │ │ │ ├── functions_b.html │ │ │ │ │ │ │ │ ├── functions_b.js │ │ │ │ │ │ │ │ ├── functions_c.html │ │ │ │ │ │ │ │ ├── functions_c.js │ │ │ │ │ │ │ │ ├── functions_d.html │ │ │ │ │ │ │ │ ├── functions_d.js │ │ │ │ │ │ │ │ ├── functions_e.html │ │ │ │ │ │ │ │ ├── functions_e.js │ │ │ │ │ │ │ │ ├── functions_f.html │ │ │ │ │ │ │ │ ├── functions_f.js │ │ │ │ │ │ │ │ ├── groups_0.html │ │ │ │ │ │ │ │ ├── groups_0.js │ │ │ │ │ │ │ │ ├── groups_1.html │ │ │ │ │ │ │ │ ├── groups_1.js │ │ │ │ │ │ │ │ ├── groups_2.html │ │ │ │ │ │ │ │ ├── groups_2.js │ │ │ │ │ │ │ │ ├── groups_3.html │ │ │ │ │ │ │ │ ├── groups_3.js │ │ │ │ │ │ │ │ ├── groups_4.html │ │ │ │ │ │ │ │ ├── groups_4.js │ │ │ │ │ │ │ │ ├── groups_5.html │ │ │ │ │ │ │ │ ├── groups_5.js │ │ │ │ │ │ │ │ ├── groups_6.html │ │ │ │ │ │ │ │ ├── groups_6.js │ │ │ │ │ │ │ │ ├── groups_7.html │ │ │ │ │ │ │ │ ├── groups_7.js │ │ │ │ │ │ │ │ ├── groups_8.html │ │ │ │ │ │ │ │ ├── groups_8.js │ │ │ │ │ │ │ │ ├── groups_9.html │ │ │ │ │ │ │ │ ├── groups_9.js │ │ │ │ │ │ │ │ ├── nomatches.html │ │ │ │ │ │ │ │ ├── pages_0.html │ │ │ │ │ │ │ │ ├── pages_0.js │ │ │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ │ ├── searchdata.js │ │ │ │ │ │ │ │ ├── typedefs_0.html │ │ │ │ │ │ │ │ ├── typedefs_0.js │ │ │ │ │ │ │ │ ├── typedefs_1.html │ │ │ │ │ │ │ │ ├── typedefs_1.js │ │ │ │ │ │ │ │ ├── typedefs_2.html │ │ │ │ │ │ │ │ ├── typedefs_2.js │ │ │ │ │ │ │ │ ├── typedefs_3.html │ │ │ │ │ │ │ │ ├── typedefs_3.js │ │ │ │ │ │ │ │ ├── typedefs_4.html │ │ │ │ │ │ │ │ ├── typedefs_4.js │ │ │ │ │ │ │ │ ├── typedefs_5.html │ │ │ │ │ │ │ │ ├── typedefs_5.js │ │ │ │ │ │ │ │ ├── typedefs_6.html │ │ │ │ │ │ │ │ ├── typedefs_6.js │ │ │ │ │ │ │ │ ├── typedefs_7.html │ │ │ │ │ │ │ │ ├── typedefs_7.js │ │ │ │ │ │ │ │ ├── typedefs_8.html │ │ │ │ │ │ │ │ ├── typedefs_8.js │ │ │ │ │ │ │ │ ├── typedefs_9.html │ │ │ │ │ │ │ │ ├── typedefs_9.js │ │ │ │ │ │ │ │ ├── typedefs_a.html │ │ │ │ │ │ │ │ ├── typedefs_a.js │ │ │ │ │ │ │ │ ├── typedefs_b.html │ │ │ │ │ │ │ │ ├── typedefs_b.js │ │ │ │ │ │ │ │ ├── typedefs_c.html │ │ │ │ │ │ │ │ ├── typedefs_c.js │ │ │ │ │ │ │ │ ├── typedefs_d.html │ │ │ │ │ │ │ │ └── typedefs_d.js │ │ │ │ │ │ │ └── tabs.css │ │ │ │ │ │ ├── man.doxy │ │ │ │ │ │ └── theme/ │ │ │ │ │ │ └── doxygen.css │ │ │ │ │ ├── glm/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── common.hpp │ │ │ │ │ │ ├── detail/ │ │ │ │ │ │ │ ├── _features.hpp │ │ │ │ │ │ │ ├── _fixes.hpp │ │ │ │ │ │ │ ├── _noise.hpp │ │ │ │ │ │ │ ├── _swizzle.hpp │ │ │ │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ │ │ │ ├── _vectorize.hpp │ │ │ │ │ │ │ ├── compute_common.hpp │ │ │ │ │ │ │ ├── compute_vector_relational.hpp │ │ │ │ │ │ │ ├── func_common.inl │ │ │ │ │ │ │ ├── func_common_simd.inl │ │ │ │ │ │ │ ├── func_exponential.inl │ │ │ │ │ │ │ ├── func_exponential_simd.inl │ │ │ │ │ │ │ ├── func_geometric.inl │ │ │ │ │ │ │ ├── func_geometric_simd.inl │ │ │ │ │ │ │ ├── func_integer.inl │ │ │ │ │ │ │ ├── func_integer_simd.inl │ │ │ │ │ │ │ ├── func_matrix.inl │ │ │ │ │ │ │ ├── func_matrix_simd.inl │ │ │ │ │ │ │ ├── func_packing.inl │ │ │ │ │ │ │ ├── func_packing_simd.inl │ │ │ │ │ │ │ ├── func_trigonometric.inl │ │ │ │ │ │ │ ├── func_trigonometric_simd.inl │ │ │ │ │ │ │ ├── func_vector_relational.inl │ │ │ │ │ │ │ ├── func_vector_relational_simd.inl │ │ │ │ │ │ │ ├── glm.cpp │ │ │ │ │ │ │ ├── qualifier.hpp │ │ │ │ │ │ │ ├── setup.hpp │ │ │ │ │ │ │ ├── type_float.hpp │ │ │ │ │ │ │ ├── type_half.hpp │ │ │ │ │ │ │ ├── type_half.inl │ │ │ │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ │ │ │ ├── type_mat2x2.inl │ │ │ │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ │ │ │ ├── type_mat2x3.inl │ │ │ │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ │ │ │ ├── type_mat2x4.inl │ │ │ │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ │ │ │ ├── type_mat3x2.inl │ │ │ │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ │ │ │ ├── type_mat3x3.inl │ │ │ │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ │ │ │ ├── type_mat3x4.inl │ │ │ │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ │ │ │ ├── type_mat4x2.inl │ │ │ │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ │ │ │ ├── type_mat4x3.inl │ │ │ │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ │ │ │ ├── type_mat4x4.inl │ │ │ │ │ │ │ ├── type_mat4x4_simd.inl │ │ │ │ │ │ │ ├── type_quat.hpp │ │ │ │ │ │ │ ├── type_quat.inl │ │ │ │ │ │ │ ├── type_quat_simd.inl │ │ │ │ │ │ │ ├── type_vec1.hpp │ │ │ │ │ │ │ ├── type_vec1.inl │ │ │ │ │ │ │ ├── type_vec2.hpp │ │ │ │ │ │ │ ├── type_vec2.inl │ │ │ │ │ │ │ ├── type_vec3.hpp │ │ │ │ │ │ │ ├── type_vec3.inl │ │ │ │ │ │ │ ├── type_vec4.hpp │ │ │ │ │ │ │ ├── type_vec4.inl │ │ │ │ │ │ │ └── type_vec4_simd.inl │ │ │ │ │ │ ├── exponential.hpp │ │ │ │ │ │ ├── ext/ │ │ │ │ │ │ │ ├── _matrix_vectorize.hpp │ │ │ │ │ │ │ ├── matrix_clip_space.hpp │ │ │ │ │ │ │ ├── matrix_clip_space.inl │ │ │ │ │ │ │ ├── matrix_common.hpp │ │ │ │ │ │ │ ├── matrix_common.inl │ │ │ │ │ │ │ ├── matrix_double2x2.hpp │ │ │ │ │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ │ │ │ │ ├── matrix_double2x3.hpp │ │ │ │ │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ │ │ │ │ ├── matrix_double2x4.hpp │ │ │ │ │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ │ │ │ │ ├── matrix_double3x2.hpp │ │ │ │ │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ │ │ │ │ ├── matrix_double3x3.hpp │ │ │ │ │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ │ │ │ │ ├── matrix_double3x4.hpp │ │ │ │ │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ │ │ │ │ ├── matrix_double4x2.hpp │ │ │ │ │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ │ │ │ │ ├── matrix_double4x3.hpp │ │ │ │ │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ │ │ │ │ ├── matrix_double4x4.hpp │ │ │ │ │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ │ │ │ │ ├── matrix_float2x2.hpp │ │ │ │ │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ │ │ │ │ ├── matrix_float2x3.hpp │ │ │ │ │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ │ │ │ │ ├── matrix_float2x4.hpp │ │ │ │ │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ │ │ │ │ ├── matrix_float3x2.hpp │ │ │ │ │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ │ │ │ │ ├── matrix_float3x3.hpp │ │ │ │ │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ │ │ │ │ ├── matrix_float3x4.hpp │ │ │ │ │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ │ │ │ │ ├── matrix_float4x2.hpp │ │ │ │ │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ │ │ │ │ ├── matrix_float4x3.hpp │ │ │ │ │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ │ │ │ │ ├── matrix_float4x4.hpp │ │ │ │ │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ │ │ │ │ ├── matrix_int2x2.hpp │ │ │ │ │ │ │ ├── matrix_int2x2_sized.hpp │ │ │ │ │ │ │ ├── matrix_int2x3.hpp │ │ │ │ │ │ │ ├── matrix_int2x3_sized.hpp │ │ │ │ │ │ │ ├── matrix_int2x4.hpp │ │ │ │ │ │ │ ├── matrix_int2x4_sized.hpp │ │ │ │ │ │ │ ├── matrix_int3x2.hpp │ │ │ │ │ │ │ ├── matrix_int3x2_sized.hpp │ │ │ │ │ │ │ ├── matrix_int3x3.hpp │ │ │ │ │ │ │ ├── matrix_int3x3_sized.hpp │ │ │ │ │ │ │ ├── matrix_int3x4.hpp │ │ │ │ │ │ │ ├── matrix_int3x4_sized.hpp │ │ │ │ │ │ │ ├── matrix_int4x2.hpp │ │ │ │ │ │ │ ├── matrix_int4x2_sized.hpp │ │ │ │ │ │ │ ├── matrix_int4x3.hpp │ │ │ │ │ │ │ ├── matrix_int4x3_sized.hpp │ │ │ │ │ │ │ ├── matrix_int4x4.hpp │ │ │ │ │ │ │ ├── matrix_int4x4_sized.hpp │ │ │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ │ │ ├── matrix_integer.inl │ │ │ │ │ │ │ ├── matrix_projection.hpp │ │ │ │ │ │ │ ├── matrix_projection.inl │ │ │ │ │ │ │ ├── matrix_relational.hpp │ │ │ │ │ │ │ ├── matrix_relational.inl │ │ │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ │ │ ├── matrix_uint2x2.hpp │ │ │ │ │ │ │ ├── matrix_uint2x2_sized.hpp │ │ │ │ │ │ │ ├── matrix_uint2x3.hpp │ │ │ │ │ │ │ ├── matrix_uint2x3_sized.hpp │ │ │ │ │ │ │ ├── matrix_uint2x4.hpp │ │ │ │ │ │ │ ├── matrix_uint2x4_sized.hpp │ │ │ │ │ │ │ ├── matrix_uint3x2.hpp │ │ │ │ │ │ │ ├── matrix_uint3x2_sized.hpp │ │ │ │ │ │ │ ├── matrix_uint3x3.hpp │ │ │ │ │ │ │ ├── matrix_uint3x3_sized.hpp │ │ │ │ │ │ │ ├── matrix_uint3x4.hpp │ │ │ │ │ │ │ ├── matrix_uint3x4_sized.hpp │ │ │ │ │ │ │ ├── matrix_uint4x2.hpp │ │ │ │ │ │ │ ├── matrix_uint4x2_sized.hpp │ │ │ │ │ │ │ ├── matrix_uint4x3.hpp │ │ │ │ │ │ │ ├── matrix_uint4x3_sized.hpp │ │ │ │ │ │ │ ├── matrix_uint4x4.hpp │ │ │ │ │ │ │ ├── matrix_uint4x4_sized.hpp │ │ │ │ │ │ │ ├── quaternion_common.hpp │ │ │ │ │ │ │ ├── quaternion_common.inl │ │ │ │ │ │ │ ├── quaternion_common_simd.inl │ │ │ │ │ │ │ ├── quaternion_double.hpp │ │ │ │ │ │ │ ├── quaternion_double_precision.hpp │ │ │ │ │ │ │ ├── quaternion_exponential.hpp │ │ │ │ │ │ │ ├── quaternion_exponential.inl │ │ │ │ │ │ │ ├── quaternion_float.hpp │ │ │ │ │ │ │ ├── quaternion_float_precision.hpp │ │ │ │ │ │ │ ├── quaternion_geometric.hpp │ │ │ │ │ │ │ ├── quaternion_geometric.inl │ │ │ │ │ │ │ ├── quaternion_relational.hpp │ │ │ │ │ │ │ ├── quaternion_relational.inl │ │ │ │ │ │ │ ├── quaternion_transform.hpp │ │ │ │ │ │ │ ├── quaternion_transform.inl │ │ │ │ │ │ │ ├── quaternion_trigonometric.hpp │ │ │ │ │ │ │ ├── quaternion_trigonometric.inl │ │ │ │ │ │ │ ├── scalar_common.hpp │ │ │ │ │ │ │ ├── scalar_common.inl │ │ │ │ │ │ │ ├── scalar_constants.hpp │ │ │ │ │ │ │ ├── scalar_constants.inl │ │ │ │ │ │ │ ├── scalar_int_sized.hpp │ │ │ │ │ │ │ ├── scalar_integer.hpp │ │ │ │ │ │ │ ├── scalar_integer.inl │ │ │ │ │ │ │ ├── scalar_packing.hpp │ │ │ │ │ │ │ ├── scalar_packing.inl │ │ │ │ │ │ │ ├── scalar_reciprocal.hpp │ │ │ │ │ │ │ ├── scalar_reciprocal.inl │ │ │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ │ │ ├── scalar_uint_sized.hpp │ │ │ │ │ │ │ ├── scalar_ulp.hpp │ │ │ │ │ │ │ ├── scalar_ulp.inl │ │ │ │ │ │ │ ├── vector_bool1.hpp │ │ │ │ │ │ │ ├── vector_bool1_precision.hpp │ │ │ │ │ │ │ ├── vector_bool2.hpp │ │ │ │ │ │ │ ├── vector_bool2_precision.hpp │ │ │ │ │ │ │ ├── vector_bool3.hpp │ │ │ │ │ │ │ ├── vector_bool3_precision.hpp │ │ │ │ │ │ │ ├── vector_bool4.hpp │ │ │ │ │ │ │ ├── vector_bool4_precision.hpp │ │ │ │ │ │ │ ├── vector_common.hpp │ │ │ │ │ │ │ ├── vector_common.inl │ │ │ │ │ │ │ ├── vector_double1.hpp │ │ │ │ │ │ │ ├── vector_double1_precision.hpp │ │ │ │ │ │ │ ├── vector_double2.hpp │ │ │ │ │ │ │ ├── vector_double2_precision.hpp │ │ │ │ │ │ │ ├── vector_double3.hpp │ │ │ │ │ │ │ ├── vector_double3_precision.hpp │ │ │ │ │ │ │ ├── vector_double4.hpp │ │ │ │ │ │ │ ├── vector_double4_precision.hpp │ │ │ │ │ │ │ ├── vector_float1.hpp │ │ │ │ │ │ │ ├── vector_float1_precision.hpp │ │ │ │ │ │ │ ├── vector_float2.hpp │ │ │ │ │ │ │ ├── vector_float2_precision.hpp │ │ │ │ │ │ │ ├── vector_float3.hpp │ │ │ │ │ │ │ ├── vector_float3_precision.hpp │ │ │ │ │ │ │ ├── vector_float4.hpp │ │ │ │ │ │ │ ├── vector_float4_precision.hpp │ │ │ │ │ │ │ ├── vector_int1.hpp │ │ │ │ │ │ │ ├── vector_int1_sized.hpp │ │ │ │ │ │ │ ├── vector_int2.hpp │ │ │ │ │ │ │ ├── vector_int2_sized.hpp │ │ │ │ │ │ │ ├── vector_int3.hpp │ │ │ │ │ │ │ ├── vector_int3_sized.hpp │ │ │ │ │ │ │ ├── vector_int4.hpp │ │ │ │ │ │ │ ├── vector_int4_sized.hpp │ │ │ │ │ │ │ ├── vector_integer.hpp │ │ │ │ │ │ │ ├── vector_integer.inl │ │ │ │ │ │ │ ├── vector_packing.hpp │ │ │ │ │ │ │ ├── vector_packing.inl │ │ │ │ │ │ │ ├── vector_reciprocal.hpp │ │ │ │ │ │ │ ├── vector_reciprocal.inl │ │ │ │ │ │ │ ├── vector_relational.hpp │ │ │ │ │ │ │ ├── vector_relational.inl │ │ │ │ │ │ │ ├── vector_uint1.hpp │ │ │ │ │ │ │ ├── vector_uint1_sized.hpp │ │ │ │ │ │ │ ├── vector_uint2.hpp │ │ │ │ │ │ │ ├── vector_uint2_sized.hpp │ │ │ │ │ │ │ ├── vector_uint3.hpp │ │ │ │ │ │ │ ├── vector_uint3_sized.hpp │ │ │ │ │ │ │ ├── vector_uint4.hpp │ │ │ │ │ │ │ ├── vector_uint4_sized.hpp │ │ │ │ │ │ │ ├── vector_ulp.hpp │ │ │ │ │ │ │ └── vector_ulp.inl │ │ │ │ │ │ ├── ext.hpp │ │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ │ ├── geometric.hpp │ │ │ │ │ │ ├── glm.hpp │ │ │ │ │ │ ├── gtc/ │ │ │ │ │ │ │ ├── bitfield.hpp │ │ │ │ │ │ │ ├── bitfield.inl │ │ │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ │ │ ├── color_space.inl │ │ │ │ │ │ │ ├── constants.hpp │ │ │ │ │ │ │ ├── constants.inl │ │ │ │ │ │ │ ├── epsilon.hpp │ │ │ │ │ │ │ ├── epsilon.inl │ │ │ │ │ │ │ ├── integer.hpp │ │ │ │ │ │ │ ├── integer.inl │ │ │ │ │ │ │ ├── matrix_access.hpp │ │ │ │ │ │ │ ├── matrix_access.inl │ │ │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ │ │ │ ├── matrix_inverse.inl │ │ │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ │ │ ├── noise.hpp │ │ │ │ │ │ │ ├── noise.inl │ │ │ │ │ │ │ ├── packing.hpp │ │ │ │ │ │ │ ├── packing.inl │ │ │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ │ │ ├── quaternion_simd.inl │ │ │ │ │ │ │ ├── random.hpp │ │ │ │ │ │ │ ├── random.inl │ │ │ │ │ │ │ ├── reciprocal.hpp │ │ │ │ │ │ │ ├── round.hpp │ │ │ │ │ │ │ ├── round.inl │ │ │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ │ │ ├── type_precision.hpp │ │ │ │ │ │ │ ├── type_precision.inl │ │ │ │ │ │ │ ├── type_ptr.hpp │ │ │ │ │ │ │ ├── type_ptr.inl │ │ │ │ │ │ │ ├── ulp.hpp │ │ │ │ │ │ │ ├── ulp.inl │ │ │ │ │ │ │ └── vec1.hpp │ │ │ │ │ │ ├── gtx/ │ │ │ │ │ │ │ ├── associated_min_max.hpp │ │ │ │ │ │ │ ├── associated_min_max.inl │ │ │ │ │ │ │ ├── bit.hpp │ │ │ │ │ │ │ ├── bit.inl │ │ │ │ │ │ │ ├── closest_point.hpp │ │ │ │ │ │ │ ├── closest_point.inl │ │ │ │ │ │ │ ├── color_encoding.hpp │ │ │ │ │ │ │ ├── color_encoding.inl │ │ │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ │ │ ├── color_space.inl │ │ │ │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ │ │ │ ├── common.hpp │ │ │ │ │ │ │ ├── common.inl │ │ │ │ │ │ │ ├── compatibility.hpp │ │ │ │ │ │ │ ├── compatibility.inl │ │ │ │ │ │ │ ├── component_wise.hpp │ │ │ │ │ │ │ ├── component_wise.inl │ │ │ │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ │ │ │ ├── dual_quaternion.inl │ │ │ │ │ │ │ ├── easing.hpp │ │ │ │ │ │ │ ├── easing.inl │ │ │ │ │ │ │ ├── euler_angles.hpp │ │ │ │ │ │ │ ├── euler_angles.inl │ │ │ │ │ │ │ ├── extend.hpp │ │ │ │ │ │ │ ├── extend.inl │ │ │ │ │ │ │ ├── extended_min_max.hpp │ │ │ │ │ │ │ ├── extended_min_max.inl │ │ │ │ │ │ │ ├── exterior_product.hpp │ │ │ │ │ │ │ ├── exterior_product.inl │ │ │ │ │ │ │ ├── fast_exponential.hpp │ │ │ │ │ │ │ ├── fast_exponential.inl │ │ │ │ │ │ │ ├── fast_square_root.hpp │ │ │ │ │ │ │ ├── fast_square_root.inl │ │ │ │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ │ │ │ ├── float_notmalize.inl │ │ │ │ │ │ │ ├── functions.hpp │ │ │ │ │ │ │ ├── functions.inl │ │ │ │ │ │ │ ├── gradient_paint.hpp │ │ │ │ │ │ │ ├── gradient_paint.inl │ │ │ │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ │ │ │ ├── hash.hpp │ │ │ │ │ │ │ ├── hash.inl │ │ │ │ │ │ │ ├── integer.hpp │ │ │ │ │ │ │ ├── integer.inl │ │ │ │ │ │ │ ├── intersect.hpp │ │ │ │ │ │ │ ├── intersect.inl │ │ │ │ │ │ │ ├── io.hpp │ │ │ │ │ │ │ ├── io.inl │ │ │ │ │ │ │ ├── log_base.hpp │ │ │ │ │ │ │ ├── log_base.inl │ │ │ │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ │ │ │ ├── matrix_decompose.hpp │ │ │ │ │ │ │ ├── matrix_decompose.inl │ │ │ │ │ │ │ ├── matrix_factorisation.hpp │ │ │ │ │ │ │ ├── matrix_factorisation.inl │ │ │ │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ │ │ │ ├── matrix_operation.hpp │ │ │ │ │ │ │ ├── matrix_operation.inl │ │ │ │ │ │ │ ├── matrix_query.hpp │ │ │ │ │ │ │ ├── matrix_query.inl │ │ │ │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ │ │ │ ├── mixed_product.hpp │ │ │ │ │ │ │ ├── mixed_product.inl │ │ │ │ │ │ │ ├── norm.hpp │ │ │ │ │ │ │ ├── norm.inl │ │ │ │ │ │ │ ├── normal.hpp │ │ │ │ │ │ │ ├── normal.inl │ │ │ │ │ │ │ ├── normalize_dot.hpp │ │ │ │ │ │ │ ├── normalize_dot.inl │ │ │ │ │ │ │ ├── number_precision.hpp │ │ │ │ │ │ │ ├── number_precision.inl │ │ │ │ │ │ │ ├── optimum_pow.hpp │ │ │ │ │ │ │ ├── optimum_pow.inl │ │ │ │ │ │ │ ├── orthonormalize.hpp │ │ │ │ │ │ │ ├── orthonormalize.inl │ │ │ │ │ │ │ ├── pca.hpp │ │ │ │ │ │ │ ├── pca.inl │ │ │ │ │ │ │ ├── perpendicular.hpp │ │ │ │ │ │ │ ├── perpendicular.inl │ │ │ │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ │ │ │ ├── polar_coordinates.inl │ │ │ │ │ │ │ ├── projection.hpp │ │ │ │ │ │ │ ├── projection.inl │ │ │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ │ │ ├── range.hpp │ │ │ │ │ │ │ ├── raw_data.hpp │ │ │ │ │ │ │ ├── raw_data.inl │ │ │ │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ │ │ │ ├── rotate_vector.hpp │ │ │ │ │ │ │ ├── rotate_vector.inl │ │ │ │ │ │ │ ├── scalar_multiplication.hpp │ │ │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ │ │ ├── spline.hpp │ │ │ │ │ │ │ ├── spline.inl │ │ │ │ │ │ │ ├── std_based_type.hpp │ │ │ │ │ │ │ ├── std_based_type.inl │ │ │ │ │ │ │ ├── string_cast.hpp │ │ │ │ │ │ │ ├── string_cast.inl │ │ │ │ │ │ │ ├── texture.hpp │ │ │ │ │ │ │ ├── texture.inl │ │ │ │ │ │ │ ├── transform.hpp │ │ │ │ │ │ │ ├── transform.inl │ │ │ │ │ │ │ ├── transform2.hpp │ │ │ │ │ │ │ ├── transform2.inl │ │ │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ │ │ ├── type_aligned.inl │ │ │ │ │ │ │ ├── type_trait.hpp │ │ │ │ │ │ │ ├── type_trait.inl │ │ │ │ │ │ │ ├── vec_swizzle.hpp │ │ │ │ │ │ │ ├── vector_angle.hpp │ │ │ │ │ │ │ ├── vector_angle.inl │ │ │ │ │ │ │ ├── vector_query.hpp │ │ │ │ │ │ │ ├── vector_query.inl │ │ │ │ │ │ │ ├── wrap.hpp │ │ │ │ │ │ │ └── wrap.inl │ │ │ │ │ │ ├── integer.hpp │ │ │ │ │ │ ├── mat2x2.hpp │ │ │ │ │ │ ├── mat2x3.hpp │ │ │ │ │ │ ├── mat2x4.hpp │ │ │ │ │ │ ├── mat3x2.hpp │ │ │ │ │ │ ├── mat3x3.hpp │ │ │ │ │ │ ├── mat3x4.hpp │ │ │ │ │ │ ├── mat4x2.hpp │ │ │ │ │ │ ├── mat4x3.hpp │ │ │ │ │ │ ├── mat4x4.hpp │ │ │ │ │ │ ├── matrix.hpp │ │ │ │ │ │ ├── packing.hpp │ │ │ │ │ │ ├── simd/ │ │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ │ ├── exponential.h │ │ │ │ │ │ │ ├── geometric.h │ │ │ │ │ │ │ ├── integer.h │ │ │ │ │ │ │ ├── matrix.h │ │ │ │ │ │ │ ├── neon.h │ │ │ │ │ │ │ ├── packing.h │ │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ │ ├── trigonometric.h │ │ │ │ │ │ │ └── vector_relational.h │ │ │ │ │ │ ├── trigonometric.hpp │ │ │ │ │ │ ├── vec2.hpp │ │ │ │ │ │ ├── vec3.hpp │ │ │ │ │ │ ├── vec4.hpp │ │ │ │ │ │ └── vector_relational.hpp │ │ │ │ │ ├── manual.md │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── test/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── bug/ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── bug_ms_vec_static.cpp │ │ │ │ │ │ ├── cmake/ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── test_find_glm.cpp │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── core_cpp_constexpr.cpp │ │ │ │ │ │ │ ├── core_cpp_defaulted_ctor.cpp │ │ │ │ │ │ │ ├── core_force_aligned_gentypes.cpp │ │ │ │ │ │ │ ├── core_force_arch_unknown.cpp │ │ │ │ │ │ │ ├── core_force_compiler_unknown.cpp │ │ │ │ │ │ │ ├── core_force_ctor_init.cpp │ │ │ │ │ │ │ ├── core_force_cxx03.cpp │ │ │ │ │ │ │ ├── core_force_cxx98.cpp │ │ │ │ │ │ │ ├── core_force_cxx_unknown.cpp │ │ │ │ │ │ │ ├── core_force_depth_zero_to_one.cpp │ │ │ │ │ │ │ ├── core_force_explicit_ctor.cpp │ │ │ │ │ │ │ ├── core_force_inline.cpp │ │ │ │ │ │ │ ├── core_force_left_handed.cpp │ │ │ │ │ │ │ ├── core_force_platform_unknown.cpp │ │ │ │ │ │ │ ├── core_force_pure.cpp │ │ │ │ │ │ │ ├── core_force_quat_xyzw.cpp │ │ │ │ │ │ │ ├── core_force_size_t_length.cpp │ │ │ │ │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ │ │ │ │ ├── core_force_xyzw_only.cpp │ │ │ │ │ │ │ ├── core_func_common.cpp │ │ │ │ │ │ │ ├── core_func_exponential.cpp │ │ │ │ │ │ │ ├── core_func_geometric.cpp │ │ │ │ │ │ │ ├── core_func_integer.cpp │ │ │ │ │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ │ │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ │ │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ │ │ │ │ ├── core_func_matrix.cpp │ │ │ │ │ │ │ ├── core_func_noise.cpp │ │ │ │ │ │ │ ├── core_func_packing.cpp │ │ │ │ │ │ │ ├── core_func_swizzle.cpp │ │ │ │ │ │ │ ├── core_func_trigonometric.cpp │ │ │ │ │ │ │ ├── core_func_vector_relational.cpp │ │ │ │ │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ │ │ │ │ ├── core_setup_force_size_t_length.cpp │ │ │ │ │ │ │ ├── core_setup_message.cpp │ │ │ │ │ │ │ ├── core_setup_platform_unknown.cpp │ │ │ │ │ │ │ ├── core_setup_precision.cpp │ │ │ │ │ │ │ ├── core_type_aligned.cpp │ │ │ │ │ │ │ ├── core_type_cast.cpp │ │ │ │ │ │ │ ├── core_type_ctor.cpp │ │ │ │ │ │ │ ├── core_type_int.cpp │ │ │ │ │ │ │ ├── core_type_length.cpp │ │ │ │ │ │ │ ├── core_type_mat2x2.cpp │ │ │ │ │ │ │ ├── core_type_mat2x3.cpp │ │ │ │ │ │ │ ├── core_type_mat2x4.cpp │ │ │ │ │ │ │ ├── core_type_mat3x2.cpp │ │ │ │ │ │ │ ├── core_type_mat3x3.cpp │ │ │ │ │ │ │ ├── core_type_mat3x4.cpp │ │ │ │ │ │ │ ├── core_type_mat4x2.cpp │ │ │ │ │ │ │ ├── core_type_mat4x3.cpp │ │ │ │ │ │ │ ├── core_type_mat4x4.cpp │ │ │ │ │ │ │ ├── core_type_vec1.cpp │ │ │ │ │ │ │ ├── core_type_vec2.cpp │ │ │ │ │ │ │ ├── core_type_vec3.cpp │ │ │ │ │ │ │ └── core_type_vec4.cpp │ │ │ │ │ │ ├── ext/ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── ext_matrix_clip_space.cpp │ │ │ │ │ │ │ ├── ext_matrix_common.cpp │ │ │ │ │ │ │ ├── ext_matrix_int2x2_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_int2x3_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_int2x4_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_int3x2_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_int3x3_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_int3x4_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_int4x2_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_int4x3_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_int4x4_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_integer.cpp │ │ │ │ │ │ │ ├── ext_matrix_projection.cpp │ │ │ │ │ │ │ ├── ext_matrix_relational.cpp │ │ │ │ │ │ │ ├── ext_matrix_transform.cpp │ │ │ │ │ │ │ ├── ext_matrix_uint2x2_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_uint2x3_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_uint2x4_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_uint3x2_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_uint3x3_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_uint3x4_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_uint4x2_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_uint4x3_sized.cpp │ │ │ │ │ │ │ ├── ext_matrix_uint4x4_sized.cpp │ │ │ │ │ │ │ ├── ext_quaternion_common.cpp │ │ │ │ │ │ │ ├── ext_quaternion_exponential.cpp │ │ │ │ │ │ │ ├── ext_quaternion_geometric.cpp │ │ │ │ │ │ │ ├── ext_quaternion_relational.cpp │ │ │ │ │ │ │ ├── ext_quaternion_transform.cpp │ │ │ │ │ │ │ ├── ext_quaternion_trigonometric.cpp │ │ │ │ │ │ │ ├── ext_quaternion_type.cpp │ │ │ │ │ │ │ ├── ext_scalar_common.cpp │ │ │ │ │ │ │ ├── ext_scalar_constants.cpp │ │ │ │ │ │ │ ├── ext_scalar_int_sized.cpp │ │ │ │ │ │ │ ├── ext_scalar_integer.cpp │ │ │ │ │ │ │ ├── ext_scalar_packing.cpp │ │ │ │ │ │ │ ├── ext_scalar_reciprocal.cpp │ │ │ │ │ │ │ ├── ext_scalar_relational.cpp │ │ │ │ │ │ │ ├── ext_scalar_uint_sized.cpp │ │ │ │ │ │ │ ├── ext_scalar_ulp.cpp │ │ │ │ │ │ │ ├── ext_vec1.cpp │ │ │ │ │ │ │ ├── ext_vector_bool1.cpp │ │ │ │ │ │ │ ├── ext_vector_common.cpp │ │ │ │ │ │ │ ├── ext_vector_iec559.cpp │ │ │ │ │ │ │ ├── ext_vector_int1_sized.cpp │ │ │ │ │ │ │ ├── ext_vector_int2_sized.cpp │ │ │ │ │ │ │ ├── ext_vector_int3_sized.cpp │ │ │ │ │ │ │ ├── ext_vector_int4_sized.cpp │ │ │ │ │ │ │ ├── ext_vector_integer.cpp │ │ │ │ │ │ │ ├── ext_vector_integer_sized.cpp │ │ │ │ │ │ │ ├── ext_vector_packing.cpp │ │ │ │ │ │ │ ├── ext_vector_reciprocal.cpp │ │ │ │ │ │ │ ├── ext_vector_relational.cpp │ │ │ │ │ │ │ ├── ext_vector_uint1_sized.cpp │ │ │ │ │ │ │ ├── ext_vector_uint2_sized.cpp │ │ │ │ │ │ │ ├── ext_vector_uint3_sized.cpp │ │ │ │ │ │ │ ├── ext_vector_uint4_sized.cpp │ │ │ │ │ │ │ └── ext_vector_ulp.cpp │ │ │ │ │ │ ├── glm.cppcheck │ │ │ │ │ │ ├── gtc/ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── gtc_bitfield.cpp │ │ │ │ │ │ │ ├── gtc_color_space.cpp │ │ │ │ │ │ │ ├── gtc_constants.cpp │ │ │ │ │ │ │ ├── gtc_epsilon.cpp │ │ │ │ │ │ │ ├── gtc_integer.cpp │ │ │ │ │ │ │ ├── gtc_matrix_access.cpp │ │ │ │ │ │ │ ├── gtc_matrix_integer.cpp │ │ │ │ │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ │ │ │ │ ├── gtc_matrix_transform.cpp │ │ │ │ │ │ │ ├── gtc_noise.cpp │ │ │ │ │ │ │ ├── gtc_packing.cpp │ │ │ │ │ │ │ ├── gtc_quaternion.cpp │ │ │ │ │ │ │ ├── gtc_random.cpp │ │ │ │ │ │ │ ├── gtc_reciprocal.cpp │ │ │ │ │ │ │ ├── gtc_round.cpp │ │ │ │ │ │ │ ├── gtc_type_aligned.cpp │ │ │ │ │ │ │ ├── gtc_type_precision.cpp │ │ │ │ │ │ │ ├── gtc_type_ptr.cpp │ │ │ │ │ │ │ ├── gtc_ulp.cpp │ │ │ │ │ │ │ ├── gtc_user_defined_types.cpp │ │ │ │ │ │ │ └── gtc_vec1.cpp │ │ │ │ │ │ ├── gtx/ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── gtx.cpp │ │ │ │ │ │ │ ├── gtx_associated_min_max.cpp │ │ │ │ │ │ │ ├── gtx_closest_point.cpp │ │ │ │ │ │ │ ├── gtx_color_encoding.cpp │ │ │ │ │ │ │ ├── gtx_color_space.cpp │ │ │ │ │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ │ │ │ │ ├── gtx_common.cpp │ │ │ │ │ │ │ ├── gtx_compatibility.cpp │ │ │ │ │ │ │ ├── gtx_component_wise.cpp │ │ │ │ │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ │ │ │ │ ├── gtx_easing.cpp │ │ │ │ │ │ │ ├── gtx_euler_angle.cpp │ │ │ │ │ │ │ ├── gtx_extend.cpp │ │ │ │ │ │ │ ├── gtx_extended_min_max.cpp │ │ │ │ │ │ │ ├── gtx_extented_min_max.cpp │ │ │ │ │ │ │ ├── gtx_exterior_product.cpp │ │ │ │ │ │ │ ├── gtx_fast_exponential.cpp │ │ │ │ │ │ │ ├── gtx_fast_square_root.cpp │ │ │ │ │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ │ │ │ │ ├── gtx_functions.cpp │ │ │ │ │ │ │ ├── gtx_gradient_paint.cpp │ │ │ │ │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ │ │ │ │ ├── gtx_hash.cpp │ │ │ │ │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ │ │ │ │ ├── gtx_integer.cpp │ │ │ │ │ │ │ ├── gtx_intersect.cpp │ │ │ │ │ │ │ ├── gtx_io.cpp │ │ │ │ │ │ │ ├── gtx_load.cpp │ │ │ │ │ │ │ ├── gtx_log_base.cpp │ │ │ │ │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ │ │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ │ │ │ │ ├── gtx_matrix_factorisation.cpp │ │ │ │ │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ │ │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ │ │ │ │ ├── gtx_matrix_operation.cpp │ │ │ │ │ │ │ ├── gtx_matrix_query.cpp │ │ │ │ │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ │ │ │ │ ├── gtx_mixed_product.cpp │ │ │ │ │ │ │ ├── gtx_norm.cpp │ │ │ │ │ │ │ ├── gtx_normal.cpp │ │ │ │ │ │ │ ├── gtx_normalize_dot.cpp │ │ │ │ │ │ │ ├── gtx_number_precision.cpp │ │ │ │ │ │ │ ├── gtx_optimum_pow.cpp │ │ │ │ │ │ │ ├── gtx_orthonormalize.cpp │ │ │ │ │ │ │ ├── gtx_pca.cpp │ │ │ │ │ │ │ ├── gtx_perpendicular.cpp │ │ │ │ │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ │ │ │ │ ├── gtx_projection.cpp │ │ │ │ │ │ │ ├── gtx_quaternion.cpp │ │ │ │ │ │ │ ├── gtx_random.cpp │ │ │ │ │ │ │ ├── gtx_range.cpp │ │ │ │ │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ │ │ │ │ ├── gtx_rotate_vector.cpp │ │ │ │ │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ │ │ │ │ ├── gtx_scalar_relational.cpp │ │ │ │ │ │ │ ├── gtx_simd_mat4.cpp │ │ │ │ │ │ │ ├── gtx_simd_vec4.cpp │ │ │ │ │ │ │ ├── gtx_spline.cpp │ │ │ │ │ │ │ ├── gtx_string_cast.cpp │ │ │ │ │ │ │ ├── gtx_texture.cpp │ │ │ │ │ │ │ ├── gtx_type_aligned.cpp │ │ │ │ │ │ │ ├── gtx_type_trait.cpp │ │ │ │ │ │ │ ├── gtx_vec_swizzle.cpp │ │ │ │ │ │ │ ├── gtx_vector_angle.cpp │ │ │ │ │ │ │ ├── gtx_vector_query.cpp │ │ │ │ │ │ │ └── gtx_wrap.cpp │ │ │ │ │ │ └── perf/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── perf_matrix_div.cpp │ │ │ │ │ │ ├── perf_matrix_inverse.cpp │ │ │ │ │ │ ├── perf_matrix_mul.cpp │ │ │ │ │ │ ├── perf_matrix_mul_vector.cpp │ │ │ │ │ │ ├── perf_matrix_transpose.cpp │ │ │ │ │ │ └── perf_vector_mul_matrix.cpp │ │ │ │ │ └── util/ │ │ │ │ │ ├── autoexp.txt │ │ │ │ │ └── glm.natvis │ │ │ │ └── stbi_image_write.h │ │ │ └── simple-knn/ │ │ │ ├── ext.cpp │ │ │ ├── setup.py │ │ │ ├── simple_knn/ │ │ │ │ └── .gitkeep │ │ │ ├── simple_knn.cu │ │ │ ├── simple_knn.h │ │ │ ├── spatial.cu │ │ │ └── spatial.h │ │ ├── train.py │ │ └── utils/ │ │ ├── camera_utils.py │ │ ├── general_utils.py │ │ ├── graphics_utils.py │ │ ├── image_utils.py │ │ ├── loss_utils.py │ │ ├── sh_utils.py │ │ └── system_utils.py │ ├── gs_simulation.py │ ├── material_field.py │ ├── mpm_solver_warp/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── engine_utils.py │ │ ├── mpm_solver_warp.py │ │ ├── mpm_utils.py │ │ ├── run_sand.py │ │ ├── sand_column.h5 │ │ └── warp_utils.py │ ├── particle_filling/ │ │ └── filling.py │ ├── requirements.txt │ └── utils/ │ ├── camera_view_utils.py │ ├── decode_param.py │ ├── render_utils.py │ └── transformation_utils.py ├── Wavelet-Generation/ │ ├── .gitignore │ ├── .gitmodules │ ├── data_utils/ │ │ ├── collect_stats.py │ │ ├── inspect_ranges.py │ │ └── my_data.py │ ├── models/ │ │ ├── module/ │ │ │ ├── diffusion_network.py │ │ │ ├── dwt.py │ │ │ ├── dwt_utils.py │ │ │ ├── fp16_util.py │ │ │ ├── gaussian_diffusion.py │ │ │ ├── nn.py │ │ │ └── resample.py │ │ ├── network.py │ │ └── network_gen.py │ ├── trainer/ │ │ ├── inference_combined.py │ │ ├── training_continuous_mse.py │ │ └── training_discrete.py │ └── utils/ │ ├── debugger.py │ ├── meter.py │ └── other_utils.py ├── f3rm/ │ ├── .github/ │ │ └── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── f3rm/ │ │ ├── __init__.py │ │ ├── f3rm_config.py │ │ ├── feature_datamanager.py │ │ ├── feature_field.py │ │ ├── features/ │ │ │ ├── __init__.py │ │ │ ├── clip/ │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── clip.py │ │ │ │ ├── interpolate.py │ │ │ │ ├── model.py │ │ │ │ └── simple_tokenizer.py │ │ │ ├── clip_extract.py │ │ │ ├── clip_sam_extract.py │ │ │ ├── dino/ │ │ │ │ ├── __init__.py │ │ │ │ └── dino_vit_extractor.py │ │ │ └── dino_extract.py │ │ ├── model.py │ │ ├── pca_colormap.py │ │ └── renderer.py │ ├── f3rm_robot/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── args.py │ │ ├── assets/ │ │ │ ├── __init__.py │ │ │ ├── panda_gripper_visual.obj │ │ │ └── tasks/ │ │ │ ├── caterpillar_ear.pt │ │ │ ├── mug_handle.pt │ │ │ ├── mug_lip.pt │ │ │ ├── rack_place.pt │ │ │ └── screwdriver_handle.pt │ │ ├── collision.py │ │ ├── examples/ │ │ │ ├── __init__.py │ │ │ └── generate_task.py │ │ ├── field_adapter.py │ │ ├── initial_proposals.py │ │ ├── load.py │ │ ├── optimize.py │ │ ├── optimize_nerfacto.py │ │ ├── task.py │ │ ├── utils.py │ │ └── visualizer.py │ ├── install.sh │ ├── pyproject.toml │ ├── saved_renderers.py │ └── setup.py ├── nerfstudio/ │ ├── nerfstudio/ │ │ ├── __init__.py │ │ ├── cameras/ │ │ │ ├── __init__.py │ │ │ ├── camera_optimizers.py │ │ │ ├── camera_paths.py │ │ │ ├── camera_utils.py │ │ │ ├── cameras.py │ │ │ ├── lie_groups.py │ │ │ └── rays.py │ │ ├── configs/ │ │ │ ├── __init__.py │ │ │ ├── base_config.py │ │ │ ├── config_utils.py │ │ │ ├── dataparser_configs.py │ │ │ ├── experiment_config.py │ │ │ ├── external_methods.py │ │ │ └── method_configs.py │ │ ├── data/ │ │ │ ├── __init__.py │ │ │ ├── datamanagers/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base_datamanager.py │ │ │ │ ├── full_images_datamanager.py │ │ │ │ ├── parallel_datamanager.py │ │ │ │ └── random_cameras_datamanager.py │ │ │ ├── dataparsers/ │ │ │ │ ├── __init__.py │ │ │ │ ├── arkitscenes_dataparser.py │ │ │ │ ├── base_dataparser.py │ │ │ │ ├── blender_dataparser.py │ │ │ │ ├── colmap_dataparser.py │ │ │ │ ├── dnerf_dataparser.py │ │ │ │ ├── dycheck_dataparser.py │ │ │ │ ├── instant_ngp_dataparser.py │ │ │ │ ├── minimal_dataparser.py │ │ │ │ ├── nerfosr_dataparser.py │ │ │ │ ├── nerfstudio_dataparser.py │ │ │ │ ├── nuscenes_dataparser.py │ │ │ │ ├── phototourism_dataparser.py │ │ │ │ ├── scannet_dataparser.py │ │ │ │ ├── scannetpp_dataparser.py │ │ │ │ ├── sdfstudio_dataparser.py │ │ │ │ └── sitcoms3d_dataparser.py │ │ │ ├── datasets/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base_dataset.py │ │ │ │ ├── depth_dataset.py │ │ │ │ ├── sdf_dataset.py │ │ │ │ └── semantic_dataset.py │ │ │ ├── pixel_samplers.py │ │ │ ├── scene_box.py │ │ │ └── utils/ │ │ │ ├── __init__.py │ │ │ ├── colmap_parsing_utils.py │ │ │ ├── data_utils.py │ │ │ ├── dataloaders.py │ │ │ ├── dataparsers_utils.py │ │ │ ├── nerfstudio_collate.py │ │ │ └── pixel_sampling_utils.py │ │ ├── engine/ │ │ │ ├── __init__.py │ │ │ ├── callbacks.py │ │ │ ├── optimizers.py │ │ │ ├── schedulers.py │ │ │ └── trainer.py │ │ ├── exporter/ │ │ │ ├── __init__.py │ │ │ ├── exporter_utils.py │ │ │ ├── marching_cubes.py │ │ │ ├── texture_utils.py │ │ │ └── tsdf_utils.py │ │ ├── field_components/ │ │ │ ├── __init__.py │ │ │ ├── activations.py │ │ │ ├── base_field_component.py │ │ │ ├── embedding.py │ │ │ ├── encodings.py │ │ │ ├── field_heads.py │ │ │ ├── mlp.py │ │ │ ├── spatial_distortions.py │ │ │ └── temporal_distortions.py │ │ ├── fields/ │ │ │ ├── __init__.py │ │ │ ├── base_field.py │ │ │ ├── density_fields.py │ │ │ ├── generfacto_field.py │ │ │ ├── nerfacto_field.py │ │ │ ├── nerfw_field.py │ │ │ ├── sdf_field.py │ │ │ ├── semantic_nerf_field.py │ │ │ ├── tensorf_field.py │ │ │ └── vanilla_nerf_field.py │ │ ├── generative/ │ │ │ ├── __init__.py │ │ │ ├── deepfloyd.py │ │ │ ├── positional_text_embeddings.py │ │ │ └── stable_diffusion.py │ │ ├── model_components/ │ │ │ ├── __init__.py │ │ │ ├── lib_bilagrid.py │ │ │ ├── losses.py │ │ │ ├── ray_generators.py │ │ │ ├── ray_samplers.py │ │ │ ├── renderers.py │ │ │ ├── scene_colliders.py │ │ │ └── shaders.py │ │ ├── models/ │ │ │ ├── __init__.py │ │ │ ├── base_model.py │ │ │ ├── base_surface_model.py │ │ │ ├── depth_nerfacto.py │ │ │ ├── generfacto.py │ │ │ ├── instant_ngp.py │ │ │ ├── mipnerf.py │ │ │ ├── nerfacto.py │ │ │ ├── neus.py │ │ │ ├── neus_facto.py │ │ │ ├── semantic_nerfw.py │ │ │ ├── splatfacto.py │ │ │ ├── tensorf.py │ │ │ └── vanilla_nerf.py │ │ ├── pipelines/ │ │ │ ├── __init__.py │ │ │ ├── base_pipeline.py │ │ │ └── dynamic_batch.py │ │ ├── plugins/ │ │ │ ├── __init__.py │ │ │ ├── registry.py │ │ │ ├── registry_dataparser.py │ │ │ └── types.py │ │ ├── process_data/ │ │ │ ├── __init__.py │ │ │ ├── base_converter_to_nerfstudio_dataset.py │ │ │ ├── colmap_converter_to_nerfstudio_dataset.py │ │ │ ├── colmap_utils.py │ │ │ ├── equirect_utils.py │ │ │ ├── hloc_utils.py │ │ │ ├── images_to_nerfstudio_dataset.py │ │ │ ├── metashape_utils.py │ │ │ ├── odm_utils.py │ │ │ ├── polycam_utils.py │ │ │ ├── process_data_utils.py │ │ │ ├── realitycapture_utils.py │ │ │ ├── record3d_utils.py │ │ │ └── video_to_nerfstudio_dataset.py │ │ ├── py.typed │ │ ├── scripts/ │ │ │ ├── __init__.py │ │ │ ├── blender/ │ │ │ │ ├── __init__.py │ │ │ │ └── nerfstudio_blender.py │ │ │ ├── completions/ │ │ │ │ ├── __init__.py │ │ │ │ ├── install.py │ │ │ │ ├── setup.bash │ │ │ │ └── setup.zsh │ │ │ ├── datasets/ │ │ │ │ ├── process_nuscenes_masks.py │ │ │ │ └── process_project_aria.py │ │ │ ├── docs/ │ │ │ │ ├── __init__.py │ │ │ │ ├── add_nb_tags.py │ │ │ │ └── build_docs.py │ │ │ ├── downloads/ │ │ │ │ ├── __init__.py │ │ │ │ ├── download_data.py │ │ │ │ ├── eyeful_tower.py │ │ │ │ └── utils.py │ │ │ ├── eval.py │ │ │ ├── exporter.py │ │ │ ├── github/ │ │ │ │ ├── __init__.py │ │ │ │ └── run_actions.py │ │ │ ├── process_data.py │ │ │ ├── render.py │ │ │ ├── texture.py │ │ │ ├── train.py │ │ │ └── viewer/ │ │ │ ├── __init__.py │ │ │ ├── run_viewer.py │ │ │ └── sync_viser_message_defs.py │ │ ├── utils/ │ │ │ ├── __init__.py │ │ │ ├── colormaps.py │ │ │ ├── colors.py │ │ │ ├── comms.py │ │ │ ├── decorators.py │ │ │ ├── eval_utils.py │ │ │ ├── external.py │ │ │ ├── install_checks.py │ │ │ ├── io.py │ │ │ ├── math.py │ │ │ ├── misc.py │ │ │ ├── plotly_utils.py │ │ │ ├── poses.py │ │ │ ├── printing.py │ │ │ ├── profiler.py │ │ │ ├── rich_utils.py │ │ │ ├── scripts.py │ │ │ ├── tensor_dataclass.py │ │ │ └── writer.py │ │ ├── viewer/ │ │ │ ├── __init__.py │ │ │ ├── control_panel.py │ │ │ ├── export_panel.py │ │ │ ├── render_panel.py │ │ │ ├── render_state_machine.py │ │ │ ├── server/ │ │ │ │ ├── __init__.py │ │ │ │ └── viewer_elements.py │ │ │ ├── utils.py │ │ │ ├── viewer.py │ │ │ └── viewer_elements.py │ │ └── viewer_legacy/ │ │ ├── __init__.py │ │ ├── app/ │ │ │ ├── package.json │ │ │ ├── public/ │ │ │ │ └── manifest.json │ │ │ ├── run_deploy.py │ │ │ ├── src/ │ │ │ │ └── themes/ │ │ │ │ └── leva_theme.json │ │ │ └── tsconfig.json │ │ ├── server/ │ │ │ ├── __init__.py │ │ │ ├── control_panel.py │ │ │ ├── gui_utils.py │ │ │ ├── path.py │ │ │ ├── render_state_machine.py │ │ │ ├── state/ │ │ │ │ ├── node.py │ │ │ │ └── state_node.py │ │ │ ├── utils.py │ │ │ ├── viewer_elements.py │ │ │ ├── viewer_state.py │ │ │ └── viewer_utils.py │ │ └── viser/ │ │ ├── __init__.py │ │ ├── gui.py │ │ ├── message_api.py │ │ ├── messages.py │ │ └── server.py │ └── pyproject.toml └── vlmx/ ├── .gitignore ├── README.md ├── quickstart.ipynb ├── setup.py └── vlmx/ ├── __init__.py ├── agent.py ├── artifact.py ├── context_agent.py ├── multimodal_incontext_agent.py ├── prompt_utils.py ├── tool_use_agent.py └── utils.py