├── .coveragerc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── AUTHORS.txt ├── CHANGELOG.txt ├── CONTRIBUTING.txt ├── LICENSE.txt ├── README.md ├── demos ├── accuracy │ ├── observing_box.py │ ├── observing_fibre.py │ ├── observing_mesh_camera.py │ ├── observing_mesh_pixel.py │ └── observing_sphere.py ├── animation.py ├── core │ ├── ray_intersection_hitpoints.py │ └── world_contains_point.py ├── cornell_box.py ├── csg.py ├── materials │ ├── anisotropic_emitter.py │ ├── bunny.py │ ├── colours_diffuse.py │ ├── colours_emissive.py │ ├── diamond.py │ ├── metal.py │ ├── modifiers │ │ ├── add.py │ │ ├── blend.py │ │ ├── roughen.py │ │ └── transform.py │ ├── tetrahedra_mesh_emission.py │ └── volume.py ├── maths │ ├── plot_targeted_sampler.py │ ├── triangle_sampler.py │ └── triangulate.py ├── multiple_importance_sampling.py ├── observers │ ├── cornell_box_cooke_triplet.py │ ├── cornell_box_real_pinhole.py │ ├── mesh_power.py │ ├── metal_with_lens.py │ ├── optical_fibre.py │ ├── orthographic.py │ └── targeted_pixel.py ├── optics │ ├── etendue_of_pinhole.py │ └── logging_trajectories.py ├── primitives │ ├── parabolic_lenses.py │ ├── raysect_primitives.py │ ├── simple_torus.py │ └── spherical_lenses.py ├── prism.py ├── quickstart │ ├── lambert.py │ └── lambert_spectrum.py ├── raysect_logo.py ├── resources │ ├── box_normals_inwards.obj │ ├── box_normals_outwards.obj │ ├── diamond.obj │ ├── stanford_bunny.mesh │ ├── stanford_bunny.obj │ └── stanford_bunny.rsm └── results │ ├── bunny.png │ ├── cornell_box.png │ ├── diamond.png │ ├── mis_brdf_sampling.png │ ├── mis_combined_sampling.png │ ├── mis_light_sampling.png │ ├── modifier_add.png │ ├── modifier_blend.png │ ├── modifier_roughen.png │ ├── modifier_transform.png │ ├── prism.png │ ├── volume_emissive_colour.png │ └── volume_inhomogeneous.png ├── dev ├── build.sh ├── build │ ├── abi.py │ ├── add_version_file_to_dist.sh │ └── update_version.sh ├── build_docs.sh ├── build_wheels_manylinux2010.sh ├── build_wheels_manylinux2014.sh ├── clean.sh ├── generate_meson_files.py ├── install_editable.sh ├── notes │ └── building_bdist_with_manylinux.txt ├── root-meson.build ├── subdir-meson.build ├── templates │ └── template.py └── test.sh ├── docs ├── Makefile └── source │ ├── RaysectLogo_small.png │ ├── RaysectLogo_web.ico │ ├── RaysectLogo_web.png │ ├── RaysectLogo_web_bg.ico │ ├── RaysectOverview_2015-10-01.pdf │ ├── _html_extras │ ├── .nojekyll │ └── CNAME │ ├── api_reference │ ├── core │ │ ├── affinematrix.rst │ │ ├── core.rst │ │ ├── core_classes.rst │ │ ├── functions.rst │ │ ├── math.rst │ │ ├── points_and_vectors.rst │ │ ├── random.rst │ │ ├── raysect_core_kdtree.rst │ │ ├── raysect_core_scenegraph.rst │ │ ├── render_engines.rst │ │ ├── spatial_acceleration.rst │ │ ├── statistics_arrays.rst │ │ ├── units.rst │ │ └── utilities.rst │ ├── optical │ │ ├── main_optical_classes.rst │ │ ├── observers.rst │ │ ├── optical.rst │ │ ├── optical_material_base_classes.rst │ │ ├── optical_surfaces.rst │ │ ├── optical_volumes.rst │ │ └── pipelines.rst │ └── primitives │ │ ├── csg_operations.rst │ │ ├── geometric_primitives.rst │ │ ├── meshes.rst │ │ ├── optical_elements.rst │ │ ├── primitives.rst │ │ └── spherical_lenses.png │ ├── architecture.rst │ ├── conf.py │ ├── conventions.rst │ ├── demonstrations │ ├── core │ │ ├── energy_conservation.rst │ │ ├── multiple_importance_sampling.jpg │ │ ├── multiple_importance_sampling.rst │ │ ├── ray_intersection_points.rst │ │ ├── ray_intersection_points_fig1.png │ │ ├── ray_intersection_points_fig2.png │ │ ├── test_point_inside_material.png │ │ └── world_contains_point.rst │ ├── demonstrations.rst │ ├── materials │ │ ├── anisotropic_emitters.gif │ │ ├── anisotropic_emitters.rst │ │ ├── anisotropic_emitters_preview.png │ │ ├── brdf_polar_plots.png │ │ ├── brdf_slice_plots.png │ │ ├── brdf_surface3d_plots.png │ │ ├── diamond.jpg │ │ ├── diamond.rst │ │ ├── diffuse_colours.png │ │ ├── diffuse_colours.rst │ │ ├── emissive_colours.png │ │ ├── emissive_colours.rst │ │ ├── glass_bunny.jpg │ │ ├── glass_bunny.rst │ │ ├── metal_balls.png │ │ ├── metal_materials.rst │ │ ├── polar_brdf_plots.rst │ │ ├── surface3d_brdf_plots.rst │ │ ├── surface_roughness.jpg │ │ ├── surface_roughness.rst │ │ ├── tetrahedra_mesh_emitter.png │ │ ├── tetrahedra_mesh_emitter.rst │ │ ├── volume_inhomogeneous.png │ │ └── volume_inhomogeneous.rst │ ├── observers │ │ ├── animation.gif │ │ ├── animation_preview.jpg │ │ ├── animations.rst │ │ ├── cornell_box.rst │ │ ├── cornell_box_mis_1550_samples.png │ │ ├── cornell_box_real_lens.png │ │ ├── cornell_box_with_camera.rst │ │ ├── mesh_observers.jpg │ │ ├── mesh_observers.rst │ │ ├── metal_balls_with_lens.png │ │ ├── metal_balls_with_lens.rst │ │ ├── optical_fibre.rst │ │ ├── optical_fibre_power.png │ │ ├── orthographic_camera.png │ │ └── orthographic_camera.rst │ └── optics │ │ ├── etendue_of_pinhole.png │ │ ├── etendue_of_pinhole.rst │ │ ├── prism.rst │ │ └── prism_720x405.png │ ├── glossary.rst │ ├── how_it_works.rst │ ├── images │ ├── calculate_emission.png │ ├── csg_glass.png │ ├── demo_lambert.png │ ├── example_spectra.png │ ├── gold_bunny.png │ ├── light_sampling.png │ ├── material_reflections.png │ ├── metal_balls.png │ ├── pixel_sampling.png │ ├── ray-tracing_directions.png │ ├── raysect_primitives.png │ └── roughen_modifier_example.png │ ├── index.rst │ ├── installation.rst │ ├── introduction.rst │ ├── license.rst │ ├── materials.rst │ ├── observers.rst │ ├── primitives.rst │ ├── quickstart_guide.rst │ ├── quickstart_more.rst │ ├── references.rst │ ├── requirements.txt │ ├── sampling.rst │ └── static │ └── theme.css ├── meson.build ├── pyproject.toml ├── raysect ├── __init__.py ├── core │ ├── __init__.pxd │ ├── __init__.py │ ├── acceleration │ │ ├── __init__.pxd │ │ ├── __init__.py │ │ ├── accelerator.pxd │ │ ├── accelerator.pyx │ │ ├── boundprimitive.pxd │ │ ├── boundprimitive.pyx │ │ ├── kdtree.pxd │ │ ├── kdtree.pyx │ │ ├── meson.build │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── meson.build │ │ ├── unaccelerated.pxd │ │ └── unaccelerated.pyx │ ├── boundingbox.pxd │ ├── boundingbox.pyx │ ├── boundingsphere.pxd │ ├── boundingsphere.pyx │ ├── constants.py │ ├── containers.pxd │ ├── containers.pyx │ ├── intersection.pxd │ ├── intersection.pyx │ ├── material.pxd │ ├── material.pyx │ ├── math │ │ ├── __init__.pxd │ │ ├── __init__.py │ │ ├── _mat4.pxd │ │ ├── _mat4.pyx │ │ ├── _vec3.pxd │ │ ├── _vec3.pyx │ │ ├── affinematrix.pxd │ │ ├── affinematrix.pyx │ │ ├── cython │ │ │ ├── __init__.pxd │ │ │ ├── __init__.py │ │ │ ├── interpolation │ │ │ │ ├── __init__.pxd │ │ │ │ ├── cubic.pxd │ │ │ │ ├── cubic.pyx │ │ │ │ ├── helper │ │ │ │ │ ├── .meson-exclude │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── code_generator.py │ │ │ │ │ └── equation.py │ │ │ │ ├── linear.pxd │ │ │ │ ├── linear.pyx │ │ │ │ └── meson.build │ │ │ ├── meson.build │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── meson.build │ │ │ │ ├── test_tetrahedra.py │ │ │ │ ├── test_triangle.py │ │ │ │ └── test_utility.py │ │ │ ├── tetrahedra.pxd │ │ │ ├── tetrahedra.pyx │ │ │ ├── transform.pxd │ │ │ ├── transform.pyx │ │ │ ├── triangle.pxd │ │ │ ├── triangle.pyx │ │ │ ├── utility.pxd │ │ │ └── utility.pyx │ │ ├── function │ │ │ ├── __init__.pxd │ │ │ ├── __init__.py │ │ │ ├── base.pxd │ │ │ ├── base.pyx │ │ │ ├── float │ │ │ │ ├── __init__.pxd │ │ │ │ ├── __init__.py │ │ │ │ ├── base.pxd │ │ │ │ ├── base.pyx │ │ │ │ ├── function1d │ │ │ │ │ ├── __init__.pxd │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── arg.pxd │ │ │ │ │ ├── arg.pyx │ │ │ │ │ ├── autowrap.pxd │ │ │ │ │ ├── autowrap.pyx │ │ │ │ │ ├── base.pxd │ │ │ │ │ ├── base.pyx │ │ │ │ │ ├── blend.pxd │ │ │ │ │ ├── blend.pyx │ │ │ │ │ ├── cmath.pxd │ │ │ │ │ ├── cmath.pyx │ │ │ │ │ ├── constant.pxd │ │ │ │ │ ├── constant.pyx │ │ │ │ │ ├── interpolate.pxd │ │ │ │ │ ├── interpolate.pyx │ │ │ │ │ ├── meson.build │ │ │ │ │ ├── samplers.pxd │ │ │ │ │ ├── samplers.pyx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── interpolator1d_test_data.py │ │ │ │ │ │ └── meson.build │ │ │ │ │ │ ├── meson.build │ │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── .meson-exclude │ │ │ │ │ │ ├── generate_1d_splines.py │ │ │ │ │ │ └── generate_sampler_test_arrays.py │ │ │ │ │ │ ├── test_arg.py │ │ │ │ │ │ ├── test_autowrap.py │ │ │ │ │ │ ├── test_base.py │ │ │ │ │ │ ├── test_cmath.py │ │ │ │ │ │ ├── test_constant.py │ │ │ │ │ │ ├── test_interpolator.py │ │ │ │ │ │ └── test_samplers.py │ │ │ │ ├── function2d │ │ │ │ │ ├── __init__.pxd │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── arg.pxd │ │ │ │ │ ├── arg.pyx │ │ │ │ │ ├── autowrap.pxd │ │ │ │ │ ├── autowrap.pyx │ │ │ │ │ ├── base.pxd │ │ │ │ │ ├── base.pyx │ │ │ │ │ ├── blend.pxd │ │ │ │ │ ├── blend.pyx │ │ │ │ │ ├── cmath.pxd │ │ │ │ │ ├── cmath.pyx │ │ │ │ │ ├── constant.pxd │ │ │ │ │ ├── constant.pyx │ │ │ │ │ ├── interpolate │ │ │ │ │ │ ├── __init__.pxd │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.pxd │ │ │ │ │ │ ├── common.pyx │ │ │ │ │ │ ├── discrete2dmesh.pxd │ │ │ │ │ │ ├── discrete2dmesh.pyx │ │ │ │ │ │ ├── interpolator2darray.pxd │ │ │ │ │ │ ├── interpolator2darray.pyx │ │ │ │ │ │ ├── interpolator2dmesh.pxd │ │ │ │ │ │ ├── interpolator2dmesh.pyx │ │ │ │ │ │ ├── meson.build │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── interpolator2d_test_data.py │ │ │ │ │ │ │ └── meson.build │ │ │ │ │ │ │ ├── meson.build │ │ │ │ │ │ │ ├── scripts │ │ │ │ │ │ │ ├── .meson-exclude │ │ │ │ │ │ │ └── generate_2d_splines.py │ │ │ │ │ │ │ └── test_interpolator_2d.py │ │ │ │ │ ├── meson.build │ │ │ │ │ └── tests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── meson.build │ │ │ │ │ │ ├── test_arg.py │ │ │ │ │ │ ├── test_autowrap.py │ │ │ │ │ │ ├── test_base.py │ │ │ │ │ │ ├── test_cmath.py │ │ │ │ │ │ └── test_constant.py │ │ │ │ ├── function3d │ │ │ │ │ ├── __init__.pxd │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── arg.pxd │ │ │ │ │ ├── arg.pyx │ │ │ │ │ ├── autowrap.pxd │ │ │ │ │ ├── autowrap.pyx │ │ │ │ │ ├── base.pxd │ │ │ │ │ ├── base.pyx │ │ │ │ │ ├── blend.pxd │ │ │ │ │ ├── blend.pyx │ │ │ │ │ ├── cmath.pxd │ │ │ │ │ ├── cmath.pyx │ │ │ │ │ ├── constant.pxd │ │ │ │ │ ├── constant.pyx │ │ │ │ │ ├── interpolate │ │ │ │ │ │ ├── __init__.pxd │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.pxd │ │ │ │ │ │ ├── common.pyx │ │ │ │ │ │ ├── discrete3dmesh.pxd │ │ │ │ │ │ ├── discrete3dmesh.pyx │ │ │ │ │ │ ├── interpolator3darray.pxd │ │ │ │ │ │ ├── interpolator3darray.pyx │ │ │ │ │ │ ├── meson.build │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── interpolator3d_test_data.py │ │ │ │ │ │ │ └── meson.build │ │ │ │ │ │ │ ├── meson.build │ │ │ │ │ │ │ ├── scripts │ │ │ │ │ │ │ ├── .meson-exclude │ │ │ │ │ │ │ └── generate_3d_splines.py │ │ │ │ │ │ │ └── test_interpolator_3d.py │ │ │ │ │ ├── meson.build │ │ │ │ │ └── tests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── meson.build │ │ │ │ │ │ ├── test_arg.py │ │ │ │ │ │ ├── test_autowrap.py │ │ │ │ │ │ ├── test_base.py │ │ │ │ │ │ ├── test_cmath.py │ │ │ │ │ │ └── test_constant.py │ │ │ │ └── meson.build │ │ │ ├── meson.build │ │ │ └── vector3d │ │ │ │ ├── __init__.pxd │ │ │ │ ├── __init__.py │ │ │ │ ├── base.pxd │ │ │ │ ├── base.pyx │ │ │ │ ├── function1d │ │ │ │ ├── __init__.pxd │ │ │ │ ├── __init__.py │ │ │ │ ├── autowrap.pxd │ │ │ │ ├── autowrap.pyx │ │ │ │ ├── base.pxd │ │ │ │ ├── base.pyx │ │ │ │ ├── blend.pxd │ │ │ │ ├── blend.pyx │ │ │ │ ├── constant.pxd │ │ │ │ ├── constant.pyx │ │ │ │ ├── meson.build │ │ │ │ ├── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── meson.build │ │ │ │ │ ├── test_autowrap.py │ │ │ │ │ ├── test_base.py │ │ │ │ │ ├── test_constant.py │ │ │ │ │ └── test_float_to_vector3d.py │ │ │ │ ├── utility.pxd │ │ │ │ └── utility.pyx │ │ │ │ ├── function2d │ │ │ │ ├── __init__.pxd │ │ │ │ ├── __init__.py │ │ │ │ ├── autowrap.pxd │ │ │ │ ├── autowrap.pyx │ │ │ │ ├── base.pxd │ │ │ │ ├── base.pyx │ │ │ │ ├── blend.pxd │ │ │ │ ├── blend.pyx │ │ │ │ ├── constant.pxd │ │ │ │ ├── constant.pyx │ │ │ │ ├── meson.build │ │ │ │ ├── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── meson.build │ │ │ │ │ ├── test_autowrap.py │ │ │ │ │ ├── test_base.py │ │ │ │ │ ├── test_constant.py │ │ │ │ │ └── test_float_to_vector3d.py │ │ │ │ ├── utility.pxd │ │ │ │ └── utility.pyx │ │ │ │ ├── function3d │ │ │ │ ├── __init__.pxd │ │ │ │ ├── __init__.py │ │ │ │ ├── autowrap.pxd │ │ │ │ ├── autowrap.pyx │ │ │ │ ├── base.pxd │ │ │ │ ├── base.pyx │ │ │ │ ├── blend.pxd │ │ │ │ ├── blend.pyx │ │ │ │ ├── constant.pxd │ │ │ │ ├── constant.pyx │ │ │ │ ├── meson.build │ │ │ │ ├── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── meson.build │ │ │ │ │ ├── test_autowrap.py │ │ │ │ │ ├── test_base.py │ │ │ │ │ ├── test_constant.py │ │ │ │ │ └── test_float_to_vector3d.py │ │ │ │ ├── utility.pxd │ │ │ │ └── utility.pyx │ │ │ │ └── meson.build │ │ ├── meson.build │ │ ├── normal.pxd │ │ ├── normal.pyx │ │ ├── point.pxd │ │ ├── point.pyx │ │ ├── polygon.pxd │ │ ├── polygon.pyx │ │ ├── quaternion.pxd │ │ ├── quaternion.pyx │ │ ├── random.pxd │ │ ├── random.pyx │ │ ├── sampler │ │ │ ├── __init__.pxd │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── solidangle.pxd │ │ │ ├── solidangle.pyx │ │ │ ├── surface3d.pxd │ │ │ ├── surface3d.pyx │ │ │ ├── targeted.pxd │ │ │ └── targeted.pyx │ │ ├── spatial │ │ │ ├── __init__.pxd │ │ │ ├── __init__.py │ │ │ ├── kdtree2d.pxd │ │ │ ├── kdtree2d.pyx │ │ │ ├── kdtree3d.pxd │ │ │ ├── kdtree3d.pyx │ │ │ └── meson.build │ │ ├── statsarray.pxd │ │ ├── statsarray.pyx │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── test_affinematrix3d.py │ │ │ ├── test_interaction3d.py │ │ │ ├── test_normal3d.py │ │ │ ├── test_point2d.py │ │ │ ├── test_point3d.py │ │ │ ├── test_quaternion.py │ │ │ ├── test_random.py │ │ │ ├── test_transform.py │ │ │ ├── test_vector2d.py │ │ │ └── test_vector3d.py │ │ ├── transform.pxd │ │ ├── transform.pyx │ │ ├── units.pxd │ │ ├── units.pyx │ │ ├── vector.pxd │ │ └── vector.pyx │ ├── meson.build │ ├── ray.pxd │ ├── ray.pyx │ ├── scenegraph │ │ ├── __init__.pxd │ │ ├── __init__.py │ │ ├── _nodebase.pxd │ │ ├── _nodebase.pyx │ │ ├── meson.build │ │ ├── node.pxd │ │ ├── node.pyx │ │ ├── observer.pxd │ │ ├── observer.pyx │ │ ├── primitive.pxd │ │ ├── primitive.pyx │ │ ├── signal.pxd │ │ ├── signal.pyx │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── test_node.py │ │ │ ├── test_observer.py │ │ │ ├── test_primitive.py │ │ │ └── test_world.py │ │ ├── utility.pxd │ │ ├── utility.pyx │ │ ├── world.pxd │ │ └── world.pyx │ ├── tests │ │ ├── __init__.py │ │ └── meson.build │ └── workflow.py ├── meson.build ├── optical │ ├── __init__.pxd │ ├── __init__.py │ ├── colour.pxd │ ├── colour.pyx │ ├── library │ │ ├── __init__.py │ │ ├── components │ │ │ ├── __init__.py │ │ │ └── meson.build │ │ ├── glass │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── meson.build │ │ │ │ ├── schott_catalog_2000.csv │ │ │ │ └── schott_catalog_2000_full.csv │ │ │ ├── meson.build │ │ │ └── schott.py │ │ ├── meson.build │ │ ├── metal │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── aluminium.json │ │ │ │ ├── beryllium.json │ │ │ │ ├── cobolt.json │ │ │ │ ├── convert_data.py │ │ │ │ ├── copper.json │ │ │ │ ├── gold.json │ │ │ │ ├── iron.json │ │ │ │ ├── lithium.json │ │ │ │ ├── magnesium.json │ │ │ │ ├── manganese.json │ │ │ │ ├── mercury.json │ │ │ │ ├── meson.build │ │ │ │ ├── nickel.json │ │ │ │ ├── palladium.json │ │ │ │ ├── platinum.json │ │ │ │ ├── silicon.json │ │ │ │ ├── silver.json │ │ │ │ ├── sodium.json │ │ │ │ ├── titanium.json │ │ │ │ └── tungsten.json │ │ │ ├── meson.build │ │ │ ├── metal.py │ │ │ └── roughmetal.py │ │ └── spectra │ │ │ ├── __init__.py │ │ │ ├── blackbody.pyx │ │ │ ├── colours.py │ │ │ └── meson.build │ ├── loggingray.pyx │ ├── material │ │ ├── __init__.pxd │ │ ├── __init__.py │ │ ├── absorber.pxd │ │ ├── absorber.pyx │ │ ├── conductor.pxd │ │ ├── conductor.pyx │ │ ├── debug.pxd │ │ ├── debug.pyx │ │ ├── dielectric.pxd │ │ ├── dielectric.pyx │ │ ├── emitter │ │ │ ├── __init__.pxd │ │ │ ├── __init__.py │ │ │ ├── anisotropic.pxd │ │ │ ├── anisotropic.pyx │ │ │ ├── checkerboard.pxd │ │ │ ├── checkerboard.pyx │ │ │ ├── homogeneous.pxd │ │ │ ├── homogeneous.pyx │ │ │ ├── inhomogeneous.pxd │ │ │ ├── inhomogeneous.pyx │ │ │ ├── meson.build │ │ │ ├── uniform.pxd │ │ │ ├── uniform.pyx │ │ │ ├── unity.pxd │ │ │ └── unity.pyx │ │ ├── lambert.pyx │ │ ├── material.pxd │ │ ├── material.pyx │ │ ├── meson.build │ │ └── modifiers │ │ │ ├── __init__.py │ │ │ ├── add.pyx │ │ │ ├── blend.pyx │ │ │ ├── meson.build │ │ │ ├── roughen.pyx │ │ │ └── transform.pyx │ ├── meson.build │ ├── observer │ │ ├── __init__.pxd │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.pxd │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── observer.pxd │ │ │ ├── observer.pyx │ │ │ ├── pipeline.pxd │ │ │ ├── pipeline.pyx │ │ │ ├── processor.pxd │ │ │ ├── processor.pyx │ │ │ ├── sampler.pxd │ │ │ ├── sampler.pyx │ │ │ ├── slice.pxd │ │ │ └── slice.pyx │ │ ├── imaging │ │ │ ├── __init__.pxd │ │ │ ├── __init__.py │ │ │ ├── ccd.pxd │ │ │ ├── ccd.pyx │ │ │ ├── meson.build │ │ │ ├── opencv.pxd │ │ │ ├── opencv.pyx │ │ │ ├── orthographic.pxd │ │ │ ├── orthographic.pyx │ │ │ ├── pinhole.pxd │ │ │ ├── pinhole.pyx │ │ │ ├── targeted_ccd.pxd │ │ │ ├── targeted_ccd.pyx │ │ │ ├── vector.pxd │ │ │ └── vector.pyx │ │ ├── meson.build │ │ ├── nonimaging │ │ │ ├── __init__.pxd │ │ │ ├── __init__.py │ │ │ ├── fibreoptic.pxd │ │ │ ├── fibreoptic.pyx │ │ │ ├── mesh_camera.pxd │ │ │ ├── mesh_camera.pyx │ │ │ ├── mesh_pixel.pxd │ │ │ ├── mesh_pixel.pyx │ │ │ ├── meson.build │ │ │ ├── pixel.pxd │ │ │ ├── pixel.pyx │ │ │ ├── sightline.pxd │ │ │ ├── sightline.pyx │ │ │ ├── targeted_pixel.pxd │ │ │ └── targeted_pixel.pyx │ │ ├── pipeline │ │ │ ├── __init__.pxd │ │ │ ├── __init__.py │ │ │ ├── bayer.pxd │ │ │ ├── bayer.pyx │ │ │ ├── colormaps.py │ │ │ ├── meson.build │ │ │ ├── mono │ │ │ │ ├── __init__.pxd │ │ │ │ ├── __init__.py │ │ │ │ ├── meson.build │ │ │ │ ├── power.pxd │ │ │ │ ├── power.pyx │ │ │ │ ├── radiance.pxd │ │ │ │ └── radiance.pyx │ │ │ ├── rgb.pxd │ │ │ ├── rgb.pyx │ │ │ └── spectral │ │ │ │ ├── __init__.pxd │ │ │ │ ├── __init__.py │ │ │ │ ├── meson.build │ │ │ │ ├── power.pxd │ │ │ │ ├── power.pyx │ │ │ │ ├── radiance.pxd │ │ │ │ └── radiance.pyx │ │ ├── sampler1d.pyx │ │ └── sampler2d.pyx │ ├── ray.pxd │ ├── ray.pyx │ ├── scenegraph │ │ ├── __init__.pxd │ │ ├── __init__.py │ │ ├── meson.build │ │ ├── world.pxd │ │ └── world.pyx │ ├── spectralfunction.pxd │ ├── spectralfunction.pyx │ ├── spectrum.pxd │ └── spectrum.pyx └── primitive │ ├── __init__.pxd │ ├── __init__.py │ ├── box.pxd │ ├── box.pyx │ ├── cone.pxd │ ├── cone.pyx │ ├── csg.pxd │ ├── csg.pyx │ ├── cylinder.pxd │ ├── cylinder.pyx │ ├── lens │ ├── __init__.py │ ├── meson.build │ ├── spherical.pyx │ └── tests │ │ ├── __init__.py │ │ ├── meson.build │ │ └── test_spherical.py │ ├── mesh │ ├── __init__.pxd │ ├── __init__.py │ ├── mesh.pxd │ ├── mesh.pyx │ ├── meson.build │ ├── obj.py │ ├── ply.py │ ├── stl.py │ └── vtk.py │ ├── meson.build │ ├── parabola.pxd │ ├── parabola.pyx │ ├── sphere.pxd │ ├── sphere.pyx │ ├── torus.pxd │ ├── torus.pyx │ ├── utility.pxd │ └── utility.pyx └── resources ├── PresentationTemplate.otp ├── RaysectOverview_2015-10-01.odp ├── logo ├── Raysect.ico ├── RaysectLogo.svg ├── RaysectLogo_large.png ├── RaysectLogo_wheel.svg ├── RaysectLogo_wheel_large.png ├── RaysectLogo_wheel_small.png ├── RaysectLogo_white.svg ├── RaysectLogo_white_large.png ├── RaysectLogo_white_small.png └── cabin_font.zip ├── qr-raysect-org.png └── qr-raysect-org.svg /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /CONTRIBUTING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/CONTRIBUTING.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/README.md -------------------------------------------------------------------------------- /demos/accuracy/observing_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/accuracy/observing_box.py -------------------------------------------------------------------------------- /demos/accuracy/observing_fibre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/accuracy/observing_fibre.py -------------------------------------------------------------------------------- /demos/accuracy/observing_mesh_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/accuracy/observing_mesh_camera.py -------------------------------------------------------------------------------- /demos/accuracy/observing_mesh_pixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/accuracy/observing_mesh_pixel.py -------------------------------------------------------------------------------- /demos/accuracy/observing_sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/accuracy/observing_sphere.py -------------------------------------------------------------------------------- /demos/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/animation.py -------------------------------------------------------------------------------- /demos/core/ray_intersection_hitpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/core/ray_intersection_hitpoints.py -------------------------------------------------------------------------------- /demos/core/world_contains_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/core/world_contains_point.py -------------------------------------------------------------------------------- /demos/cornell_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/cornell_box.py -------------------------------------------------------------------------------- /demos/csg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/csg.py -------------------------------------------------------------------------------- /demos/materials/anisotropic_emitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/anisotropic_emitter.py -------------------------------------------------------------------------------- /demos/materials/bunny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/bunny.py -------------------------------------------------------------------------------- /demos/materials/colours_diffuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/colours_diffuse.py -------------------------------------------------------------------------------- /demos/materials/colours_emissive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/colours_emissive.py -------------------------------------------------------------------------------- /demos/materials/diamond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/diamond.py -------------------------------------------------------------------------------- /demos/materials/metal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/metal.py -------------------------------------------------------------------------------- /demos/materials/modifiers/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/modifiers/add.py -------------------------------------------------------------------------------- /demos/materials/modifiers/blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/modifiers/blend.py -------------------------------------------------------------------------------- /demos/materials/modifiers/roughen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/modifiers/roughen.py -------------------------------------------------------------------------------- /demos/materials/modifiers/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/modifiers/transform.py -------------------------------------------------------------------------------- /demos/materials/tetrahedra_mesh_emission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/tetrahedra_mesh_emission.py -------------------------------------------------------------------------------- /demos/materials/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/materials/volume.py -------------------------------------------------------------------------------- /demos/maths/plot_targeted_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/maths/plot_targeted_sampler.py -------------------------------------------------------------------------------- /demos/maths/triangle_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/maths/triangle_sampler.py -------------------------------------------------------------------------------- /demos/maths/triangulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/maths/triangulate.py -------------------------------------------------------------------------------- /demos/multiple_importance_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/multiple_importance_sampling.py -------------------------------------------------------------------------------- /demos/observers/cornell_box_cooke_triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/observers/cornell_box_cooke_triplet.py -------------------------------------------------------------------------------- /demos/observers/cornell_box_real_pinhole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/observers/cornell_box_real_pinhole.py -------------------------------------------------------------------------------- /demos/observers/mesh_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/observers/mesh_power.py -------------------------------------------------------------------------------- /demos/observers/metal_with_lens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/observers/metal_with_lens.py -------------------------------------------------------------------------------- /demos/observers/optical_fibre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/observers/optical_fibre.py -------------------------------------------------------------------------------- /demos/observers/orthographic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/observers/orthographic.py -------------------------------------------------------------------------------- /demos/observers/targeted_pixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/observers/targeted_pixel.py -------------------------------------------------------------------------------- /demos/optics/etendue_of_pinhole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/optics/etendue_of_pinhole.py -------------------------------------------------------------------------------- /demos/optics/logging_trajectories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/optics/logging_trajectories.py -------------------------------------------------------------------------------- /demos/primitives/parabolic_lenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/primitives/parabolic_lenses.py -------------------------------------------------------------------------------- /demos/primitives/raysect_primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/primitives/raysect_primitives.py -------------------------------------------------------------------------------- /demos/primitives/simple_torus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/primitives/simple_torus.py -------------------------------------------------------------------------------- /demos/primitives/spherical_lenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/primitives/spherical_lenses.py -------------------------------------------------------------------------------- /demos/prism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/prism.py -------------------------------------------------------------------------------- /demos/quickstart/lambert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/quickstart/lambert.py -------------------------------------------------------------------------------- /demos/quickstart/lambert_spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/quickstart/lambert_spectrum.py -------------------------------------------------------------------------------- /demos/raysect_logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/raysect_logo.py -------------------------------------------------------------------------------- /demos/resources/box_normals_inwards.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/resources/box_normals_inwards.obj -------------------------------------------------------------------------------- /demos/resources/box_normals_outwards.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/resources/box_normals_outwards.obj -------------------------------------------------------------------------------- /demos/resources/diamond.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/resources/diamond.obj -------------------------------------------------------------------------------- /demos/resources/stanford_bunny.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/resources/stanford_bunny.mesh -------------------------------------------------------------------------------- /demos/resources/stanford_bunny.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/resources/stanford_bunny.obj -------------------------------------------------------------------------------- /demos/resources/stanford_bunny.rsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/resources/stanford_bunny.rsm -------------------------------------------------------------------------------- /demos/results/bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/bunny.png -------------------------------------------------------------------------------- /demos/results/cornell_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/cornell_box.png -------------------------------------------------------------------------------- /demos/results/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/diamond.png -------------------------------------------------------------------------------- /demos/results/mis_brdf_sampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/mis_brdf_sampling.png -------------------------------------------------------------------------------- /demos/results/mis_combined_sampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/mis_combined_sampling.png -------------------------------------------------------------------------------- /demos/results/mis_light_sampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/mis_light_sampling.png -------------------------------------------------------------------------------- /demos/results/modifier_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/modifier_add.png -------------------------------------------------------------------------------- /demos/results/modifier_blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/modifier_blend.png -------------------------------------------------------------------------------- /demos/results/modifier_roughen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/modifier_roughen.png -------------------------------------------------------------------------------- /demos/results/modifier_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/modifier_transform.png -------------------------------------------------------------------------------- /demos/results/prism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/prism.png -------------------------------------------------------------------------------- /demos/results/volume_emissive_colour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/volume_emissive_colour.png -------------------------------------------------------------------------------- /demos/results/volume_inhomogeneous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/demos/results/volume_inhomogeneous.png -------------------------------------------------------------------------------- /dev/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/build.sh -------------------------------------------------------------------------------- /dev/build/abi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/build/abi.py -------------------------------------------------------------------------------- /dev/build/add_version_file_to_dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/build/add_version_file_to_dist.sh -------------------------------------------------------------------------------- /dev/build/update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/build/update_version.sh -------------------------------------------------------------------------------- /dev/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/build_docs.sh -------------------------------------------------------------------------------- /dev/build_wheels_manylinux2010.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/build_wheels_manylinux2010.sh -------------------------------------------------------------------------------- /dev/build_wheels_manylinux2014.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/build_wheels_manylinux2014.sh -------------------------------------------------------------------------------- /dev/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/clean.sh -------------------------------------------------------------------------------- /dev/generate_meson_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/generate_meson_files.py -------------------------------------------------------------------------------- /dev/install_editable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/install_editable.sh -------------------------------------------------------------------------------- /dev/notes/building_bdist_with_manylinux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/notes/building_bdist_with_manylinux.txt -------------------------------------------------------------------------------- /dev/root-meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/root-meson.build -------------------------------------------------------------------------------- /dev/subdir-meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/subdir-meson.build -------------------------------------------------------------------------------- /dev/templates/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/templates/template.py -------------------------------------------------------------------------------- /dev/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/dev/test.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/RaysectLogo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/RaysectLogo_small.png -------------------------------------------------------------------------------- /docs/source/RaysectLogo_web.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/RaysectLogo_web.ico -------------------------------------------------------------------------------- /docs/source/RaysectLogo_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/RaysectLogo_web.png -------------------------------------------------------------------------------- /docs/source/RaysectLogo_web_bg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/RaysectLogo_web_bg.ico -------------------------------------------------------------------------------- /docs/source/RaysectOverview_2015-10-01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/RaysectOverview_2015-10-01.pdf -------------------------------------------------------------------------------- /docs/source/_html_extras/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_html_extras/CNAME: -------------------------------------------------------------------------------- 1 | www.raysect.org -------------------------------------------------------------------------------- /docs/source/api_reference/core/affinematrix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/affinematrix.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/core.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/core_classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/core_classes.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/functions.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/math.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/points_and_vectors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/points_and_vectors.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/random.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/random.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/raysect_core_kdtree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/raysect_core_kdtree.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/raysect_core_scenegraph.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/raysect_core_scenegraph.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/render_engines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/render_engines.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/spatial_acceleration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/spatial_acceleration.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/statistics_arrays.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/statistics_arrays.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/units.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/units.rst -------------------------------------------------------------------------------- /docs/source/api_reference/core/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/core/utilities.rst -------------------------------------------------------------------------------- /docs/source/api_reference/optical/main_optical_classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/optical/main_optical_classes.rst -------------------------------------------------------------------------------- /docs/source/api_reference/optical/observers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/optical/observers.rst -------------------------------------------------------------------------------- /docs/source/api_reference/optical/optical.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/optical/optical.rst -------------------------------------------------------------------------------- /docs/source/api_reference/optical/optical_material_base_classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/optical/optical_material_base_classes.rst -------------------------------------------------------------------------------- /docs/source/api_reference/optical/optical_surfaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/optical/optical_surfaces.rst -------------------------------------------------------------------------------- /docs/source/api_reference/optical/optical_volumes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/optical/optical_volumes.rst -------------------------------------------------------------------------------- /docs/source/api_reference/optical/pipelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/optical/pipelines.rst -------------------------------------------------------------------------------- /docs/source/api_reference/primitives/csg_operations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/primitives/csg_operations.rst -------------------------------------------------------------------------------- /docs/source/api_reference/primitives/geometric_primitives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/primitives/geometric_primitives.rst -------------------------------------------------------------------------------- /docs/source/api_reference/primitives/meshes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/primitives/meshes.rst -------------------------------------------------------------------------------- /docs/source/api_reference/primitives/optical_elements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/primitives/optical_elements.rst -------------------------------------------------------------------------------- /docs/source/api_reference/primitives/primitives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/primitives/primitives.rst -------------------------------------------------------------------------------- /docs/source/api_reference/primitives/spherical_lenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/api_reference/primitives/spherical_lenses.png -------------------------------------------------------------------------------- /docs/source/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/architecture.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/conventions.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/core/energy_conservation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/core/energy_conservation.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/core/multiple_importance_sampling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/core/multiple_importance_sampling.jpg -------------------------------------------------------------------------------- /docs/source/demonstrations/core/multiple_importance_sampling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/core/multiple_importance_sampling.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/core/ray_intersection_points.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/core/ray_intersection_points.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/core/ray_intersection_points_fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/core/ray_intersection_points_fig1.png -------------------------------------------------------------------------------- /docs/source/demonstrations/core/ray_intersection_points_fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/core/ray_intersection_points_fig2.png -------------------------------------------------------------------------------- /docs/source/demonstrations/core/test_point_inside_material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/core/test_point_inside_material.png -------------------------------------------------------------------------------- /docs/source/demonstrations/core/world_contains_point.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/core/world_contains_point.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/demonstrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/demonstrations.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/anisotropic_emitters.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/anisotropic_emitters.gif -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/anisotropic_emitters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/anisotropic_emitters.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/anisotropic_emitters_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/anisotropic_emitters_preview.png -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/brdf_polar_plots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/brdf_polar_plots.png -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/brdf_slice_plots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/brdf_slice_plots.png -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/brdf_surface3d_plots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/brdf_surface3d_plots.png -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/diamond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/diamond.jpg -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/diamond.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/diamond.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/diffuse_colours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/diffuse_colours.png -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/diffuse_colours.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/diffuse_colours.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/emissive_colours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/emissive_colours.png -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/emissive_colours.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/emissive_colours.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/glass_bunny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/glass_bunny.jpg -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/glass_bunny.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/glass_bunny.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/metal_balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/metal_balls.png -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/metal_materials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/metal_materials.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/polar_brdf_plots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/polar_brdf_plots.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/surface3d_brdf_plots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/surface3d_brdf_plots.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/surface_roughness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/surface_roughness.jpg -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/surface_roughness.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/surface_roughness.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/tetrahedra_mesh_emitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/tetrahedra_mesh_emitter.png -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/tetrahedra_mesh_emitter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/tetrahedra_mesh_emitter.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/volume_inhomogeneous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/volume_inhomogeneous.png -------------------------------------------------------------------------------- /docs/source/demonstrations/materials/volume_inhomogeneous.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/materials/volume_inhomogeneous.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/animation.gif -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/animation_preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/animation_preview.jpg -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/animations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/animations.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/cornell_box.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/cornell_box.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/cornell_box_mis_1550_samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/cornell_box_mis_1550_samples.png -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/cornell_box_real_lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/cornell_box_real_lens.png -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/cornell_box_with_camera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/cornell_box_with_camera.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/mesh_observers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/mesh_observers.jpg -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/mesh_observers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/mesh_observers.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/metal_balls_with_lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/metal_balls_with_lens.png -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/metal_balls_with_lens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/metal_balls_with_lens.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/optical_fibre.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/optical_fibre.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/optical_fibre_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/optical_fibre_power.png -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/orthographic_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/orthographic_camera.png -------------------------------------------------------------------------------- /docs/source/demonstrations/observers/orthographic_camera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/observers/orthographic_camera.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/optics/etendue_of_pinhole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/optics/etendue_of_pinhole.png -------------------------------------------------------------------------------- /docs/source/demonstrations/optics/etendue_of_pinhole.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/optics/etendue_of_pinhole.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/optics/prism.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/optics/prism.rst -------------------------------------------------------------------------------- /docs/source/demonstrations/optics/prism_720x405.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/demonstrations/optics/prism_720x405.png -------------------------------------------------------------------------------- /docs/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/glossary.rst -------------------------------------------------------------------------------- /docs/source/how_it_works.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/how_it_works.rst -------------------------------------------------------------------------------- /docs/source/images/calculate_emission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/calculate_emission.png -------------------------------------------------------------------------------- /docs/source/images/csg_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/csg_glass.png -------------------------------------------------------------------------------- /docs/source/images/demo_lambert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/demo_lambert.png -------------------------------------------------------------------------------- /docs/source/images/example_spectra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/example_spectra.png -------------------------------------------------------------------------------- /docs/source/images/gold_bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/gold_bunny.png -------------------------------------------------------------------------------- /docs/source/images/light_sampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/light_sampling.png -------------------------------------------------------------------------------- /docs/source/images/material_reflections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/material_reflections.png -------------------------------------------------------------------------------- /docs/source/images/metal_balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/metal_balls.png -------------------------------------------------------------------------------- /docs/source/images/pixel_sampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/pixel_sampling.png -------------------------------------------------------------------------------- /docs/source/images/ray-tracing_directions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/ray-tracing_directions.png -------------------------------------------------------------------------------- /docs/source/images/raysect_primitives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/raysect_primitives.png -------------------------------------------------------------------------------- /docs/source/images/roughen_modifier_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/images/roughen_modifier_example.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /docs/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/license.rst -------------------------------------------------------------------------------- /docs/source/materials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/materials.rst -------------------------------------------------------------------------------- /docs/source/observers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/observers.rst -------------------------------------------------------------------------------- /docs/source/primitives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/primitives.rst -------------------------------------------------------------------------------- /docs/source/quickstart_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/quickstart_guide.rst -------------------------------------------------------------------------------- /docs/source/quickstart_more.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/quickstart_more.rst -------------------------------------------------------------------------------- /docs/source/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/references.rst -------------------------------------------------------------------------------- /docs/source/requirements.txt: -------------------------------------------------------------------------------- 1 | cython>=0.23 2 | numpy>=1.9 3 | matplotlib -------------------------------------------------------------------------------- /docs/source/sampling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/sampling.rst -------------------------------------------------------------------------------- /docs/source/static/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/docs/source/static/theme.css -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/meson.build -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/pyproject.toml -------------------------------------------------------------------------------- /raysect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/__init__.py -------------------------------------------------------------------------------- /raysect/core/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/__init__.py -------------------------------------------------------------------------------- /raysect/core/acceleration/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/acceleration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/__init__.py -------------------------------------------------------------------------------- /raysect/core/acceleration/accelerator.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/accelerator.pxd -------------------------------------------------------------------------------- /raysect/core/acceleration/accelerator.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/accelerator.pyx -------------------------------------------------------------------------------- /raysect/core/acceleration/boundprimitive.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/boundprimitive.pxd -------------------------------------------------------------------------------- /raysect/core/acceleration/boundprimitive.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/boundprimitive.pyx -------------------------------------------------------------------------------- /raysect/core/acceleration/kdtree.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/kdtree.pxd -------------------------------------------------------------------------------- /raysect/core/acceleration/kdtree.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/kdtree.pyx -------------------------------------------------------------------------------- /raysect/core/acceleration/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/meson.build -------------------------------------------------------------------------------- /raysect/core/acceleration/tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'alex' 2 | -------------------------------------------------------------------------------- /raysect/core/acceleration/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/acceleration/unaccelerated.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/unaccelerated.pxd -------------------------------------------------------------------------------- /raysect/core/acceleration/unaccelerated.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/acceleration/unaccelerated.pyx -------------------------------------------------------------------------------- /raysect/core/boundingbox.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/boundingbox.pxd -------------------------------------------------------------------------------- /raysect/core/boundingbox.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/boundingbox.pyx -------------------------------------------------------------------------------- /raysect/core/boundingsphere.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/boundingsphere.pxd -------------------------------------------------------------------------------- /raysect/core/boundingsphere.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/boundingsphere.pyx -------------------------------------------------------------------------------- /raysect/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/constants.py -------------------------------------------------------------------------------- /raysect/core/containers.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/containers.pxd -------------------------------------------------------------------------------- /raysect/core/containers.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/containers.pyx -------------------------------------------------------------------------------- /raysect/core/intersection.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/intersection.pxd -------------------------------------------------------------------------------- /raysect/core/intersection.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/intersection.pyx -------------------------------------------------------------------------------- /raysect/core/material.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/material.pxd -------------------------------------------------------------------------------- /raysect/core/material.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/material.pyx -------------------------------------------------------------------------------- /raysect/core/math/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/_mat4.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/_mat4.pxd -------------------------------------------------------------------------------- /raysect/core/math/_mat4.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/_mat4.pyx -------------------------------------------------------------------------------- /raysect/core/math/_vec3.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/_vec3.pxd -------------------------------------------------------------------------------- /raysect/core/math/_vec3.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/_vec3.pyx -------------------------------------------------------------------------------- /raysect/core/math/affinematrix.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/affinematrix.pxd -------------------------------------------------------------------------------- /raysect/core/math/affinematrix.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/affinematrix.pyx -------------------------------------------------------------------------------- /raysect/core/math/cython/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/cython/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/cython/interpolation/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/interpolation/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/cython/interpolation/cubic.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/interpolation/cubic.pxd -------------------------------------------------------------------------------- /raysect/core/math/cython/interpolation/cubic.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/interpolation/cubic.pyx -------------------------------------------------------------------------------- /raysect/core/math/cython/interpolation/helper/.meson-exclude: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysect/core/math/cython/interpolation/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysect/core/math/cython/interpolation/helper/code_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/interpolation/helper/code_generator.py -------------------------------------------------------------------------------- /raysect/core/math/cython/interpolation/helper/equation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/interpolation/helper/equation.py -------------------------------------------------------------------------------- /raysect/core/math/cython/interpolation/linear.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/interpolation/linear.pxd -------------------------------------------------------------------------------- /raysect/core/math/cython/interpolation/linear.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/interpolation/linear.pyx -------------------------------------------------------------------------------- /raysect/core/math/cython/interpolation/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/interpolation/meson.build -------------------------------------------------------------------------------- /raysect/core/math/cython/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/meson.build -------------------------------------------------------------------------------- /raysect/core/math/cython/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /raysect/core/math/cython/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/math/cython/tests/test_tetrahedra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/tests/test_tetrahedra.py -------------------------------------------------------------------------------- /raysect/core/math/cython/tests/test_triangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/tests/test_triangle.py -------------------------------------------------------------------------------- /raysect/core/math/cython/tests/test_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/tests/test_utility.py -------------------------------------------------------------------------------- /raysect/core/math/cython/tetrahedra.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/tetrahedra.pxd -------------------------------------------------------------------------------- /raysect/core/math/cython/tetrahedra.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/tetrahedra.pyx -------------------------------------------------------------------------------- /raysect/core/math/cython/transform.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/transform.pxd -------------------------------------------------------------------------------- /raysect/core/math/cython/transform.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/transform.pyx -------------------------------------------------------------------------------- /raysect/core/math/cython/triangle.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/triangle.pxd -------------------------------------------------------------------------------- /raysect/core/math/cython/triangle.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/triangle.pyx -------------------------------------------------------------------------------- /raysect/core/math/cython/utility.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/utility.pxd -------------------------------------------------------------------------------- /raysect/core/math/cython/utility.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/cython/utility.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/base.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/base.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/base.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/base.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/arg.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/arg.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/arg.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/arg.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/autowrap.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/autowrap.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/autowrap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/autowrap.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/base.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/base.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/blend.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/blend.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/blend.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/blend.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/cmath.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/cmath.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/cmath.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/cmath.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/constant.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/constant.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/constant.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/constant.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/interpolate.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/interpolate.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/interpolate.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/interpolate.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/samplers.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/samplers.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/samplers.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/samplers.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/data/interpolator1d_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/data/interpolator1d_test_data.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/data/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/scripts/.meson-exclude: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/scripts/generate_1d_splines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/scripts/generate_1d_splines.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/scripts/generate_sampler_test_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/scripts/generate_sampler_test_arrays.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/test_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/test_arg.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/test_autowrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/test_autowrap.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/test_base.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/test_cmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/test_cmath.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/test_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/test_constant.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/test_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/test_interpolator.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function1d/tests/test_samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function1d/tests/test_samplers.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/arg.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/arg.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/arg.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/arg.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/autowrap.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/autowrap.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/autowrap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/autowrap.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/base.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/base.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/blend.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/blend.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/blend.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/blend.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/cmath.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/cmath.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/cmath.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/cmath.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/constant.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/constant.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/constant.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/constant.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/common.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/common.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/common.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/common.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/discrete2dmesh.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/discrete2dmesh.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/discrete2dmesh.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/discrete2dmesh.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/interpolator2darray.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/interpolator2darray.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/interpolator2darray.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/interpolator2darray.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/interpolator2dmesh.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/interpolator2dmesh.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/interpolator2dmesh.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/interpolator2dmesh.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/tests/data/interpolator2d_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/tests/data/interpolator2d_test_data.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/tests/data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/tests/data/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/tests/scripts/.meson-exclude: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/tests/scripts/generate_2d_splines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/tests/scripts/generate_2d_splines.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/interpolate/tests/test_interpolator_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/interpolate/tests/test_interpolator_2d.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/tests/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/tests/test_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/tests/test_arg.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/tests/test_autowrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/tests/test_autowrap.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/tests/test_base.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/tests/test_cmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/tests/test_cmath.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function2d/tests/test_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function2d/tests/test_constant.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/arg.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/arg.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/arg.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/arg.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/autowrap.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/autowrap.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/autowrap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/autowrap.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/base.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/base.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/blend.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/blend.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/blend.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/blend.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/cmath.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/cmath.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/cmath.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/cmath.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/constant.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/constant.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/constant.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/constant.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/common.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/common.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/common.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/common.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/discrete3dmesh.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/discrete3dmesh.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/discrete3dmesh.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/discrete3dmesh.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/interpolator3darray.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/interpolator3darray.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/interpolator3darray.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/interpolator3darray.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # from .test_interpolator_3d import * 2 | -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/tests/data/interpolator3d_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/tests/data/interpolator3d_test_data.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/tests/data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/tests/data/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/tests/scripts/.meson-exclude: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/tests/scripts/generate_3d_splines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/tests/scripts/generate_3d_splines.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/interpolate/tests/test_interpolator_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/interpolate/tests/test_interpolator_3d.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/tests/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/tests/test_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/tests/test_arg.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/tests/test_autowrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/tests/test_autowrap.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/tests/test_base.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/tests/test_cmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/tests/test_cmath.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/function3d/tests/test_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/function3d/tests/test_constant.py -------------------------------------------------------------------------------- /raysect/core/math/function/float/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/float/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/base.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/base.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/autowrap.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/autowrap.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/autowrap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/autowrap.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/base.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/base.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/blend.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/blend.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/blend.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/blend.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/constant.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/constant.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/constant.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/constant.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/tests/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/tests/test_autowrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/tests/test_autowrap.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/tests/test_base.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/tests/test_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/tests/test_constant.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/tests/test_float_to_vector3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/tests/test_float_to_vector3d.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/utility.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/utility.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function1d/utility.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function1d/utility.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/autowrap.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/autowrap.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/autowrap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/autowrap.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/base.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/base.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/blend.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/blend.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/blend.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/blend.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/constant.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/constant.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/constant.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/constant.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/tests/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/tests/test_autowrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/tests/test_autowrap.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/tests/test_base.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/tests/test_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/tests/test_constant.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/tests/test_float_to_vector3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/tests/test_float_to_vector3d.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/utility.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/utility.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function2d/utility.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function2d/utility.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/autowrap.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/autowrap.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/autowrap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/autowrap.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/base.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/base.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/base.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/base.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/blend.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/blend.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/blend.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/blend.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/constant.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/constant.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/constant.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/constant.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/tests/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/tests/test_autowrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/tests/test_autowrap.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/tests/test_base.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/tests/test_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/tests/test_constant.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/tests/test_float_to_vector3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/tests/test_float_to_vector3d.py -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/utility.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/utility.pxd -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/function3d/utility.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/function3d/utility.pyx -------------------------------------------------------------------------------- /raysect/core/math/function/vector3d/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/function/vector3d/meson.build -------------------------------------------------------------------------------- /raysect/core/math/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/meson.build -------------------------------------------------------------------------------- /raysect/core/math/normal.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/normal.pxd -------------------------------------------------------------------------------- /raysect/core/math/normal.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/normal.pyx -------------------------------------------------------------------------------- /raysect/core/math/point.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/point.pxd -------------------------------------------------------------------------------- /raysect/core/math/point.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/point.pyx -------------------------------------------------------------------------------- /raysect/core/math/polygon.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/polygon.pxd -------------------------------------------------------------------------------- /raysect/core/math/polygon.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/polygon.pyx -------------------------------------------------------------------------------- /raysect/core/math/quaternion.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/quaternion.pxd -------------------------------------------------------------------------------- /raysect/core/math/quaternion.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/quaternion.pyx -------------------------------------------------------------------------------- /raysect/core/math/random.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/random.pxd -------------------------------------------------------------------------------- /raysect/core/math/random.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/random.pyx -------------------------------------------------------------------------------- /raysect/core/math/sampler/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/sampler/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/sampler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/sampler/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/sampler/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/sampler/meson.build -------------------------------------------------------------------------------- /raysect/core/math/sampler/solidangle.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/sampler/solidangle.pxd -------------------------------------------------------------------------------- /raysect/core/math/sampler/solidangle.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/sampler/solidangle.pyx -------------------------------------------------------------------------------- /raysect/core/math/sampler/surface3d.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/sampler/surface3d.pxd -------------------------------------------------------------------------------- /raysect/core/math/sampler/surface3d.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/sampler/surface3d.pyx -------------------------------------------------------------------------------- /raysect/core/math/sampler/targeted.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/sampler/targeted.pxd -------------------------------------------------------------------------------- /raysect/core/math/sampler/targeted.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/sampler/targeted.pyx -------------------------------------------------------------------------------- /raysect/core/math/spatial/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/spatial/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/math/spatial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/spatial/__init__.py -------------------------------------------------------------------------------- /raysect/core/math/spatial/kdtree2d.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/spatial/kdtree2d.pxd -------------------------------------------------------------------------------- /raysect/core/math/spatial/kdtree2d.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/spatial/kdtree2d.pyx -------------------------------------------------------------------------------- /raysect/core/math/spatial/kdtree3d.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/spatial/kdtree3d.pxd -------------------------------------------------------------------------------- /raysect/core/math/spatial/kdtree3d.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/spatial/kdtree3d.pyx -------------------------------------------------------------------------------- /raysect/core/math/spatial/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/spatial/meson.build -------------------------------------------------------------------------------- /raysect/core/math/statsarray.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/statsarray.pxd -------------------------------------------------------------------------------- /raysect/core/math/statsarray.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/statsarray.pyx -------------------------------------------------------------------------------- /raysect/core/math/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /raysect/core/math/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/math/tests/test_affinematrix3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/tests/test_affinematrix3d.py -------------------------------------------------------------------------------- /raysect/core/math/tests/test_interaction3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/tests/test_interaction3d.py -------------------------------------------------------------------------------- /raysect/core/math/tests/test_normal3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/tests/test_normal3d.py -------------------------------------------------------------------------------- /raysect/core/math/tests/test_point2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/tests/test_point2d.py -------------------------------------------------------------------------------- /raysect/core/math/tests/test_point3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/tests/test_point3d.py -------------------------------------------------------------------------------- /raysect/core/math/tests/test_quaternion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/tests/test_quaternion.py -------------------------------------------------------------------------------- /raysect/core/math/tests/test_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/tests/test_random.py -------------------------------------------------------------------------------- /raysect/core/math/tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/tests/test_transform.py -------------------------------------------------------------------------------- /raysect/core/math/tests/test_vector2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/tests/test_vector2d.py -------------------------------------------------------------------------------- /raysect/core/math/tests/test_vector3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/tests/test_vector3d.py -------------------------------------------------------------------------------- /raysect/core/math/transform.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/transform.pxd -------------------------------------------------------------------------------- /raysect/core/math/transform.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/transform.pyx -------------------------------------------------------------------------------- /raysect/core/math/units.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/units.pxd -------------------------------------------------------------------------------- /raysect/core/math/units.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/units.pyx -------------------------------------------------------------------------------- /raysect/core/math/vector.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/vector.pxd -------------------------------------------------------------------------------- /raysect/core/math/vector.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/math/vector.pyx -------------------------------------------------------------------------------- /raysect/core/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/meson.build -------------------------------------------------------------------------------- /raysect/core/ray.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/ray.pxd -------------------------------------------------------------------------------- /raysect/core/ray.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/ray.pyx -------------------------------------------------------------------------------- /raysect/core/scenegraph/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/__init__.pxd -------------------------------------------------------------------------------- /raysect/core/scenegraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/__init__.py -------------------------------------------------------------------------------- /raysect/core/scenegraph/_nodebase.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/_nodebase.pxd -------------------------------------------------------------------------------- /raysect/core/scenegraph/_nodebase.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/_nodebase.pyx -------------------------------------------------------------------------------- /raysect/core/scenegraph/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/meson.build -------------------------------------------------------------------------------- /raysect/core/scenegraph/node.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/node.pxd -------------------------------------------------------------------------------- /raysect/core/scenegraph/node.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/node.pyx -------------------------------------------------------------------------------- /raysect/core/scenegraph/observer.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/observer.pxd -------------------------------------------------------------------------------- /raysect/core/scenegraph/observer.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/observer.pyx -------------------------------------------------------------------------------- /raysect/core/scenegraph/primitive.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/primitive.pxd -------------------------------------------------------------------------------- /raysect/core/scenegraph/primitive.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/primitive.pyx -------------------------------------------------------------------------------- /raysect/core/scenegraph/signal.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/signal.pxd -------------------------------------------------------------------------------- /raysect/core/scenegraph/signal.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/signal.pyx -------------------------------------------------------------------------------- /raysect/core/scenegraph/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /raysect/core/scenegraph/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/scenegraph/tests/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/tests/test_node.py -------------------------------------------------------------------------------- /raysect/core/scenegraph/tests/test_observer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/tests/test_observer.py -------------------------------------------------------------------------------- /raysect/core/scenegraph/tests/test_primitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/tests/test_primitive.py -------------------------------------------------------------------------------- /raysect/core/scenegraph/tests/test_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/tests/test_world.py -------------------------------------------------------------------------------- /raysect/core/scenegraph/utility.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/utility.pxd -------------------------------------------------------------------------------- /raysect/core/scenegraph/utility.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/utility.pyx -------------------------------------------------------------------------------- /raysect/core/scenegraph/world.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/world.pxd -------------------------------------------------------------------------------- /raysect/core/scenegraph/world.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/scenegraph/world.pyx -------------------------------------------------------------------------------- /raysect/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /raysect/core/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/tests/meson.build -------------------------------------------------------------------------------- /raysect/core/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/core/workflow.py -------------------------------------------------------------------------------- /raysect/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/meson.build -------------------------------------------------------------------------------- /raysect/optical/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/__init__.pxd -------------------------------------------------------------------------------- /raysect/optical/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/__init__.py -------------------------------------------------------------------------------- /raysect/optical/colour.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/colour.pxd -------------------------------------------------------------------------------- /raysect/optical/colour.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/colour.pyx -------------------------------------------------------------------------------- /raysect/optical/library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/__init__.py -------------------------------------------------------------------------------- /raysect/optical/library/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysect/optical/library/components/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/components/meson.build -------------------------------------------------------------------------------- /raysect/optical/library/glass/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/glass/__init__.py -------------------------------------------------------------------------------- /raysect/optical/library/glass/data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/glass/data/meson.build -------------------------------------------------------------------------------- /raysect/optical/library/glass/data/schott_catalog_2000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/glass/data/schott_catalog_2000.csv -------------------------------------------------------------------------------- /raysect/optical/library/glass/data/schott_catalog_2000_full.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/glass/data/schott_catalog_2000_full.csv -------------------------------------------------------------------------------- /raysect/optical/library/glass/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/glass/meson.build -------------------------------------------------------------------------------- /raysect/optical/library/glass/schott.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/glass/schott.py -------------------------------------------------------------------------------- /raysect/optical/library/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/meson.build -------------------------------------------------------------------------------- /raysect/optical/library/metal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/__init__.py -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/aluminium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/aluminium.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/beryllium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/beryllium.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/cobolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/cobolt.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/convert_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/convert_data.py -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/copper.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/gold.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/iron.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/lithium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/lithium.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/magnesium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/magnesium.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/manganese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/manganese.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/mercury.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/mercury.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/meson.build -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/nickel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/nickel.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/palladium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/palladium.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/platinum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/platinum.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/silicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/silicon.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/silver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/silver.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/sodium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/sodium.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/titanium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/titanium.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/data/tungsten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/data/tungsten.json -------------------------------------------------------------------------------- /raysect/optical/library/metal/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/meson.build -------------------------------------------------------------------------------- /raysect/optical/library/metal/metal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/metal.py -------------------------------------------------------------------------------- /raysect/optical/library/metal/roughmetal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/metal/roughmetal.py -------------------------------------------------------------------------------- /raysect/optical/library/spectra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/spectra/__init__.py -------------------------------------------------------------------------------- /raysect/optical/library/spectra/blackbody.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/spectra/blackbody.pyx -------------------------------------------------------------------------------- /raysect/optical/library/spectra/colours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/spectra/colours.py -------------------------------------------------------------------------------- /raysect/optical/library/spectra/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/library/spectra/meson.build -------------------------------------------------------------------------------- /raysect/optical/loggingray.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/loggingray.pyx -------------------------------------------------------------------------------- /raysect/optical/material/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/__init__.pxd -------------------------------------------------------------------------------- /raysect/optical/material/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/__init__.py -------------------------------------------------------------------------------- /raysect/optical/material/absorber.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/absorber.pxd -------------------------------------------------------------------------------- /raysect/optical/material/absorber.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/absorber.pyx -------------------------------------------------------------------------------- /raysect/optical/material/conductor.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/conductor.pxd -------------------------------------------------------------------------------- /raysect/optical/material/conductor.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/conductor.pyx -------------------------------------------------------------------------------- /raysect/optical/material/debug.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/debug.pxd -------------------------------------------------------------------------------- /raysect/optical/material/debug.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/debug.pyx -------------------------------------------------------------------------------- /raysect/optical/material/dielectric.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/dielectric.pxd -------------------------------------------------------------------------------- /raysect/optical/material/dielectric.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/dielectric.pyx -------------------------------------------------------------------------------- /raysect/optical/material/emitter/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/__init__.pxd -------------------------------------------------------------------------------- /raysect/optical/material/emitter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/__init__.py -------------------------------------------------------------------------------- /raysect/optical/material/emitter/anisotropic.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/anisotropic.pxd -------------------------------------------------------------------------------- /raysect/optical/material/emitter/anisotropic.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/anisotropic.pyx -------------------------------------------------------------------------------- /raysect/optical/material/emitter/checkerboard.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/checkerboard.pxd -------------------------------------------------------------------------------- /raysect/optical/material/emitter/checkerboard.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/checkerboard.pyx -------------------------------------------------------------------------------- /raysect/optical/material/emitter/homogeneous.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/homogeneous.pxd -------------------------------------------------------------------------------- /raysect/optical/material/emitter/homogeneous.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/homogeneous.pyx -------------------------------------------------------------------------------- /raysect/optical/material/emitter/inhomogeneous.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/inhomogeneous.pxd -------------------------------------------------------------------------------- /raysect/optical/material/emitter/inhomogeneous.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/inhomogeneous.pyx -------------------------------------------------------------------------------- /raysect/optical/material/emitter/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/meson.build -------------------------------------------------------------------------------- /raysect/optical/material/emitter/uniform.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/uniform.pxd -------------------------------------------------------------------------------- /raysect/optical/material/emitter/uniform.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/uniform.pyx -------------------------------------------------------------------------------- /raysect/optical/material/emitter/unity.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/unity.pxd -------------------------------------------------------------------------------- /raysect/optical/material/emitter/unity.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/emitter/unity.pyx -------------------------------------------------------------------------------- /raysect/optical/material/lambert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/lambert.pyx -------------------------------------------------------------------------------- /raysect/optical/material/material.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/material.pxd -------------------------------------------------------------------------------- /raysect/optical/material/material.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/material.pyx -------------------------------------------------------------------------------- /raysect/optical/material/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/meson.build -------------------------------------------------------------------------------- /raysect/optical/material/modifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/modifiers/__init__.py -------------------------------------------------------------------------------- /raysect/optical/material/modifiers/add.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/modifiers/add.pyx -------------------------------------------------------------------------------- /raysect/optical/material/modifiers/blend.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/modifiers/blend.pyx -------------------------------------------------------------------------------- /raysect/optical/material/modifiers/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/modifiers/meson.build -------------------------------------------------------------------------------- /raysect/optical/material/modifiers/roughen.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/modifiers/roughen.pyx -------------------------------------------------------------------------------- /raysect/optical/material/modifiers/transform.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/material/modifiers/transform.pyx -------------------------------------------------------------------------------- /raysect/optical/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/meson.build -------------------------------------------------------------------------------- /raysect/optical/observer/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/__init__.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/__init__.py -------------------------------------------------------------------------------- /raysect/optical/observer/base/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/__init__.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/__init__.py -------------------------------------------------------------------------------- /raysect/optical/observer/base/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/meson.build -------------------------------------------------------------------------------- /raysect/optical/observer/base/observer.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/observer.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/base/observer.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/observer.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/base/pipeline.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/pipeline.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/base/pipeline.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/pipeline.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/base/processor.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/processor.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/base/processor.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/processor.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/base/sampler.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/sampler.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/base/sampler.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/sampler.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/base/slice.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/slice.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/base/slice.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/base/slice.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/__init__.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/__init__.py -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/ccd.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/ccd.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/ccd.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/ccd.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/meson.build -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/opencv.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/opencv.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/opencv.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/opencv.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/orthographic.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/orthographic.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/orthographic.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/orthographic.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/pinhole.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/pinhole.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/pinhole.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/pinhole.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/targeted_ccd.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/targeted_ccd.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/targeted_ccd.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/targeted_ccd.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/vector.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/vector.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/imaging/vector.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/imaging/vector.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/meson.build -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/__init__.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/__init__.py -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/fibreoptic.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/fibreoptic.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/fibreoptic.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/fibreoptic.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/mesh_camera.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/mesh_camera.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/mesh_camera.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/mesh_camera.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/mesh_pixel.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/mesh_pixel.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/mesh_pixel.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/mesh_pixel.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/meson.build -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/pixel.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/pixel.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/pixel.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/pixel.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/sightline.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/sightline.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/sightline.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/sightline.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/targeted_pixel.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/targeted_pixel.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/nonimaging/targeted_pixel.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/nonimaging/targeted_pixel.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/__init__.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/__init__.py -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/bayer.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/bayer.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/bayer.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/bayer.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/colormaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/colormaps.py -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/meson.build -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/mono/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/mono/__init__.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/mono/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/mono/__init__.py -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/mono/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/mono/meson.build -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/mono/power.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/mono/power.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/mono/power.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/mono/power.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/mono/radiance.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/mono/radiance.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/mono/radiance.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/mono/radiance.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/rgb.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/rgb.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/rgb.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/rgb.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/spectral/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/spectral/__init__.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/spectral/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/spectral/__init__.py -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/spectral/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/spectral/meson.build -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/spectral/power.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/spectral/power.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/spectral/power.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/spectral/power.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/spectral/radiance.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/spectral/radiance.pxd -------------------------------------------------------------------------------- /raysect/optical/observer/pipeline/spectral/radiance.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/pipeline/spectral/radiance.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/sampler1d.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/sampler1d.pyx -------------------------------------------------------------------------------- /raysect/optical/observer/sampler2d.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/observer/sampler2d.pyx -------------------------------------------------------------------------------- /raysect/optical/ray.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/ray.pxd -------------------------------------------------------------------------------- /raysect/optical/ray.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/ray.pyx -------------------------------------------------------------------------------- /raysect/optical/scenegraph/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/scenegraph/__init__.pxd -------------------------------------------------------------------------------- /raysect/optical/scenegraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/scenegraph/__init__.py -------------------------------------------------------------------------------- /raysect/optical/scenegraph/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/scenegraph/meson.build -------------------------------------------------------------------------------- /raysect/optical/scenegraph/world.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/scenegraph/world.pxd -------------------------------------------------------------------------------- /raysect/optical/scenegraph/world.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/scenegraph/world.pyx -------------------------------------------------------------------------------- /raysect/optical/spectralfunction.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/spectralfunction.pxd -------------------------------------------------------------------------------- /raysect/optical/spectralfunction.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/spectralfunction.pyx -------------------------------------------------------------------------------- /raysect/optical/spectrum.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/spectrum.pxd -------------------------------------------------------------------------------- /raysect/optical/spectrum.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/optical/spectrum.pyx -------------------------------------------------------------------------------- /raysect/primitive/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/__init__.pxd -------------------------------------------------------------------------------- /raysect/primitive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/__init__.py -------------------------------------------------------------------------------- /raysect/primitive/box.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/box.pxd -------------------------------------------------------------------------------- /raysect/primitive/box.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/box.pyx -------------------------------------------------------------------------------- /raysect/primitive/cone.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/cone.pxd -------------------------------------------------------------------------------- /raysect/primitive/cone.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/cone.pyx -------------------------------------------------------------------------------- /raysect/primitive/csg.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/csg.pxd -------------------------------------------------------------------------------- /raysect/primitive/csg.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/csg.pyx -------------------------------------------------------------------------------- /raysect/primitive/cylinder.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/cylinder.pxd -------------------------------------------------------------------------------- /raysect/primitive/cylinder.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/cylinder.pyx -------------------------------------------------------------------------------- /raysect/primitive/lens/__init__.py: -------------------------------------------------------------------------------- 1 | from .spherical import * 2 | -------------------------------------------------------------------------------- /raysect/primitive/lens/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/lens/meson.build -------------------------------------------------------------------------------- /raysect/primitive/lens/spherical.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/lens/spherical.pyx -------------------------------------------------------------------------------- /raysect/primitive/lens/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raysect/primitive/lens/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/lens/tests/meson.build -------------------------------------------------------------------------------- /raysect/primitive/lens/tests/test_spherical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/lens/tests/test_spherical.py -------------------------------------------------------------------------------- /raysect/primitive/mesh/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/mesh/__init__.pxd -------------------------------------------------------------------------------- /raysect/primitive/mesh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/mesh/__init__.py -------------------------------------------------------------------------------- /raysect/primitive/mesh/mesh.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/mesh/mesh.pxd -------------------------------------------------------------------------------- /raysect/primitive/mesh/mesh.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/mesh/mesh.pyx -------------------------------------------------------------------------------- /raysect/primitive/mesh/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/mesh/meson.build -------------------------------------------------------------------------------- /raysect/primitive/mesh/obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/mesh/obj.py -------------------------------------------------------------------------------- /raysect/primitive/mesh/ply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/mesh/ply.py -------------------------------------------------------------------------------- /raysect/primitive/mesh/stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/mesh/stl.py -------------------------------------------------------------------------------- /raysect/primitive/mesh/vtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/mesh/vtk.py -------------------------------------------------------------------------------- /raysect/primitive/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/meson.build -------------------------------------------------------------------------------- /raysect/primitive/parabola.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/parabola.pxd -------------------------------------------------------------------------------- /raysect/primitive/parabola.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/parabola.pyx -------------------------------------------------------------------------------- /raysect/primitive/sphere.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/sphere.pxd -------------------------------------------------------------------------------- /raysect/primitive/sphere.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/sphere.pyx -------------------------------------------------------------------------------- /raysect/primitive/torus.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/torus.pxd -------------------------------------------------------------------------------- /raysect/primitive/torus.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/torus.pyx -------------------------------------------------------------------------------- /raysect/primitive/utility.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/utility.pxd -------------------------------------------------------------------------------- /raysect/primitive/utility.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/raysect/primitive/utility.pyx -------------------------------------------------------------------------------- /resources/PresentationTemplate.otp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/PresentationTemplate.otp -------------------------------------------------------------------------------- /resources/RaysectOverview_2015-10-01.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/RaysectOverview_2015-10-01.odp -------------------------------------------------------------------------------- /resources/logo/Raysect.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/logo/Raysect.ico -------------------------------------------------------------------------------- /resources/logo/RaysectLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/logo/RaysectLogo.svg -------------------------------------------------------------------------------- /resources/logo/RaysectLogo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/logo/RaysectLogo_large.png -------------------------------------------------------------------------------- /resources/logo/RaysectLogo_wheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/logo/RaysectLogo_wheel.svg -------------------------------------------------------------------------------- /resources/logo/RaysectLogo_wheel_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/logo/RaysectLogo_wheel_large.png -------------------------------------------------------------------------------- /resources/logo/RaysectLogo_wheel_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/logo/RaysectLogo_wheel_small.png -------------------------------------------------------------------------------- /resources/logo/RaysectLogo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/logo/RaysectLogo_white.svg -------------------------------------------------------------------------------- /resources/logo/RaysectLogo_white_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/logo/RaysectLogo_white_large.png -------------------------------------------------------------------------------- /resources/logo/RaysectLogo_white_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/logo/RaysectLogo_white_small.png -------------------------------------------------------------------------------- /resources/logo/cabin_font.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/logo/cabin_font.zip -------------------------------------------------------------------------------- /resources/qr-raysect-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/qr-raysect-org.png -------------------------------------------------------------------------------- /resources/qr-raysect-org.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysect/source/HEAD/resources/qr-raysect-org.svg --------------------------------------------------------------------------------