├── .clang-format ├── .git-blame-ignore-revs ├── .github ├── dependabot.yml └── workflows │ ├── macOS_arm64_toolchain.cmake │ ├── tag_wheel_manylinux.py │ └── wheels.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── assets ├── domino_gif.gif ├── logo.png └── teaser.gif ├── configs_example ├── scene.exr ├── scene.png ├── scene.xml └── viewer.py ├── docs ├── _static │ └── theme_overrides.css ├── _templates │ └── page.html ├── conf.py ├── docs_api │ ├── conf.py │ └── list_api.rst ├── exts │ └── sphinxtr │ │ ├── LICENSE │ │ ├── custombackports.py │ │ ├── figtable.py │ │ ├── fix_equation_ref.py │ │ ├── html_mods.py │ │ ├── latex_mods.py │ │ ├── numfig.py │ │ ├── numsec.py │ │ ├── pluginparameters.py │ │ ├── singlehtml_toc.py │ │ ├── singletext.py │ │ └── subfig.py ├── generate_plugin_doc.py ├── generated │ ├── extracted_rst_api.rst │ └── mitsuba_api.rst ├── images │ ├── DO_NOT_PUT_FILES_HERE.txt │ ├── logo.png │ ├── logo_plain.pdf │ ├── logo_plain.png │ ├── logo_plain.svg │ └── mitsuba-logo-white-bg.png ├── index.rst ├── issue_template.md ├── pull_request_template.md ├── references.bib ├── release_notes.rst ├── requirements.txt ├── src │ ├── api_reference.rst │ ├── developer_guide.rst │ ├── developer_guide │ │ ├── compiling.rst │ │ ├── documentation.rst │ │ ├── testing.rst │ │ ├── variants_cpp.rst │ │ └── writing_plugin.rst │ ├── gallery.rst │ ├── how_to_guides │ ├── how_to_guides.rst │ ├── inverse_rendering_tutorials.rst │ ├── key_topics.rst │ ├── key_topics │ │ ├── differences.rst │ │ ├── polarization.rst │ │ ├── scene_format.rst │ │ └── variants.rst │ ├── others_tutorials.rst │ ├── plugin_reference.rst │ ├── plugin_reference │ │ ├── section_bsdfs.rst │ │ ├── section_emitters.rst │ │ ├── section_films.rst │ │ ├── section_integrators.rst │ │ ├── section_media.rst │ │ ├── section_phase.rst │ │ ├── section_rfilters.rst │ │ ├── section_samplers.rst │ │ ├── section_sensors.rst │ │ ├── section_shapes.rst │ │ ├── section_spectra.rst │ │ ├── section_textures.rst │ │ └── section_volumes.rst │ └── rendering_tutorials.rst └── zz_bibliography.rst ├── doppler_tutorials ├── README.md ├── assets │ ├── plot_experiment_1.png │ ├── plot_experiment_1_old.png │ ├── plot_experiment_2.png │ └── plot_experiment_3.png └── src │ ├── main_animation.py │ ├── main_experiment.py │ ├── main_plot.py │ ├── main_show_image.py │ ├── program_runner.py │ ├── run_animation.sh │ ├── run_experiment_0_gt_images.sh │ ├── run_experiment_1_different_time_sampling.sh │ ├── run_experiment_2_no_further_stratification.sh │ ├── run_experiment_3_different_antithetic_shifts.sh │ └── utils │ ├── common_configs.py │ └── image_utils.py ├── ext ├── CMakeLists.txt └── rgb2spec │ ├── CMakeLists.txt │ ├── details │ ├── cie1931.h │ └── lu.h │ ├── rgb2spec.c │ ├── rgb2spec.h │ └── rgb2spec_opt.cpp ├── include └── mitsuba │ ├── core │ ├── appender.h │ ├── argparser.h │ ├── atomic.h │ ├── bbox.h │ ├── bitmap.h │ ├── bsphere.h │ ├── class.h │ ├── distr_1d.h │ ├── distr_2d.h │ ├── dstream.h │ ├── field.h │ ├── filesystem.h │ ├── formatter.h │ ├── frame.h │ ├── fresolver.h │ ├── fstream.h │ ├── fwd.h │ ├── hash.h │ ├── jit.h │ ├── logger.h │ ├── math.h │ ├── mmap.h │ ├── mstream.h │ ├── object.h │ ├── platform.h │ ├── plugin.h │ ├── profiler.h │ ├── progress.h │ ├── properties.h │ ├── qmc.h │ ├── quad.h │ ├── random.h │ ├── ray.h │ ├── rfilter.h │ ├── simd.h │ ├── spectrum.h │ ├── spline.h │ ├── stream.h │ ├── string.h │ ├── struct.h │ ├── tensor.h │ ├── thread.h │ ├── timer.h │ ├── traits.h │ ├── transform.h │ ├── util.h │ ├── variant.h │ ├── vector.h │ ├── warp.h │ ├── xml.h │ └── zstream.h │ ├── mitsuba.h │ ├── python │ ├── docstr.h │ └── python.h │ ├── render │ ├── bsdf.h │ ├── emitter.h │ ├── endpoint.h │ ├── film.h │ ├── fresnel.h │ ├── fwd.h │ ├── imageblock.h │ ├── integrator.h │ ├── interaction.h │ ├── ior.h │ ├── kdtree.h │ ├── medium.h │ ├── mesh.h │ ├── microfacet.h │ ├── microflake.h │ ├── mueller.h │ ├── optix │ │ ├── bbox.cuh │ │ ├── common.h │ │ ├── math.cuh │ │ ├── matrix.cuh │ │ ├── ray.cuh │ │ ├── shapes.h │ │ └── vector.cuh │ ├── optix_api.h │ ├── optixdenoiser.h │ ├── phase.h │ ├── records.h │ ├── sampler.h │ ├── scene.h │ ├── sensor.h │ ├── shape.h │ ├── shapegroup.h │ ├── spiral.h │ ├── srgb.h │ ├── texture.h │ ├── volume.h │ ├── volumegrid.h │ └── waveform_utils.h │ └── ui │ ├── fwd.h │ ├── texture.h │ └── viewer.h ├── pyproject.toml ├── resources ├── check-style.sh ├── configure.py ├── generate_stub_files.py ├── mitsuba-logo.png ├── mitsuba.conf.template ├── ptx │ ├── Makefile │ └── optix_rt.ptx ├── setpath.bat ├── setpath.ps1 └── setpath.sh ├── setup.py └── src ├── CMakeLists.txt ├── bsdfs ├── CMakeLists.txt ├── __init__.py ├── blendbsdf.cpp ├── bumpmap.cpp ├── circular.cpp ├── conductor.cpp ├── dielectric.cpp ├── diffuse.cpp ├── mask.cpp ├── measured.cpp ├── measured_polarized.cpp ├── normalmap.cpp ├── null.cpp ├── plastic.cpp ├── polarizer.cpp ├── pplastic.cpp ├── principled.cpp ├── principledhelpers.h ├── principledthin.cpp ├── retarder.cpp ├── roughconductor.cpp ├── roughdielectric.cpp ├── roughplastic.cpp ├── tests │ ├── __init__.py │ ├── test_blendbsdf.py │ ├── test_conductor.py │ ├── test_dielectric.py │ ├── test_diffuse.py │ ├── test_measured_polarized.py │ ├── test_polarizer.py │ ├── test_pplastic.py │ ├── test_principled.py │ ├── test_principledthin.py │ ├── test_retarder.py │ ├── test_rough_conductor.py │ ├── test_rough_dielectric.py │ ├── test_rough_plastic.py │ └── test_twosided.py ├── thindielectric.cpp └── twosided.cpp ├── cmake └── FindSphinx.cmake ├── conftest.py ├── core ├── CMakeLists.txt ├── __init__.py ├── appender.cpp ├── argparser.cpp ├── bitmap.cpp ├── class.cpp ├── dither-matrix256.cpp ├── dstream.cpp ├── filesystem.cpp ├── formatter.cpp ├── fresolver.cpp ├── fstream.cpp ├── jit.cpp ├── logger.cpp ├── mmap.cpp ├── mstream.cpp ├── object.cpp ├── plugin.cpp ├── profiler.cpp ├── progress.cpp ├── properties.cpp ├── python │ ├── CMakeLists.txt │ ├── appender.cpp │ ├── argparser.cpp │ ├── atomic.cpp │ ├── bbox_v.cpp │ ├── bitmap.cpp │ ├── bsphere_v.cpp │ ├── cast.cpp │ ├── distr_1d_v.cpp │ ├── distr_2d_v.cpp │ ├── drjit_v.cpp │ ├── filesystem.cpp │ ├── formatter.cpp │ ├── frame_v.cpp │ ├── fresolver.cpp │ ├── logger.cpp │ ├── math_v.cpp │ ├── mmap.cpp │ ├── object.cpp │ ├── object_v.cpp │ ├── progress.cpp │ ├── properties_v.cpp │ ├── qmc_v.cpp │ ├── quad_v.cpp │ ├── random_v.cpp │ ├── ray_v.cpp │ ├── rfilter.cpp │ ├── rfilter_v.cpp │ ├── spectrum_v.cpp │ ├── spline_v.cpp │ ├── stream.cpp │ ├── struct.cpp │ ├── thread.cpp │ ├── timer.cpp │ ├── transform_v.cpp │ ├── util.cpp │ ├── vector_v.cpp │ ├── warp_v.cpp │ └── xml_v.cpp ├── qmc.cpp ├── rfilter.cpp ├── spectrum.cpp ├── stream.cpp ├── string.cpp ├── struct.cpp ├── tensor.cpp ├── tests │ ├── __init__.py │ ├── test_argparser.py │ ├── test_atomic.py │ ├── test_bbox.py │ ├── test_bitmap.py │ ├── test_bsphere.py │ ├── test_dict.py │ ├── test_distr_1d.py │ ├── test_distr_2d.py │ ├── test_filesystem.py │ ├── test_frame.py │ ├── test_logger.py │ ├── test_math.py │ ├── test_mmap.py │ ├── test_properties.py │ ├── test_python.py │ ├── test_qmc.py │ ├── test_quad.py │ ├── test_random.py │ ├── test_spectrum.py │ ├── test_spline.py │ ├── test_stream.py │ ├── test_struct.py │ ├── test_transform.py │ ├── test_util.py │ ├── test_vector.py │ ├── test_warp.py │ ├── test_write_xml.py │ └── test_xml.py ├── thread.cpp ├── transform.cpp ├── util.cpp ├── xml.cpp └── zstream.cpp ├── emitters ├── CMakeLists.txt ├── __init__.py ├── area.cpp ├── constant.cpp ├── directional.cpp ├── directionalarea.cpp ├── envmap.cpp ├── point.cpp ├── projector.cpp ├── spot.cpp └── tests │ ├── __init__.py │ ├── data │ ├── __init__.py │ └── triangle.ply │ ├── test_area.py │ ├── test_constant.py │ ├── test_directional.py │ ├── test_envmap.py │ ├── test_point.py │ └── test_spot.py ├── films ├── CMakeLists.txt ├── hdrfilm.cpp ├── specfilm.cpp └── tests │ ├── test_hdrfilm.py │ └── test_specfilm.py ├── integrators ├── CMakeLists.txt ├── __init__.py ├── aov.cpp ├── depth.cpp ├── direct.cpp ├── dopplertofpath.cpp ├── moment.cpp ├── path.cpp ├── ptracer.cpp ├── stokes.cpp ├── tests │ ├── __init__.py │ ├── test_ad_integrators.py │ └── test_ptracer.py ├── velocity.cpp ├── volpath.cpp └── volpathmis.cpp ├── media ├── CMakeLists.txt ├── heterogeneous.cpp ├── homogeneous.cpp └── tests │ └── __init__.py ├── mitsuba ├── CMakeLists.txt └── mitsuba.cpp ├── phase ├── CMakeLists.txt ├── blendphase.cpp ├── hg.cpp ├── isotropic.cpp ├── rayleigh.cpp ├── sggx.cpp ├── tabphase.cpp └── tests │ ├── test_blendphase.py │ ├── test_hg.py │ ├── test_isotropic.py │ ├── test_rayleigh.py │ ├── test_sggx.py │ ├── test_tabphase.py │ └── test_trampoline.py ├── python ├── CMakeLists.txt ├── __init__.py ├── main.cpp ├── main_v.cpp └── python │ ├── __init__.py │ ├── ad │ ├── __init__.py │ ├── integrators │ │ ├── __init__.py │ │ ├── common.py │ │ ├── direct_reparam.py │ │ ├── emission_reparam.py │ │ ├── prb.py │ │ ├── prb_basic.py │ │ ├── prb_reparam.py │ │ └── prbvolpath.py │ ├── optimizers.py │ └── reparam.py │ ├── chi2.py │ ├── cli.py │ ├── math.py │ ├── polvis.py │ ├── sys_info.py │ ├── test │ ├── __init__.py │ └── util.py │ ├── tests │ └── test_util.py │ ├── tonemap.py │ ├── util.py │ └── xml.py ├── render ├── CMakeLists.txt ├── __init__.py ├── bsdf.cpp ├── emitter.cpp ├── endpoint.cpp ├── film.cpp ├── imageblock.cpp ├── integrator.cpp ├── interaction.cpp ├── kdtree.cpp ├── medium.cpp ├── mesh.cpp ├── microfacet.cpp ├── optix │ └── optix_rt.cu ├── optix_api.cpp ├── optixdenoiser.cpp ├── phase.cpp ├── python │ ├── CMakeLists.txt │ ├── bsdf.cpp │ ├── bsdf_v.cpp │ ├── emitter.cpp │ ├── emitter_v.cpp │ ├── endpoint_v.cpp │ ├── film.cpp │ ├── film_v.cpp │ ├── fresnel_v.cpp │ ├── imageblock_v.cpp │ ├── integrator_v.cpp │ ├── interaction.cpp │ ├── interaction_v.cpp │ ├── medium_v.cpp │ ├── microfacet.cpp │ ├── microfacet_v.cpp │ ├── mueller_v.cpp │ ├── optixdenoiser_v.cpp │ ├── phase.cpp │ ├── phase_v.cpp │ ├── records_v.cpp │ ├── sampler_v.cpp │ ├── scene_v.cpp │ ├── sensor.cpp │ ├── sensor_v.cpp │ ├── shape_v.cpp │ ├── signal.h │ ├── spiral.cpp │ ├── srgb_v.cpp │ ├── texture_v.cpp │ ├── volume_v.cpp │ └── volumegrid_v.cpp ├── sampler.cpp ├── scene.cpp ├── scene_embree.inl ├── scene_native.inl ├── scene_optix.inl ├── sensor.cpp ├── shape.cpp ├── shapegroup.cpp ├── spiral.cpp ├── srgb.cpp ├── tests │ ├── __init__.py │ ├── data │ │ ├── triangle.ply │ │ └── triangle_face_colors.ply │ ├── test_ad.py │ ├── test_bsdf.py │ ├── test_dispatch.py │ ├── test_fresnel.py │ ├── test_imageblock.py │ ├── test_interaction.py │ ├── test_kdtrees.py │ ├── test_megakernel.py │ ├── test_mesh.py │ ├── test_microfacet.py │ ├── test_mueller.py │ ├── test_optixdenoiser.py │ ├── test_records.py │ ├── test_renders.py │ ├── test_reparameterization.py │ ├── test_scene.py │ ├── test_sensor.py │ ├── test_spectra.py │ ├── test_spiral.py │ ├── test_tutorials.py │ └── test_volumegrid.py ├── texture.cpp ├── volume.cpp └── volumegrid.cpp ├── rfilters ├── CMakeLists.txt ├── __init__.py ├── box.cpp ├── catmullrom.cpp ├── gaussian.cpp ├── lanczos.cpp ├── mitchell.cpp ├── tent.cpp └── tests │ ├── __init__.py │ └── test_rfilter.py ├── samplers ├── CMakeLists.txt ├── __init__.py ├── correlated.cpp ├── independent.cpp ├── ldsampler.cpp ├── multijitter.cpp ├── orthogonal.cpp ├── stratified.cpp ├── tests │ ├── __init__.py │ ├── test_independent.py │ ├── test_ldsampler.py │ ├── test_multijitter.py │ ├── test_orthogonal.py │ ├── test_stratified.py │ └── utils.py └── timestratified.cpp ├── sensors ├── CMakeLists.txt ├── __init__.py ├── batch.cpp ├── distant.cpp ├── irradiancemeter.cpp ├── orthographic.cpp ├── perspective.cpp ├── radiancemeter.cpp ├── tests │ ├── __init__.py │ ├── test_distant.py │ ├── test_irradiancemeter.py │ ├── test_orthographic.py │ ├── test_perspective.py │ ├── test_radiancemeter.py │ └── test_thinlens.py └── thinlens.cpp ├── shapes ├── CMakeLists.txt ├── __init__.py ├── blender.cpp ├── cube.cpp ├── cylinder.cpp ├── disk.cpp ├── instance.cpp ├── merge.cpp ├── obj.cpp ├── optix │ ├── cylinder.cuh │ ├── disk.cuh │ ├── mesh.cuh │ ├── rectangle.cuh │ └── sphere.cuh ├── ply.cpp ├── rectangle.cpp ├── serialized.cpp ├── shapegroup.cpp ├── sphere.cpp └── tests │ ├── __init__.py │ ├── test_cube.py │ ├── test_cylinder.py │ ├── test_disk.py │ ├── test_instance.py │ ├── test_rectangle.py │ ├── test_shapegroup.py │ └── test_sphere.py ├── spectra ├── CMakeLists.txt ├── blackbody.cpp ├── d65.cpp ├── irregular.cpp ├── regular.cpp ├── srgb.cpp ├── tests │ ├── test_d65.py │ ├── test_irregular.py │ └── test_regular.py └── uniform.cpp ├── textures ├── CMakeLists.txt ├── bitmap.cpp ├── checkerboard.cpp ├── mesh_attribute.cpp ├── tests │ ├── test_bitmap.py │ ├── test_mesh_attribute.py │ └── test_volume.py └── volume.cpp └── volumes ├── CMakeLists.txt ├── const.cpp ├── grid.cpp └── tests ├── test_constant.py └── test_grid.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/.clang-format -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | 468ae070d64c601307ee2884af9fa0f012f71d49 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/macOS_arm64_toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/.github/workflows/macOS_arm64_toolchain.cmake -------------------------------------------------------------------------------- /.github/workflows/tag_wheel_manylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/.github/workflows/tag_wheel_manylinux.py -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/README.md -------------------------------------------------------------------------------- /assets/domino_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/assets/domino_gif.gif -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/teaser.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/assets/teaser.gif -------------------------------------------------------------------------------- /configs_example/scene.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/configs_example/scene.exr -------------------------------------------------------------------------------- /configs_example/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/configs_example/scene.png -------------------------------------------------------------------------------- /configs_example/scene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/configs_example/scene.xml -------------------------------------------------------------------------------- /configs_example/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/configs_example/viewer.py -------------------------------------------------------------------------------- /docs/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/_static/theme_overrides.css -------------------------------------------------------------------------------- /docs/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/_templates/page.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/docs_api/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/docs_api/conf.py -------------------------------------------------------------------------------- /docs/docs_api/list_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/docs_api/list_api.rst -------------------------------------------------------------------------------- /docs/exts/sphinxtr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/LICENSE -------------------------------------------------------------------------------- /docs/exts/sphinxtr/custombackports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/custombackports.py -------------------------------------------------------------------------------- /docs/exts/sphinxtr/figtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/figtable.py -------------------------------------------------------------------------------- /docs/exts/sphinxtr/fix_equation_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/fix_equation_ref.py -------------------------------------------------------------------------------- /docs/exts/sphinxtr/html_mods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/html_mods.py -------------------------------------------------------------------------------- /docs/exts/sphinxtr/latex_mods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/latex_mods.py -------------------------------------------------------------------------------- /docs/exts/sphinxtr/numfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/numfig.py -------------------------------------------------------------------------------- /docs/exts/sphinxtr/numsec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/numsec.py -------------------------------------------------------------------------------- /docs/exts/sphinxtr/pluginparameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/pluginparameters.py -------------------------------------------------------------------------------- /docs/exts/sphinxtr/singlehtml_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/singlehtml_toc.py -------------------------------------------------------------------------------- /docs/exts/sphinxtr/singletext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/singletext.py -------------------------------------------------------------------------------- /docs/exts/sphinxtr/subfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/exts/sphinxtr/subfig.py -------------------------------------------------------------------------------- /docs/generate_plugin_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/generate_plugin_doc.py -------------------------------------------------------------------------------- /docs/generated/extracted_rst_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/generated/extracted_rst_api.rst -------------------------------------------------------------------------------- /docs/generated/mitsuba_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/generated/mitsuba_api.rst -------------------------------------------------------------------------------- /docs/images/DO_NOT_PUT_FILES_HERE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/images/DO_NOT_PUT_FILES_HERE.txt -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/logo_plain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/images/logo_plain.pdf -------------------------------------------------------------------------------- /docs/images/logo_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/images/logo_plain.png -------------------------------------------------------------------------------- /docs/images/logo_plain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/images/logo_plain.svg -------------------------------------------------------------------------------- /docs/images/mitsuba-logo-white-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/images/mitsuba-logo-white-bg.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/issue_template.md -------------------------------------------------------------------------------- /docs/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/pull_request_template.md -------------------------------------------------------------------------------- /docs/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/references.bib -------------------------------------------------------------------------------- /docs/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/release_notes.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/src/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/api_reference.rst -------------------------------------------------------------------------------- /docs/src/developer_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/developer_guide.rst -------------------------------------------------------------------------------- /docs/src/developer_guide/compiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/developer_guide/compiling.rst -------------------------------------------------------------------------------- /docs/src/developer_guide/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/developer_guide/documentation.rst -------------------------------------------------------------------------------- /docs/src/developer_guide/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/developer_guide/testing.rst -------------------------------------------------------------------------------- /docs/src/developer_guide/variants_cpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/developer_guide/variants_cpp.rst -------------------------------------------------------------------------------- /docs/src/developer_guide/writing_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/developer_guide/writing_plugin.rst -------------------------------------------------------------------------------- /docs/src/gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/gallery.rst -------------------------------------------------------------------------------- /docs/src/how_to_guides: -------------------------------------------------------------------------------- 1 | ../../tutorials/how_to_guides -------------------------------------------------------------------------------- /docs/src/how_to_guides.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/how_to_guides.rst -------------------------------------------------------------------------------- /docs/src/inverse_rendering_tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/inverse_rendering_tutorials.rst -------------------------------------------------------------------------------- /docs/src/key_topics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/key_topics.rst -------------------------------------------------------------------------------- /docs/src/key_topics/differences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/key_topics/differences.rst -------------------------------------------------------------------------------- /docs/src/key_topics/polarization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/key_topics/polarization.rst -------------------------------------------------------------------------------- /docs/src/key_topics/scene_format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/key_topics/scene_format.rst -------------------------------------------------------------------------------- /docs/src/key_topics/variants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/key_topics/variants.rst -------------------------------------------------------------------------------- /docs/src/others_tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/others_tutorials.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_bsdfs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_bsdfs.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_emitters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_emitters.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_films.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_films.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_integrators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_integrators.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_media.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_media.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_phase.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_phase.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_rfilters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_rfilters.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_samplers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_samplers.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_sensors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_sensors.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_shapes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_shapes.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_spectra.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_spectra.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_textures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_textures.rst -------------------------------------------------------------------------------- /docs/src/plugin_reference/section_volumes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/plugin_reference/section_volumes.rst -------------------------------------------------------------------------------- /docs/src/rendering_tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/src/rendering_tutorials.rst -------------------------------------------------------------------------------- /docs/zz_bibliography.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/docs/zz_bibliography.rst -------------------------------------------------------------------------------- /doppler_tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/README.md -------------------------------------------------------------------------------- /doppler_tutorials/assets/plot_experiment_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/assets/plot_experiment_1.png -------------------------------------------------------------------------------- /doppler_tutorials/assets/plot_experiment_1_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/assets/plot_experiment_1_old.png -------------------------------------------------------------------------------- /doppler_tutorials/assets/plot_experiment_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/assets/plot_experiment_2.png -------------------------------------------------------------------------------- /doppler_tutorials/assets/plot_experiment_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/assets/plot_experiment_3.png -------------------------------------------------------------------------------- /doppler_tutorials/src/main_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/main_animation.py -------------------------------------------------------------------------------- /doppler_tutorials/src/main_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/main_experiment.py -------------------------------------------------------------------------------- /doppler_tutorials/src/main_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/main_plot.py -------------------------------------------------------------------------------- /doppler_tutorials/src/main_show_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/main_show_image.py -------------------------------------------------------------------------------- /doppler_tutorials/src/program_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/program_runner.py -------------------------------------------------------------------------------- /doppler_tutorials/src/run_animation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/run_animation.sh -------------------------------------------------------------------------------- /doppler_tutorials/src/run_experiment_0_gt_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/run_experiment_0_gt_images.sh -------------------------------------------------------------------------------- /doppler_tutorials/src/run_experiment_1_different_time_sampling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/run_experiment_1_different_time_sampling.sh -------------------------------------------------------------------------------- /doppler_tutorials/src/run_experiment_2_no_further_stratification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/run_experiment_2_no_further_stratification.sh -------------------------------------------------------------------------------- /doppler_tutorials/src/run_experiment_3_different_antithetic_shifts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/run_experiment_3_different_antithetic_shifts.sh -------------------------------------------------------------------------------- /doppler_tutorials/src/utils/common_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/utils/common_configs.py -------------------------------------------------------------------------------- /doppler_tutorials/src/utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/doppler_tutorials/src/utils/image_utils.py -------------------------------------------------------------------------------- /ext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/ext/CMakeLists.txt -------------------------------------------------------------------------------- /ext/rgb2spec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/ext/rgb2spec/CMakeLists.txt -------------------------------------------------------------------------------- /ext/rgb2spec/details/cie1931.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/ext/rgb2spec/details/cie1931.h -------------------------------------------------------------------------------- /ext/rgb2spec/details/lu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/ext/rgb2spec/details/lu.h -------------------------------------------------------------------------------- /ext/rgb2spec/rgb2spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/ext/rgb2spec/rgb2spec.c -------------------------------------------------------------------------------- /ext/rgb2spec/rgb2spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/ext/rgb2spec/rgb2spec.h -------------------------------------------------------------------------------- /ext/rgb2spec/rgb2spec_opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/ext/rgb2spec/rgb2spec_opt.cpp -------------------------------------------------------------------------------- /include/mitsuba/core/appender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/appender.h -------------------------------------------------------------------------------- /include/mitsuba/core/argparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/argparser.h -------------------------------------------------------------------------------- /include/mitsuba/core/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/atomic.h -------------------------------------------------------------------------------- /include/mitsuba/core/bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/bbox.h -------------------------------------------------------------------------------- /include/mitsuba/core/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/bitmap.h -------------------------------------------------------------------------------- /include/mitsuba/core/bsphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/bsphere.h -------------------------------------------------------------------------------- /include/mitsuba/core/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/class.h -------------------------------------------------------------------------------- /include/mitsuba/core/distr_1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/distr_1d.h -------------------------------------------------------------------------------- /include/mitsuba/core/distr_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/distr_2d.h -------------------------------------------------------------------------------- /include/mitsuba/core/dstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/dstream.h -------------------------------------------------------------------------------- /include/mitsuba/core/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/field.h -------------------------------------------------------------------------------- /include/mitsuba/core/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/filesystem.h -------------------------------------------------------------------------------- /include/mitsuba/core/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/formatter.h -------------------------------------------------------------------------------- /include/mitsuba/core/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/frame.h -------------------------------------------------------------------------------- /include/mitsuba/core/fresolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/fresolver.h -------------------------------------------------------------------------------- /include/mitsuba/core/fstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/fstream.h -------------------------------------------------------------------------------- /include/mitsuba/core/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/fwd.h -------------------------------------------------------------------------------- /include/mitsuba/core/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/hash.h -------------------------------------------------------------------------------- /include/mitsuba/core/jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/jit.h -------------------------------------------------------------------------------- /include/mitsuba/core/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/logger.h -------------------------------------------------------------------------------- /include/mitsuba/core/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/math.h -------------------------------------------------------------------------------- /include/mitsuba/core/mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/mmap.h -------------------------------------------------------------------------------- /include/mitsuba/core/mstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/mstream.h -------------------------------------------------------------------------------- /include/mitsuba/core/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/object.h -------------------------------------------------------------------------------- /include/mitsuba/core/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/platform.h -------------------------------------------------------------------------------- /include/mitsuba/core/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/plugin.h -------------------------------------------------------------------------------- /include/mitsuba/core/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/profiler.h -------------------------------------------------------------------------------- /include/mitsuba/core/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/progress.h -------------------------------------------------------------------------------- /include/mitsuba/core/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/properties.h -------------------------------------------------------------------------------- /include/mitsuba/core/qmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/qmc.h -------------------------------------------------------------------------------- /include/mitsuba/core/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/quad.h -------------------------------------------------------------------------------- /include/mitsuba/core/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/random.h -------------------------------------------------------------------------------- /include/mitsuba/core/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/ray.h -------------------------------------------------------------------------------- /include/mitsuba/core/rfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/rfilter.h -------------------------------------------------------------------------------- /include/mitsuba/core/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/simd.h -------------------------------------------------------------------------------- /include/mitsuba/core/spectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/spectrum.h -------------------------------------------------------------------------------- /include/mitsuba/core/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/spline.h -------------------------------------------------------------------------------- /include/mitsuba/core/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/stream.h -------------------------------------------------------------------------------- /include/mitsuba/core/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/string.h -------------------------------------------------------------------------------- /include/mitsuba/core/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/struct.h -------------------------------------------------------------------------------- /include/mitsuba/core/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/tensor.h -------------------------------------------------------------------------------- /include/mitsuba/core/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/thread.h -------------------------------------------------------------------------------- /include/mitsuba/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/timer.h -------------------------------------------------------------------------------- /include/mitsuba/core/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/traits.h -------------------------------------------------------------------------------- /include/mitsuba/core/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/transform.h -------------------------------------------------------------------------------- /include/mitsuba/core/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/util.h -------------------------------------------------------------------------------- /include/mitsuba/core/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/variant.h -------------------------------------------------------------------------------- /include/mitsuba/core/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/vector.h -------------------------------------------------------------------------------- /include/mitsuba/core/warp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/warp.h -------------------------------------------------------------------------------- /include/mitsuba/core/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/xml.h -------------------------------------------------------------------------------- /include/mitsuba/core/zstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/core/zstream.h -------------------------------------------------------------------------------- /include/mitsuba/mitsuba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/mitsuba.h -------------------------------------------------------------------------------- /include/mitsuba/python/docstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/python/docstr.h -------------------------------------------------------------------------------- /include/mitsuba/python/python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/python/python.h -------------------------------------------------------------------------------- /include/mitsuba/render/bsdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/bsdf.h -------------------------------------------------------------------------------- /include/mitsuba/render/emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/emitter.h -------------------------------------------------------------------------------- /include/mitsuba/render/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/endpoint.h -------------------------------------------------------------------------------- /include/mitsuba/render/film.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/film.h -------------------------------------------------------------------------------- /include/mitsuba/render/fresnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/fresnel.h -------------------------------------------------------------------------------- /include/mitsuba/render/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/fwd.h -------------------------------------------------------------------------------- /include/mitsuba/render/imageblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/imageblock.h -------------------------------------------------------------------------------- /include/mitsuba/render/integrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/integrator.h -------------------------------------------------------------------------------- /include/mitsuba/render/interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/interaction.h -------------------------------------------------------------------------------- /include/mitsuba/render/ior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/ior.h -------------------------------------------------------------------------------- /include/mitsuba/render/kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/kdtree.h -------------------------------------------------------------------------------- /include/mitsuba/render/medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/medium.h -------------------------------------------------------------------------------- /include/mitsuba/render/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/mesh.h -------------------------------------------------------------------------------- /include/mitsuba/render/microfacet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/microfacet.h -------------------------------------------------------------------------------- /include/mitsuba/render/microflake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/microflake.h -------------------------------------------------------------------------------- /include/mitsuba/render/mueller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/mueller.h -------------------------------------------------------------------------------- /include/mitsuba/render/optix/bbox.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/optix/bbox.cuh -------------------------------------------------------------------------------- /include/mitsuba/render/optix/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/optix/common.h -------------------------------------------------------------------------------- /include/mitsuba/render/optix/math.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/optix/math.cuh -------------------------------------------------------------------------------- /include/mitsuba/render/optix/matrix.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/optix/matrix.cuh -------------------------------------------------------------------------------- /include/mitsuba/render/optix/ray.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/optix/ray.cuh -------------------------------------------------------------------------------- /include/mitsuba/render/optix/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/optix/shapes.h -------------------------------------------------------------------------------- /include/mitsuba/render/optix/vector.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/optix/vector.cuh -------------------------------------------------------------------------------- /include/mitsuba/render/optix_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/optix_api.h -------------------------------------------------------------------------------- /include/mitsuba/render/optixdenoiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/optixdenoiser.h -------------------------------------------------------------------------------- /include/mitsuba/render/phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/phase.h -------------------------------------------------------------------------------- /include/mitsuba/render/records.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/records.h -------------------------------------------------------------------------------- /include/mitsuba/render/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/sampler.h -------------------------------------------------------------------------------- /include/mitsuba/render/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/scene.h -------------------------------------------------------------------------------- /include/mitsuba/render/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/sensor.h -------------------------------------------------------------------------------- /include/mitsuba/render/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/shape.h -------------------------------------------------------------------------------- /include/mitsuba/render/shapegroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/shapegroup.h -------------------------------------------------------------------------------- /include/mitsuba/render/spiral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/spiral.h -------------------------------------------------------------------------------- /include/mitsuba/render/srgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/srgb.h -------------------------------------------------------------------------------- /include/mitsuba/render/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/texture.h -------------------------------------------------------------------------------- /include/mitsuba/render/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/volume.h -------------------------------------------------------------------------------- /include/mitsuba/render/volumegrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/volumegrid.h -------------------------------------------------------------------------------- /include/mitsuba/render/waveform_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/render/waveform_utils.h -------------------------------------------------------------------------------- /include/mitsuba/ui/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/ui/fwd.h -------------------------------------------------------------------------------- /include/mitsuba/ui/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/ui/texture.h -------------------------------------------------------------------------------- /include/mitsuba/ui/viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/include/mitsuba/ui/viewer.h -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/pyproject.toml -------------------------------------------------------------------------------- /resources/check-style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/resources/check-style.sh -------------------------------------------------------------------------------- /resources/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/resources/configure.py -------------------------------------------------------------------------------- /resources/generate_stub_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/resources/generate_stub_files.py -------------------------------------------------------------------------------- /resources/mitsuba-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/resources/mitsuba-logo.png -------------------------------------------------------------------------------- /resources/mitsuba.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/resources/mitsuba.conf.template -------------------------------------------------------------------------------- /resources/ptx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/resources/ptx/Makefile -------------------------------------------------------------------------------- /resources/ptx/optix_rt.ptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/resources/ptx/optix_rt.ptx -------------------------------------------------------------------------------- /resources/setpath.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/resources/setpath.bat -------------------------------------------------------------------------------- /resources/setpath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/resources/setpath.ps1 -------------------------------------------------------------------------------- /resources/setpath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/resources/setpath.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/setup.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/bsdfs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/CMakeLists.txt -------------------------------------------------------------------------------- /src/bsdfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bsdfs/blendbsdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/blendbsdf.cpp -------------------------------------------------------------------------------- /src/bsdfs/bumpmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/bumpmap.cpp -------------------------------------------------------------------------------- /src/bsdfs/circular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/circular.cpp -------------------------------------------------------------------------------- /src/bsdfs/conductor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/conductor.cpp -------------------------------------------------------------------------------- /src/bsdfs/dielectric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/dielectric.cpp -------------------------------------------------------------------------------- /src/bsdfs/diffuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/diffuse.cpp -------------------------------------------------------------------------------- /src/bsdfs/mask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/mask.cpp -------------------------------------------------------------------------------- /src/bsdfs/measured.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/measured.cpp -------------------------------------------------------------------------------- /src/bsdfs/measured_polarized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/measured_polarized.cpp -------------------------------------------------------------------------------- /src/bsdfs/normalmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/normalmap.cpp -------------------------------------------------------------------------------- /src/bsdfs/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/null.cpp -------------------------------------------------------------------------------- /src/bsdfs/plastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/plastic.cpp -------------------------------------------------------------------------------- /src/bsdfs/polarizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/polarizer.cpp -------------------------------------------------------------------------------- /src/bsdfs/pplastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/pplastic.cpp -------------------------------------------------------------------------------- /src/bsdfs/principled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/principled.cpp -------------------------------------------------------------------------------- /src/bsdfs/principledhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/principledhelpers.h -------------------------------------------------------------------------------- /src/bsdfs/principledthin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/principledthin.cpp -------------------------------------------------------------------------------- /src/bsdfs/retarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/retarder.cpp -------------------------------------------------------------------------------- /src/bsdfs/roughconductor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/roughconductor.cpp -------------------------------------------------------------------------------- /src/bsdfs/roughdielectric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/roughdielectric.cpp -------------------------------------------------------------------------------- /src/bsdfs/roughplastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/roughplastic.cpp -------------------------------------------------------------------------------- /src/bsdfs/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bsdfs/tests/test_blendbsdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_blendbsdf.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_conductor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_conductor.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_dielectric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_dielectric.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_diffuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_diffuse.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_measured_polarized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_measured_polarized.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_polarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_polarizer.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_pplastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_pplastic.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_principled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_principled.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_principledthin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_principledthin.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_retarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_retarder.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_rough_conductor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_rough_conductor.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_rough_dielectric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_rough_dielectric.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_rough_plastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_rough_plastic.py -------------------------------------------------------------------------------- /src/bsdfs/tests/test_twosided.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/tests/test_twosided.py -------------------------------------------------------------------------------- /src/bsdfs/thindielectric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/thindielectric.cpp -------------------------------------------------------------------------------- /src/bsdfs/twosided.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/bsdfs/twosided.cpp -------------------------------------------------------------------------------- /src/cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /src/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/conftest.py -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/appender.cpp -------------------------------------------------------------------------------- /src/core/argparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/argparser.cpp -------------------------------------------------------------------------------- /src/core/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/bitmap.cpp -------------------------------------------------------------------------------- /src/core/class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/class.cpp -------------------------------------------------------------------------------- /src/core/dither-matrix256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/dither-matrix256.cpp -------------------------------------------------------------------------------- /src/core/dstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/dstream.cpp -------------------------------------------------------------------------------- /src/core/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/filesystem.cpp -------------------------------------------------------------------------------- /src/core/formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/formatter.cpp -------------------------------------------------------------------------------- /src/core/fresolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/fresolver.cpp -------------------------------------------------------------------------------- /src/core/fstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/fstream.cpp -------------------------------------------------------------------------------- /src/core/jit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/jit.cpp -------------------------------------------------------------------------------- /src/core/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/logger.cpp -------------------------------------------------------------------------------- /src/core/mmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/mmap.cpp -------------------------------------------------------------------------------- /src/core/mstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/mstream.cpp -------------------------------------------------------------------------------- /src/core/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/object.cpp -------------------------------------------------------------------------------- /src/core/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/plugin.cpp -------------------------------------------------------------------------------- /src/core/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/profiler.cpp -------------------------------------------------------------------------------- /src/core/progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/progress.cpp -------------------------------------------------------------------------------- /src/core/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/properties.cpp -------------------------------------------------------------------------------- /src/core/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/python/appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/appender.cpp -------------------------------------------------------------------------------- /src/core/python/argparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/argparser.cpp -------------------------------------------------------------------------------- /src/core/python/atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/atomic.cpp -------------------------------------------------------------------------------- /src/core/python/bbox_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/bbox_v.cpp -------------------------------------------------------------------------------- /src/core/python/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/bitmap.cpp -------------------------------------------------------------------------------- /src/core/python/bsphere_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/bsphere_v.cpp -------------------------------------------------------------------------------- /src/core/python/cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/cast.cpp -------------------------------------------------------------------------------- /src/core/python/distr_1d_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/distr_1d_v.cpp -------------------------------------------------------------------------------- /src/core/python/distr_2d_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/distr_2d_v.cpp -------------------------------------------------------------------------------- /src/core/python/drjit_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/drjit_v.cpp -------------------------------------------------------------------------------- /src/core/python/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/filesystem.cpp -------------------------------------------------------------------------------- /src/core/python/formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/formatter.cpp -------------------------------------------------------------------------------- /src/core/python/frame_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/frame_v.cpp -------------------------------------------------------------------------------- /src/core/python/fresolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/fresolver.cpp -------------------------------------------------------------------------------- /src/core/python/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/logger.cpp -------------------------------------------------------------------------------- /src/core/python/math_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/math_v.cpp -------------------------------------------------------------------------------- /src/core/python/mmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/mmap.cpp -------------------------------------------------------------------------------- /src/core/python/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/object.cpp -------------------------------------------------------------------------------- /src/core/python/object_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/object_v.cpp -------------------------------------------------------------------------------- /src/core/python/progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/progress.cpp -------------------------------------------------------------------------------- /src/core/python/properties_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/properties_v.cpp -------------------------------------------------------------------------------- /src/core/python/qmc_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/qmc_v.cpp -------------------------------------------------------------------------------- /src/core/python/quad_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/quad_v.cpp -------------------------------------------------------------------------------- /src/core/python/random_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/random_v.cpp -------------------------------------------------------------------------------- /src/core/python/ray_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/ray_v.cpp -------------------------------------------------------------------------------- /src/core/python/rfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/rfilter.cpp -------------------------------------------------------------------------------- /src/core/python/rfilter_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/rfilter_v.cpp -------------------------------------------------------------------------------- /src/core/python/spectrum_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/spectrum_v.cpp -------------------------------------------------------------------------------- /src/core/python/spline_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/spline_v.cpp -------------------------------------------------------------------------------- /src/core/python/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/stream.cpp -------------------------------------------------------------------------------- /src/core/python/struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/struct.cpp -------------------------------------------------------------------------------- /src/core/python/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/thread.cpp -------------------------------------------------------------------------------- /src/core/python/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/timer.cpp -------------------------------------------------------------------------------- /src/core/python/transform_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/transform_v.cpp -------------------------------------------------------------------------------- /src/core/python/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/util.cpp -------------------------------------------------------------------------------- /src/core/python/vector_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/vector_v.cpp -------------------------------------------------------------------------------- /src/core/python/warp_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/warp_v.cpp -------------------------------------------------------------------------------- /src/core/python/xml_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/python/xml_v.cpp -------------------------------------------------------------------------------- /src/core/qmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/qmc.cpp -------------------------------------------------------------------------------- /src/core/rfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/rfilter.cpp -------------------------------------------------------------------------------- /src/core/spectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/spectrum.cpp -------------------------------------------------------------------------------- /src/core/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/stream.cpp -------------------------------------------------------------------------------- /src/core/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/string.cpp -------------------------------------------------------------------------------- /src/core/struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/struct.cpp -------------------------------------------------------------------------------- /src/core/tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tensor.cpp -------------------------------------------------------------------------------- /src/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/tests/test_argparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_argparser.py -------------------------------------------------------------------------------- /src/core/tests/test_atomic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_atomic.py -------------------------------------------------------------------------------- /src/core/tests/test_bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_bbox.py -------------------------------------------------------------------------------- /src/core/tests/test_bitmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_bitmap.py -------------------------------------------------------------------------------- /src/core/tests/test_bsphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_bsphere.py -------------------------------------------------------------------------------- /src/core/tests/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_dict.py -------------------------------------------------------------------------------- /src/core/tests/test_distr_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_distr_1d.py -------------------------------------------------------------------------------- /src/core/tests/test_distr_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_distr_2d.py -------------------------------------------------------------------------------- /src/core/tests/test_filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_filesystem.py -------------------------------------------------------------------------------- /src/core/tests/test_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_frame.py -------------------------------------------------------------------------------- /src/core/tests/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_logger.py -------------------------------------------------------------------------------- /src/core/tests/test_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_math.py -------------------------------------------------------------------------------- /src/core/tests/test_mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_mmap.py -------------------------------------------------------------------------------- /src/core/tests/test_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_properties.py -------------------------------------------------------------------------------- /src/core/tests/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_python.py -------------------------------------------------------------------------------- /src/core/tests/test_qmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_qmc.py -------------------------------------------------------------------------------- /src/core/tests/test_quad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_quad.py -------------------------------------------------------------------------------- /src/core/tests/test_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_random.py -------------------------------------------------------------------------------- /src/core/tests/test_spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_spectrum.py -------------------------------------------------------------------------------- /src/core/tests/test_spline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_spline.py -------------------------------------------------------------------------------- /src/core/tests/test_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_stream.py -------------------------------------------------------------------------------- /src/core/tests/test_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_struct.py -------------------------------------------------------------------------------- /src/core/tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_transform.py -------------------------------------------------------------------------------- /src/core/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_util.py -------------------------------------------------------------------------------- /src/core/tests/test_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_vector.py -------------------------------------------------------------------------------- /src/core/tests/test_warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_warp.py -------------------------------------------------------------------------------- /src/core/tests/test_write_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_write_xml.py -------------------------------------------------------------------------------- /src/core/tests/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/tests/test_xml.py -------------------------------------------------------------------------------- /src/core/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/thread.cpp -------------------------------------------------------------------------------- /src/core/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/transform.cpp -------------------------------------------------------------------------------- /src/core/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/util.cpp -------------------------------------------------------------------------------- /src/core/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/xml.cpp -------------------------------------------------------------------------------- /src/core/zstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/core/zstream.cpp -------------------------------------------------------------------------------- /src/emitters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/CMakeLists.txt -------------------------------------------------------------------------------- /src/emitters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/emitters/area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/area.cpp -------------------------------------------------------------------------------- /src/emitters/constant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/constant.cpp -------------------------------------------------------------------------------- /src/emitters/directional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/directional.cpp -------------------------------------------------------------------------------- /src/emitters/directionalarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/directionalarea.cpp -------------------------------------------------------------------------------- /src/emitters/envmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/envmap.cpp -------------------------------------------------------------------------------- /src/emitters/point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/point.cpp -------------------------------------------------------------------------------- /src/emitters/projector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/projector.cpp -------------------------------------------------------------------------------- /src/emitters/spot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/spot.cpp -------------------------------------------------------------------------------- /src/emitters/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/emitters/tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/emitters/tests/data/triangle.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/tests/data/triangle.ply -------------------------------------------------------------------------------- /src/emitters/tests/test_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/tests/test_area.py -------------------------------------------------------------------------------- /src/emitters/tests/test_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/tests/test_constant.py -------------------------------------------------------------------------------- /src/emitters/tests/test_directional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/tests/test_directional.py -------------------------------------------------------------------------------- /src/emitters/tests/test_envmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/tests/test_envmap.py -------------------------------------------------------------------------------- /src/emitters/tests/test_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/tests/test_point.py -------------------------------------------------------------------------------- /src/emitters/tests/test_spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/emitters/tests/test_spot.py -------------------------------------------------------------------------------- /src/films/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/films/CMakeLists.txt -------------------------------------------------------------------------------- /src/films/hdrfilm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/films/hdrfilm.cpp -------------------------------------------------------------------------------- /src/films/specfilm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/films/specfilm.cpp -------------------------------------------------------------------------------- /src/films/tests/test_hdrfilm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/films/tests/test_hdrfilm.py -------------------------------------------------------------------------------- /src/films/tests/test_specfilm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/films/tests/test_specfilm.py -------------------------------------------------------------------------------- /src/integrators/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/CMakeLists.txt -------------------------------------------------------------------------------- /src/integrators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/integrators/aov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/aov.cpp -------------------------------------------------------------------------------- /src/integrators/depth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/depth.cpp -------------------------------------------------------------------------------- /src/integrators/direct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/direct.cpp -------------------------------------------------------------------------------- /src/integrators/dopplertofpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/dopplertofpath.cpp -------------------------------------------------------------------------------- /src/integrators/moment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/moment.cpp -------------------------------------------------------------------------------- /src/integrators/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/path.cpp -------------------------------------------------------------------------------- /src/integrators/ptracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/ptracer.cpp -------------------------------------------------------------------------------- /src/integrators/stokes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/stokes.cpp -------------------------------------------------------------------------------- /src/integrators/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/integrators/tests/test_ad_integrators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/tests/test_ad_integrators.py -------------------------------------------------------------------------------- /src/integrators/tests/test_ptracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/tests/test_ptracer.py -------------------------------------------------------------------------------- /src/integrators/velocity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/velocity.cpp -------------------------------------------------------------------------------- /src/integrators/volpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/volpath.cpp -------------------------------------------------------------------------------- /src/integrators/volpathmis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/integrators/volpathmis.cpp -------------------------------------------------------------------------------- /src/media/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/media/CMakeLists.txt -------------------------------------------------------------------------------- /src/media/heterogeneous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/media/heterogeneous.cpp -------------------------------------------------------------------------------- /src/media/homogeneous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/media/homogeneous.cpp -------------------------------------------------------------------------------- /src/media/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mitsuba/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/mitsuba/CMakeLists.txt -------------------------------------------------------------------------------- /src/mitsuba/mitsuba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/mitsuba/mitsuba.cpp -------------------------------------------------------------------------------- /src/phase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/CMakeLists.txt -------------------------------------------------------------------------------- /src/phase/blendphase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/blendphase.cpp -------------------------------------------------------------------------------- /src/phase/hg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/hg.cpp -------------------------------------------------------------------------------- /src/phase/isotropic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/isotropic.cpp -------------------------------------------------------------------------------- /src/phase/rayleigh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/rayleigh.cpp -------------------------------------------------------------------------------- /src/phase/sggx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/sggx.cpp -------------------------------------------------------------------------------- /src/phase/tabphase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/tabphase.cpp -------------------------------------------------------------------------------- /src/phase/tests/test_blendphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/tests/test_blendphase.py -------------------------------------------------------------------------------- /src/phase/tests/test_hg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/tests/test_hg.py -------------------------------------------------------------------------------- /src/phase/tests/test_isotropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/tests/test_isotropic.py -------------------------------------------------------------------------------- /src/phase/tests/test_rayleigh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/tests/test_rayleigh.py -------------------------------------------------------------------------------- /src/phase/tests/test_sggx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/tests/test_sggx.py -------------------------------------------------------------------------------- /src/phase/tests/test_tabphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/tests/test_tabphase.py -------------------------------------------------------------------------------- /src/phase/tests/test_trampoline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/phase/tests/test_trampoline.py -------------------------------------------------------------------------------- /src/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/CMakeLists.txt -------------------------------------------------------------------------------- /src/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/__init__.py -------------------------------------------------------------------------------- /src/python/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/main.cpp -------------------------------------------------------------------------------- /src/python/main_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/main_v.cpp -------------------------------------------------------------------------------- /src/python/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/__init__.py -------------------------------------------------------------------------------- /src/python/python/ad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/ad/__init__.py -------------------------------------------------------------------------------- /src/python/python/ad/integrators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/ad/integrators/__init__.py -------------------------------------------------------------------------------- /src/python/python/ad/integrators/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/ad/integrators/common.py -------------------------------------------------------------------------------- /src/python/python/ad/integrators/direct_reparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/ad/integrators/direct_reparam.py -------------------------------------------------------------------------------- /src/python/python/ad/integrators/emission_reparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/ad/integrators/emission_reparam.py -------------------------------------------------------------------------------- /src/python/python/ad/integrators/prb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/ad/integrators/prb.py -------------------------------------------------------------------------------- /src/python/python/ad/integrators/prb_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/ad/integrators/prb_basic.py -------------------------------------------------------------------------------- /src/python/python/ad/integrators/prb_reparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/ad/integrators/prb_reparam.py -------------------------------------------------------------------------------- /src/python/python/ad/integrators/prbvolpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/ad/integrators/prbvolpath.py -------------------------------------------------------------------------------- /src/python/python/ad/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/ad/optimizers.py -------------------------------------------------------------------------------- /src/python/python/ad/reparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/ad/reparam.py -------------------------------------------------------------------------------- /src/python/python/chi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/chi2.py -------------------------------------------------------------------------------- /src/python/python/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/cli.py -------------------------------------------------------------------------------- /src/python/python/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/math.py -------------------------------------------------------------------------------- /src/python/python/polvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/polvis.py -------------------------------------------------------------------------------- /src/python/python/sys_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/sys_info.py -------------------------------------------------------------------------------- /src/python/python/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/python/test/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/test/util.py -------------------------------------------------------------------------------- /src/python/python/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/tests/test_util.py -------------------------------------------------------------------------------- /src/python/python/tonemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/tonemap.py -------------------------------------------------------------------------------- /src/python/python/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/util.py -------------------------------------------------------------------------------- /src/python/python/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/python/python/xml.py -------------------------------------------------------------------------------- /src/render/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/CMakeLists.txt -------------------------------------------------------------------------------- /src/render/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/render/bsdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/bsdf.cpp -------------------------------------------------------------------------------- /src/render/emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/emitter.cpp -------------------------------------------------------------------------------- /src/render/endpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/endpoint.cpp -------------------------------------------------------------------------------- /src/render/film.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/film.cpp -------------------------------------------------------------------------------- /src/render/imageblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/imageblock.cpp -------------------------------------------------------------------------------- /src/render/integrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/integrator.cpp -------------------------------------------------------------------------------- /src/render/interaction.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/render/kdtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/kdtree.cpp -------------------------------------------------------------------------------- /src/render/medium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/medium.cpp -------------------------------------------------------------------------------- /src/render/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/mesh.cpp -------------------------------------------------------------------------------- /src/render/microfacet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/microfacet.cpp -------------------------------------------------------------------------------- /src/render/optix/optix_rt.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/optix/optix_rt.cu -------------------------------------------------------------------------------- /src/render/optix_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/optix_api.cpp -------------------------------------------------------------------------------- /src/render/optixdenoiser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/optixdenoiser.cpp -------------------------------------------------------------------------------- /src/render/phase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/phase.cpp -------------------------------------------------------------------------------- /src/render/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/CMakeLists.txt -------------------------------------------------------------------------------- /src/render/python/bsdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/bsdf.cpp -------------------------------------------------------------------------------- /src/render/python/bsdf_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/bsdf_v.cpp -------------------------------------------------------------------------------- /src/render/python/emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/emitter.cpp -------------------------------------------------------------------------------- /src/render/python/emitter_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/emitter_v.cpp -------------------------------------------------------------------------------- /src/render/python/endpoint_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/endpoint_v.cpp -------------------------------------------------------------------------------- /src/render/python/film.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/film.cpp -------------------------------------------------------------------------------- /src/render/python/film_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/film_v.cpp -------------------------------------------------------------------------------- /src/render/python/fresnel_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/fresnel_v.cpp -------------------------------------------------------------------------------- /src/render/python/imageblock_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/imageblock_v.cpp -------------------------------------------------------------------------------- /src/render/python/integrator_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/integrator_v.cpp -------------------------------------------------------------------------------- /src/render/python/interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/interaction.cpp -------------------------------------------------------------------------------- /src/render/python/interaction_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/interaction_v.cpp -------------------------------------------------------------------------------- /src/render/python/medium_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/medium_v.cpp -------------------------------------------------------------------------------- /src/render/python/microfacet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/microfacet.cpp -------------------------------------------------------------------------------- /src/render/python/microfacet_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/microfacet_v.cpp -------------------------------------------------------------------------------- /src/render/python/mueller_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/mueller_v.cpp -------------------------------------------------------------------------------- /src/render/python/optixdenoiser_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/optixdenoiser_v.cpp -------------------------------------------------------------------------------- /src/render/python/phase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/phase.cpp -------------------------------------------------------------------------------- /src/render/python/phase_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/phase_v.cpp -------------------------------------------------------------------------------- /src/render/python/records_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/records_v.cpp -------------------------------------------------------------------------------- /src/render/python/sampler_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/sampler_v.cpp -------------------------------------------------------------------------------- /src/render/python/scene_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/scene_v.cpp -------------------------------------------------------------------------------- /src/render/python/sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/sensor.cpp -------------------------------------------------------------------------------- /src/render/python/sensor_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/sensor_v.cpp -------------------------------------------------------------------------------- /src/render/python/shape_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/shape_v.cpp -------------------------------------------------------------------------------- /src/render/python/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/signal.h -------------------------------------------------------------------------------- /src/render/python/spiral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/spiral.cpp -------------------------------------------------------------------------------- /src/render/python/srgb_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/srgb_v.cpp -------------------------------------------------------------------------------- /src/render/python/texture_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/texture_v.cpp -------------------------------------------------------------------------------- /src/render/python/volume_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/volume_v.cpp -------------------------------------------------------------------------------- /src/render/python/volumegrid_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/python/volumegrid_v.cpp -------------------------------------------------------------------------------- /src/render/sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/sampler.cpp -------------------------------------------------------------------------------- /src/render/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/scene.cpp -------------------------------------------------------------------------------- /src/render/scene_embree.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/scene_embree.inl -------------------------------------------------------------------------------- /src/render/scene_native.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/scene_native.inl -------------------------------------------------------------------------------- /src/render/scene_optix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/scene_optix.inl -------------------------------------------------------------------------------- /src/render/sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/sensor.cpp -------------------------------------------------------------------------------- /src/render/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/shape.cpp -------------------------------------------------------------------------------- /src/render/shapegroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/shapegroup.cpp -------------------------------------------------------------------------------- /src/render/spiral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/spiral.cpp -------------------------------------------------------------------------------- /src/render/srgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/srgb.cpp -------------------------------------------------------------------------------- /src/render/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/render/tests/data/triangle.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/data/triangle.ply -------------------------------------------------------------------------------- /src/render/tests/data/triangle_face_colors.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/data/triangle_face_colors.ply -------------------------------------------------------------------------------- /src/render/tests/test_ad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_ad.py -------------------------------------------------------------------------------- /src/render/tests/test_bsdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_bsdf.py -------------------------------------------------------------------------------- /src/render/tests/test_dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_dispatch.py -------------------------------------------------------------------------------- /src/render/tests/test_fresnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_fresnel.py -------------------------------------------------------------------------------- /src/render/tests/test_imageblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_imageblock.py -------------------------------------------------------------------------------- /src/render/tests/test_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_interaction.py -------------------------------------------------------------------------------- /src/render/tests/test_kdtrees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_kdtrees.py -------------------------------------------------------------------------------- /src/render/tests/test_megakernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_megakernel.py -------------------------------------------------------------------------------- /src/render/tests/test_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_mesh.py -------------------------------------------------------------------------------- /src/render/tests/test_microfacet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_microfacet.py -------------------------------------------------------------------------------- /src/render/tests/test_mueller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_mueller.py -------------------------------------------------------------------------------- /src/render/tests/test_optixdenoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_optixdenoiser.py -------------------------------------------------------------------------------- /src/render/tests/test_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_records.py -------------------------------------------------------------------------------- /src/render/tests/test_renders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_renders.py -------------------------------------------------------------------------------- /src/render/tests/test_reparameterization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_reparameterization.py -------------------------------------------------------------------------------- /src/render/tests/test_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_scene.py -------------------------------------------------------------------------------- /src/render/tests/test_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_sensor.py -------------------------------------------------------------------------------- /src/render/tests/test_spectra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_spectra.py -------------------------------------------------------------------------------- /src/render/tests/test_spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_spiral.py -------------------------------------------------------------------------------- /src/render/tests/test_tutorials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_tutorials.py -------------------------------------------------------------------------------- /src/render/tests/test_volumegrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/tests/test_volumegrid.py -------------------------------------------------------------------------------- /src/render/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/texture.cpp -------------------------------------------------------------------------------- /src/render/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/volume.cpp -------------------------------------------------------------------------------- /src/render/volumegrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/render/volumegrid.cpp -------------------------------------------------------------------------------- /src/rfilters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/rfilters/CMakeLists.txt -------------------------------------------------------------------------------- /src/rfilters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/rfilters/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/rfilters/box.cpp -------------------------------------------------------------------------------- /src/rfilters/catmullrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/rfilters/catmullrom.cpp -------------------------------------------------------------------------------- /src/rfilters/gaussian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/rfilters/gaussian.cpp -------------------------------------------------------------------------------- /src/rfilters/lanczos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/rfilters/lanczos.cpp -------------------------------------------------------------------------------- /src/rfilters/mitchell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/rfilters/mitchell.cpp -------------------------------------------------------------------------------- /src/rfilters/tent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/rfilters/tent.cpp -------------------------------------------------------------------------------- /src/rfilters/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/rfilters/tests/test_rfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/rfilters/tests/test_rfilter.py -------------------------------------------------------------------------------- /src/samplers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/CMakeLists.txt -------------------------------------------------------------------------------- /src/samplers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/samplers/correlated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/correlated.cpp -------------------------------------------------------------------------------- /src/samplers/independent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/independent.cpp -------------------------------------------------------------------------------- /src/samplers/ldsampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/ldsampler.cpp -------------------------------------------------------------------------------- /src/samplers/multijitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/multijitter.cpp -------------------------------------------------------------------------------- /src/samplers/orthogonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/orthogonal.cpp -------------------------------------------------------------------------------- /src/samplers/stratified.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/stratified.cpp -------------------------------------------------------------------------------- /src/samplers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/samplers/tests/test_independent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/tests/test_independent.py -------------------------------------------------------------------------------- /src/samplers/tests/test_ldsampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/tests/test_ldsampler.py -------------------------------------------------------------------------------- /src/samplers/tests/test_multijitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/tests/test_multijitter.py -------------------------------------------------------------------------------- /src/samplers/tests/test_orthogonal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/tests/test_orthogonal.py -------------------------------------------------------------------------------- /src/samplers/tests/test_stratified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/tests/test_stratified.py -------------------------------------------------------------------------------- /src/samplers/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/tests/utils.py -------------------------------------------------------------------------------- /src/samplers/timestratified.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/samplers/timestratified.cpp -------------------------------------------------------------------------------- /src/sensors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/CMakeLists.txt -------------------------------------------------------------------------------- /src/sensors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sensors/batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/batch.cpp -------------------------------------------------------------------------------- /src/sensors/distant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/distant.cpp -------------------------------------------------------------------------------- /src/sensors/irradiancemeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/irradiancemeter.cpp -------------------------------------------------------------------------------- /src/sensors/orthographic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/orthographic.cpp -------------------------------------------------------------------------------- /src/sensors/perspective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/perspective.cpp -------------------------------------------------------------------------------- /src/sensors/radiancemeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/radiancemeter.cpp -------------------------------------------------------------------------------- /src/sensors/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sensors/tests/test_distant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/tests/test_distant.py -------------------------------------------------------------------------------- /src/sensors/tests/test_irradiancemeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/tests/test_irradiancemeter.py -------------------------------------------------------------------------------- /src/sensors/tests/test_orthographic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/tests/test_orthographic.py -------------------------------------------------------------------------------- /src/sensors/tests/test_perspective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/tests/test_perspective.py -------------------------------------------------------------------------------- /src/sensors/tests/test_radiancemeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/tests/test_radiancemeter.py -------------------------------------------------------------------------------- /src/sensors/tests/test_thinlens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/tests/test_thinlens.py -------------------------------------------------------------------------------- /src/sensors/thinlens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/sensors/thinlens.cpp -------------------------------------------------------------------------------- /src/shapes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/CMakeLists.txt -------------------------------------------------------------------------------- /src/shapes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/shapes/blender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/blender.cpp -------------------------------------------------------------------------------- /src/shapes/cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/cube.cpp -------------------------------------------------------------------------------- /src/shapes/cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/cylinder.cpp -------------------------------------------------------------------------------- /src/shapes/disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/disk.cpp -------------------------------------------------------------------------------- /src/shapes/instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/instance.cpp -------------------------------------------------------------------------------- /src/shapes/merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/merge.cpp -------------------------------------------------------------------------------- /src/shapes/obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/obj.cpp -------------------------------------------------------------------------------- /src/shapes/optix/cylinder.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/optix/cylinder.cuh -------------------------------------------------------------------------------- /src/shapes/optix/disk.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/optix/disk.cuh -------------------------------------------------------------------------------- /src/shapes/optix/mesh.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/optix/mesh.cuh -------------------------------------------------------------------------------- /src/shapes/optix/rectangle.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/optix/rectangle.cuh -------------------------------------------------------------------------------- /src/shapes/optix/sphere.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/optix/sphere.cuh -------------------------------------------------------------------------------- /src/shapes/ply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/ply.cpp -------------------------------------------------------------------------------- /src/shapes/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/rectangle.cpp -------------------------------------------------------------------------------- /src/shapes/serialized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/serialized.cpp -------------------------------------------------------------------------------- /src/shapes/shapegroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/shapegroup.cpp -------------------------------------------------------------------------------- /src/shapes/sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/sphere.cpp -------------------------------------------------------------------------------- /src/shapes/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/shapes/tests/test_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/tests/test_cube.py -------------------------------------------------------------------------------- /src/shapes/tests/test_cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/tests/test_cylinder.py -------------------------------------------------------------------------------- /src/shapes/tests/test_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/tests/test_disk.py -------------------------------------------------------------------------------- /src/shapes/tests/test_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/tests/test_instance.py -------------------------------------------------------------------------------- /src/shapes/tests/test_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/tests/test_rectangle.py -------------------------------------------------------------------------------- /src/shapes/tests/test_shapegroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/tests/test_shapegroup.py -------------------------------------------------------------------------------- /src/shapes/tests/test_sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/shapes/tests/test_sphere.py -------------------------------------------------------------------------------- /src/spectra/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/spectra/CMakeLists.txt -------------------------------------------------------------------------------- /src/spectra/blackbody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/spectra/blackbody.cpp -------------------------------------------------------------------------------- /src/spectra/d65.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/spectra/d65.cpp -------------------------------------------------------------------------------- /src/spectra/irregular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/spectra/irregular.cpp -------------------------------------------------------------------------------- /src/spectra/regular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/spectra/regular.cpp -------------------------------------------------------------------------------- /src/spectra/srgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/spectra/srgb.cpp -------------------------------------------------------------------------------- /src/spectra/tests/test_d65.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/spectra/tests/test_d65.py -------------------------------------------------------------------------------- /src/spectra/tests/test_irregular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/spectra/tests/test_irregular.py -------------------------------------------------------------------------------- /src/spectra/tests/test_regular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/spectra/tests/test_regular.py -------------------------------------------------------------------------------- /src/spectra/uniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/spectra/uniform.cpp -------------------------------------------------------------------------------- /src/textures/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/textures/CMakeLists.txt -------------------------------------------------------------------------------- /src/textures/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/textures/bitmap.cpp -------------------------------------------------------------------------------- /src/textures/checkerboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/textures/checkerboard.cpp -------------------------------------------------------------------------------- /src/textures/mesh_attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/textures/mesh_attribute.cpp -------------------------------------------------------------------------------- /src/textures/tests/test_bitmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/textures/tests/test_bitmap.py -------------------------------------------------------------------------------- /src/textures/tests/test_mesh_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/textures/tests/test_mesh_attribute.py -------------------------------------------------------------------------------- /src/textures/tests/test_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/textures/tests/test_volume.py -------------------------------------------------------------------------------- /src/textures/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/textures/volume.cpp -------------------------------------------------------------------------------- /src/volumes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/volumes/CMakeLists.txt -------------------------------------------------------------------------------- /src/volumes/const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/volumes/const.cpp -------------------------------------------------------------------------------- /src/volumes/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/volumes/grid.cpp -------------------------------------------------------------------------------- /src/volumes/tests/test_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/volumes/tests/test_constant.py -------------------------------------------------------------------------------- /src/volumes/tests/test_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juhyeonkim95/Mitsuba3DopplerToF/HEAD/src/volumes/tests/test_grid.py --------------------------------------------------------------------------------