├── .github └── workflows │ ├── build-windows.yml │ ├── build-windows_312.yml │ ├── doc-deploy.yml │ ├── test-linux.yml │ ├── test-linux_unique.yml │ ├── test-windows.yml │ └── test-windows_unique.yml ├── .gitignore ├── CHANGELOG.rst ├── LICENSE.rst ├── MANIFEST.in ├── README.md ├── docs ├── API.rst ├── API │ ├── GUI.rst │ ├── arbitrary_models.rst │ ├── colors.rst │ ├── core.rst │ ├── db.rst │ ├── layers.rst │ ├── logging.rst │ ├── movie.rst │ ├── postproc.rst │ ├── projection.rst │ ├── settings.rst │ └── standard_models.rst ├── Makefile ├── _static │ ├── GUI_overview.png │ ├── Screenshot_from_2022-02-04.png │ ├── deep_julia_BS.jpg │ ├── gaia.jpg │ ├── logo2.jpg │ ├── logo3.jpg │ ├── math.css │ ├── ribbon.css │ ├── rtd_dark.css │ └── tetration_spring.jpg ├── _templates │ ├── layout.html │ └── search.html ├── acknowledgment.rst ├── changelog.rst ├── conf.py ├── getting_started.rst ├── index.rst ├── license.rst ├── making_movies.rst ├── math.rst ├── overview.rst ├── readme.txt └── refs.bib ├── examples ├── README.rst ├── batch_mode │ ├── 01-full_basic.py │ ├── 02-bulb_fieldlines1.py │ ├── 03-bulb_fieldlines2.py │ ├── 04-seahorse_shaded.py │ ├── 05-seahorse_shaded_colored.py │ ├── 06-seahorse_interior.py │ ├── 07-seahorse_DEM.py │ ├── 08-run_perturb_DEM.py │ ├── 09-run_flake_DEM.py │ ├── 10-double_embedded_julia.py │ ├── 11-run_perturbdeep.py │ ├── 12-burning_ship_deep.py │ ├── 13-burning_ship.py │ ├── 14-burning_ship-deeper_DEM.py │ ├── 15-burning_ship-deepJulia_DEM.py │ ├── 16-tetration_spring.py │ ├── 17-perpendicular_burning_ship_DEM.py │ ├── 18-perpendicular_burning_ship_glynn.py │ ├── 19-perpendicular_burning_ship_Koch.py │ ├── 20-perpendicular_burning_ship_Sierpinski.py │ ├── 21-perpendicular_burning_ship_trees.py │ ├── 22-shark_fin_deep.py │ ├── 23-deep_min.py │ └── README.rst ├── colormaps │ ├── README.rst │ └── plot_cmaps.py ├── interactive_deepzoom │ ├── D01_run_interactive.py │ ├── D02_run_BS_interactive.py │ ├── D03_run_interactive_Mn.py │ └── README.rst ├── interactive_standard │ ├── README.rst │ ├── S01_run_interactive_shallow.py │ ├── S02_run_BS_shallow.py │ ├── S03_run_interactive_Mn_shallow.py │ ├── S04_run_collatz.py │ └── S05_run_power_tower_shallow.py ├── lighting │ ├── README.rst │ └── plot_lighting.py ├── movies │ ├── custom_movie │ │ ├── custom.py │ │ └── custom_zoom_template.py │ ├── making_movies.rst │ ├── pan_movie │ │ ├── M2_plotter.py │ │ └── pan_script.py │ ├── with_DEM │ │ ├── perpendicular_BS.py │ │ └── zoom_script_DEM.py │ └── zoom_movie │ │ ├── M2_plotter_zoom.py │ │ └── zoom_script.py └── projections │ ├── P01-feigenbaum_expmap.py │ ├── P02-inversion.py │ ├── P03-Elephant_valley_moebius.py │ ├── P04-deep_expmap.py │ └── README.rst ├── local_install.sh ├── pyproject.toml ├── requirements.txt ├── run_tests.py ├── setup.cfg ├── setup.py ├── src └── fractalshades │ ├── __init__.py │ ├── colors │ ├── __init__.py │ ├── color_mapping.py │ ├── colormap_templates.py │ ├── layers.py │ └── lighting_templates.py │ ├── core.py │ ├── data │ ├── GidoleFont │ │ ├── Gidole-Regular.ttf │ │ ├── Gidolinya-Regular.otf │ │ ├── License.txt │ │ └── Readme+Characters.pdf │ └── LICENSE.txt │ ├── db.py │ ├── gui │ ├── QCodeEditor.py │ ├── __init__.py │ ├── guimodel.py │ ├── guitemplates.py │ └── model.py │ ├── log.py │ ├── models │ ├── __init__.py │ ├── burning_ship.py │ ├── collatz.py │ ├── mandelbrot_M2.py │ ├── mandelbrot_Mn.py │ └── power_tower.py │ ├── movie │ ├── __init__.py │ └── movie.py │ ├── mpmath_utils │ └── FP_loop.pyx │ ├── mthreading.py │ ├── numpy_utils │ ├── __init__.py │ ├── expr_parser.py │ ├── filters.py │ ├── interp2d.py │ ├── numba_xr.py │ └── xrange.py │ ├── parallel_lock.py │ ├── perturbation.py │ ├── postproc.py │ ├── projection.py │ ├── settings.py │ └── utils.py ├── tests ├── REFERENCE_DATA │ ├── cmap_REF │ │ ├── black_yellow_black.cbar.png │ │ └── red_yellow_black.cbar.png │ ├── layers_REF │ │ ├── Color_layer_cont_iter.REF.png │ │ ├── Color_layer_cont_iter_lighted.REF.png │ │ ├── Color_layer_cont_iter_twinned.REF.png │ │ ├── Color_layer_curve1.REF.png │ │ ├── Color_layer_curve2.REF.png │ │ ├── Color_layer_curve3.REF.png │ │ ├── Color_layer_curve4.REF.png │ │ ├── Color_layer_overlay1.REF.png │ │ ├── Color_layer_tint_or_shade1.REF.png │ │ ├── Color_layer_tint_or_shade2.REF.png │ │ ├── Color_layer_tint_or_shade3.REF.png │ │ ├── Grey_layer_field_lines_grey.REF.png │ │ ├── Normal_map_layer_DEM_map-1.REF.png │ │ ├── Normal_map_layer_DEM_map-2.REF.png │ │ └── Normal_map_layer_DEM_map.REF.png │ ├── perturb_REF │ │ ├── Color_layer_test_M2_E20_potential_Xr_complex128.REF.png │ │ ├── Color_layer_test_M2_E20_potential_complex128.REF.png │ │ ├── Color_layer_test_M2_E213_potential_tlaloc.REF.png │ │ ├── Color_layer_test_M2_int_E11_potential_1e-06BLA.REF.png │ │ ├── Color_layer_test_M2_int_E11_potential_noBLA.REF.png │ │ ├── Color_layer_test_deep_interior_detect_potential_deep_interior.REF.png │ │ ├── Color_layer_test_glitch_divref5_potential_fail5.REF.png │ │ ├── Color_layer_test_glitch_divref_potential_fail2.REF.png │ │ ├── Color_layer_test_glitch_dyn_potential_flake.REF.png │ │ ├── Color_layer_test_supersampling_potential_2-2.REF.png │ │ ├── Color_layer_test_ultradeep_interior_detect_potential_ultradeep_interior.REF.png │ │ └── flake │ │ │ ├── dev.params │ │ │ ├── dev_pt0.ref │ │ │ └── dev_pt0.sa │ ├── subset_REF │ │ ├── Color_layer_attr.REF.png │ │ └── Color_layer_order.REF.png │ └── xdata_REF │ │ └── data │ │ ├── 64SA_pt0.ref │ │ └── ref_pt.dat ├── test_FP_loop.py ├── test_colors.py ├── test_config.py ├── test_core.py ├── test_db.py ├── test_exp_db.py ├── test_filters.py ├── test_interpolate.py ├── test_layers.py ├── test_memmap.py ├── test_mpmath.py ├── test_mproc.py ├── test_numba_xr.py ├── test_parallel.py ├── test_perturbation.py ├── test_pickle.py ├── test_postproc.py ├── test_subset.py ├── test_utils.py └── test_xrange.py └── win_build ├── build_requirements.txt ├── dll2lib.bat ├── gmpy2_headers ├── COPYING ├── COPYING.LESSER ├── gmp.h ├── gmpy2.h ├── mpc.h └── mpfr.h └── patch_gmpy2.py /.github/workflows/build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/.github/workflows/build-windows.yml -------------------------------------------------------------------------------- /.github/workflows/build-windows_312.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/.github/workflows/build-windows_312.yml -------------------------------------------------------------------------------- /.github/workflows/doc-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/.github/workflows/doc-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/.github/workflows/test-linux.yml -------------------------------------------------------------------------------- /.github/workflows/test-linux_unique.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/.github/workflows/test-linux_unique.yml -------------------------------------------------------------------------------- /.github/workflows/test-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/.github/workflows/test-windows.yml -------------------------------------------------------------------------------- /.github/workflows/test-windows_unique.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/.github/workflows/test-windows_unique.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/README.md -------------------------------------------------------------------------------- /docs/API.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API.rst -------------------------------------------------------------------------------- /docs/API/GUI.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/GUI.rst -------------------------------------------------------------------------------- /docs/API/arbitrary_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/arbitrary_models.rst -------------------------------------------------------------------------------- /docs/API/colors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/colors.rst -------------------------------------------------------------------------------- /docs/API/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/core.rst -------------------------------------------------------------------------------- /docs/API/db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/db.rst -------------------------------------------------------------------------------- /docs/API/layers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/layers.rst -------------------------------------------------------------------------------- /docs/API/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/logging.rst -------------------------------------------------------------------------------- /docs/API/movie.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/movie.rst -------------------------------------------------------------------------------- /docs/API/postproc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/postproc.rst -------------------------------------------------------------------------------- /docs/API/projection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/projection.rst -------------------------------------------------------------------------------- /docs/API/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/settings.rst -------------------------------------------------------------------------------- /docs/API/standard_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/API/standard_models.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/GUI_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_static/GUI_overview.png -------------------------------------------------------------------------------- /docs/_static/Screenshot_from_2022-02-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_static/Screenshot_from_2022-02-04.png -------------------------------------------------------------------------------- /docs/_static/deep_julia_BS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_static/deep_julia_BS.jpg -------------------------------------------------------------------------------- /docs/_static/gaia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_static/gaia.jpg -------------------------------------------------------------------------------- /docs/_static/logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_static/logo2.jpg -------------------------------------------------------------------------------- /docs/_static/logo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_static/logo3.jpg -------------------------------------------------------------------------------- /docs/_static/math.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_static/math.css -------------------------------------------------------------------------------- /docs/_static/ribbon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_static/ribbon.css -------------------------------------------------------------------------------- /docs/_static/rtd_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_static/rtd_dark.css -------------------------------------------------------------------------------- /docs/_static/tetration_spring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_static/tetration_spring.jpg -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/_templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/_templates/search.html -------------------------------------------------------------------------------- /docs/acknowledgment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/acknowledgment.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/making_movies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/making_movies.rst -------------------------------------------------------------------------------- /docs/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/math.rst -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/readme.txt -------------------------------------------------------------------------------- /docs/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/docs/refs.bib -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/batch_mode/01-full_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/01-full_basic.py -------------------------------------------------------------------------------- /examples/batch_mode/02-bulb_fieldlines1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/02-bulb_fieldlines1.py -------------------------------------------------------------------------------- /examples/batch_mode/03-bulb_fieldlines2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/03-bulb_fieldlines2.py -------------------------------------------------------------------------------- /examples/batch_mode/04-seahorse_shaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/04-seahorse_shaded.py -------------------------------------------------------------------------------- /examples/batch_mode/05-seahorse_shaded_colored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/05-seahorse_shaded_colored.py -------------------------------------------------------------------------------- /examples/batch_mode/06-seahorse_interior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/06-seahorse_interior.py -------------------------------------------------------------------------------- /examples/batch_mode/07-seahorse_DEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/07-seahorse_DEM.py -------------------------------------------------------------------------------- /examples/batch_mode/08-run_perturb_DEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/08-run_perturb_DEM.py -------------------------------------------------------------------------------- /examples/batch_mode/09-run_flake_DEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/09-run_flake_DEM.py -------------------------------------------------------------------------------- /examples/batch_mode/10-double_embedded_julia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/10-double_embedded_julia.py -------------------------------------------------------------------------------- /examples/batch_mode/11-run_perturbdeep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/11-run_perturbdeep.py -------------------------------------------------------------------------------- /examples/batch_mode/12-burning_ship_deep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/12-burning_ship_deep.py -------------------------------------------------------------------------------- /examples/batch_mode/13-burning_ship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/13-burning_ship.py -------------------------------------------------------------------------------- /examples/batch_mode/14-burning_ship-deeper_DEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/14-burning_ship-deeper_DEM.py -------------------------------------------------------------------------------- /examples/batch_mode/15-burning_ship-deepJulia_DEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/15-burning_ship-deepJulia_DEM.py -------------------------------------------------------------------------------- /examples/batch_mode/16-tetration_spring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/16-tetration_spring.py -------------------------------------------------------------------------------- /examples/batch_mode/17-perpendicular_burning_ship_DEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/17-perpendicular_burning_ship_DEM.py -------------------------------------------------------------------------------- /examples/batch_mode/18-perpendicular_burning_ship_glynn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/18-perpendicular_burning_ship_glynn.py -------------------------------------------------------------------------------- /examples/batch_mode/19-perpendicular_burning_ship_Koch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/19-perpendicular_burning_ship_Koch.py -------------------------------------------------------------------------------- /examples/batch_mode/20-perpendicular_burning_ship_Sierpinski.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/20-perpendicular_burning_ship_Sierpinski.py -------------------------------------------------------------------------------- /examples/batch_mode/21-perpendicular_burning_ship_trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/21-perpendicular_burning_ship_trees.py -------------------------------------------------------------------------------- /examples/batch_mode/22-shark_fin_deep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/22-shark_fin_deep.py -------------------------------------------------------------------------------- /examples/batch_mode/23-deep_min.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/23-deep_min.py -------------------------------------------------------------------------------- /examples/batch_mode/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/batch_mode/README.rst -------------------------------------------------------------------------------- /examples/colormaps/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/colormaps/README.rst -------------------------------------------------------------------------------- /examples/colormaps/plot_cmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/colormaps/plot_cmaps.py -------------------------------------------------------------------------------- /examples/interactive_deepzoom/D01_run_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/interactive_deepzoom/D01_run_interactive.py -------------------------------------------------------------------------------- /examples/interactive_deepzoom/D02_run_BS_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/interactive_deepzoom/D02_run_BS_interactive.py -------------------------------------------------------------------------------- /examples/interactive_deepzoom/D03_run_interactive_Mn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/interactive_deepzoom/D03_run_interactive_Mn.py -------------------------------------------------------------------------------- /examples/interactive_deepzoom/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/interactive_deepzoom/README.rst -------------------------------------------------------------------------------- /examples/interactive_standard/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/interactive_standard/README.rst -------------------------------------------------------------------------------- /examples/interactive_standard/S01_run_interactive_shallow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/interactive_standard/S01_run_interactive_shallow.py -------------------------------------------------------------------------------- /examples/interactive_standard/S02_run_BS_shallow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/interactive_standard/S02_run_BS_shallow.py -------------------------------------------------------------------------------- /examples/interactive_standard/S03_run_interactive_Mn_shallow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/interactive_standard/S03_run_interactive_Mn_shallow.py -------------------------------------------------------------------------------- /examples/interactive_standard/S04_run_collatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/interactive_standard/S04_run_collatz.py -------------------------------------------------------------------------------- /examples/interactive_standard/S05_run_power_tower_shallow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/interactive_standard/S05_run_power_tower_shallow.py -------------------------------------------------------------------------------- /examples/lighting/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/lighting/README.rst -------------------------------------------------------------------------------- /examples/lighting/plot_lighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/lighting/plot_lighting.py -------------------------------------------------------------------------------- /examples/movies/custom_movie/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/movies/custom_movie/custom.py -------------------------------------------------------------------------------- /examples/movies/custom_movie/custom_zoom_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/movies/custom_movie/custom_zoom_template.py -------------------------------------------------------------------------------- /examples/movies/making_movies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/movies/making_movies.rst -------------------------------------------------------------------------------- /examples/movies/pan_movie/M2_plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/movies/pan_movie/M2_plotter.py -------------------------------------------------------------------------------- /examples/movies/pan_movie/pan_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/movies/pan_movie/pan_script.py -------------------------------------------------------------------------------- /examples/movies/with_DEM/perpendicular_BS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/movies/with_DEM/perpendicular_BS.py -------------------------------------------------------------------------------- /examples/movies/with_DEM/zoom_script_DEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/movies/with_DEM/zoom_script_DEM.py -------------------------------------------------------------------------------- /examples/movies/zoom_movie/M2_plotter_zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/movies/zoom_movie/M2_plotter_zoom.py -------------------------------------------------------------------------------- /examples/movies/zoom_movie/zoom_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/movies/zoom_movie/zoom_script.py -------------------------------------------------------------------------------- /examples/projections/P01-feigenbaum_expmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/projections/P01-feigenbaum_expmap.py -------------------------------------------------------------------------------- /examples/projections/P02-inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/projections/P02-inversion.py -------------------------------------------------------------------------------- /examples/projections/P03-Elephant_valley_moebius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/projections/P03-Elephant_valley_moebius.py -------------------------------------------------------------------------------- /examples/projections/P04-deep_expmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/projections/P04-deep_expmap.py -------------------------------------------------------------------------------- /examples/projections/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/examples/projections/README.rst -------------------------------------------------------------------------------- /local_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/local_install.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/run_tests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/setup.py -------------------------------------------------------------------------------- /src/fractalshades/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/__init__.py -------------------------------------------------------------------------------- /src/fractalshades/colors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/colors/__init__.py -------------------------------------------------------------------------------- /src/fractalshades/colors/color_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/colors/color_mapping.py -------------------------------------------------------------------------------- /src/fractalshades/colors/colormap_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/colors/colormap_templates.py -------------------------------------------------------------------------------- /src/fractalshades/colors/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/colors/layers.py -------------------------------------------------------------------------------- /src/fractalshades/colors/lighting_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/colors/lighting_templates.py -------------------------------------------------------------------------------- /src/fractalshades/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/core.py -------------------------------------------------------------------------------- /src/fractalshades/data/GidoleFont/Gidole-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/data/GidoleFont/Gidole-Regular.ttf -------------------------------------------------------------------------------- /src/fractalshades/data/GidoleFont/Gidolinya-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/data/GidoleFont/Gidolinya-Regular.otf -------------------------------------------------------------------------------- /src/fractalshades/data/GidoleFont/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/data/GidoleFont/License.txt -------------------------------------------------------------------------------- /src/fractalshades/data/GidoleFont/Readme+Characters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/data/GidoleFont/Readme+Characters.pdf -------------------------------------------------------------------------------- /src/fractalshades/data/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/data/LICENSE.txt -------------------------------------------------------------------------------- /src/fractalshades/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/db.py -------------------------------------------------------------------------------- /src/fractalshades/gui/QCodeEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/gui/QCodeEditor.py -------------------------------------------------------------------------------- /src/fractalshades/gui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/gui/__init__.py -------------------------------------------------------------------------------- /src/fractalshades/gui/guimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/gui/guimodel.py -------------------------------------------------------------------------------- /src/fractalshades/gui/guitemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/gui/guitemplates.py -------------------------------------------------------------------------------- /src/fractalshades/gui/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/gui/model.py -------------------------------------------------------------------------------- /src/fractalshades/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/log.py -------------------------------------------------------------------------------- /src/fractalshades/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/models/__init__.py -------------------------------------------------------------------------------- /src/fractalshades/models/burning_ship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/models/burning_ship.py -------------------------------------------------------------------------------- /src/fractalshades/models/collatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/models/collatz.py -------------------------------------------------------------------------------- /src/fractalshades/models/mandelbrot_M2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/models/mandelbrot_M2.py -------------------------------------------------------------------------------- /src/fractalshades/models/mandelbrot_Mn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/models/mandelbrot_Mn.py -------------------------------------------------------------------------------- /src/fractalshades/models/power_tower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/models/power_tower.py -------------------------------------------------------------------------------- /src/fractalshades/movie/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from .movie import * -------------------------------------------------------------------------------- /src/fractalshades/movie/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/movie/movie.py -------------------------------------------------------------------------------- /src/fractalshades/mpmath_utils/FP_loop.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/mpmath_utils/FP_loop.pyx -------------------------------------------------------------------------------- /src/fractalshades/mthreading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/mthreading.py -------------------------------------------------------------------------------- /src/fractalshades/numpy_utils/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from .expr_parser import * 3 | -------------------------------------------------------------------------------- /src/fractalshades/numpy_utils/expr_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/numpy_utils/expr_parser.py -------------------------------------------------------------------------------- /src/fractalshades/numpy_utils/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/numpy_utils/filters.py -------------------------------------------------------------------------------- /src/fractalshades/numpy_utils/interp2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/numpy_utils/interp2d.py -------------------------------------------------------------------------------- /src/fractalshades/numpy_utils/numba_xr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/numpy_utils/numba_xr.py -------------------------------------------------------------------------------- /src/fractalshades/numpy_utils/xrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/numpy_utils/xrange.py -------------------------------------------------------------------------------- /src/fractalshades/parallel_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/parallel_lock.py -------------------------------------------------------------------------------- /src/fractalshades/perturbation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/perturbation.py -------------------------------------------------------------------------------- /src/fractalshades/postproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/postproc.py -------------------------------------------------------------------------------- /src/fractalshades/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/projection.py -------------------------------------------------------------------------------- /src/fractalshades/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/settings.py -------------------------------------------------------------------------------- /src/fractalshades/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/src/fractalshades/utils.py -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/cmap_REF/black_yellow_black.cbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/cmap_REF/black_yellow_black.cbar.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/cmap_REF/red_yellow_black.cbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/cmap_REF/red_yellow_black.cbar.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Color_layer_cont_iter.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Color_layer_cont_iter.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Color_layer_cont_iter_lighted.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Color_layer_cont_iter_lighted.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Color_layer_cont_iter_twinned.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Color_layer_cont_iter_twinned.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Color_layer_curve1.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Color_layer_curve1.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Color_layer_curve2.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Color_layer_curve2.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Color_layer_curve3.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Color_layer_curve3.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Color_layer_curve4.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Color_layer_curve4.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Color_layer_overlay1.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Color_layer_overlay1.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Color_layer_tint_or_shade1.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Color_layer_tint_or_shade1.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Color_layer_tint_or_shade2.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Color_layer_tint_or_shade2.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Color_layer_tint_or_shade3.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Color_layer_tint_or_shade3.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Grey_layer_field_lines_grey.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Grey_layer_field_lines_grey.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Normal_map_layer_DEM_map-1.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Normal_map_layer_DEM_map-1.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Normal_map_layer_DEM_map-2.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Normal_map_layer_DEM_map-2.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/layers_REF/Normal_map_layer_DEM_map.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/layers_REF/Normal_map_layer_DEM_map.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/Color_layer_test_M2_E20_potential_Xr_complex128.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/Color_layer_test_M2_E20_potential_Xr_complex128.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/Color_layer_test_M2_E20_potential_complex128.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/Color_layer_test_M2_E20_potential_complex128.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/Color_layer_test_M2_E213_potential_tlaloc.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/Color_layer_test_M2_E213_potential_tlaloc.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/Color_layer_test_M2_int_E11_potential_1e-06BLA.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/Color_layer_test_M2_int_E11_potential_1e-06BLA.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/Color_layer_test_M2_int_E11_potential_noBLA.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/Color_layer_test_M2_int_E11_potential_noBLA.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/Color_layer_test_deep_interior_detect_potential_deep_interior.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/Color_layer_test_deep_interior_detect_potential_deep_interior.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/Color_layer_test_glitch_divref5_potential_fail5.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/Color_layer_test_glitch_divref5_potential_fail5.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/Color_layer_test_glitch_divref_potential_fail2.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/Color_layer_test_glitch_divref_potential_fail2.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/Color_layer_test_glitch_dyn_potential_flake.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/Color_layer_test_glitch_dyn_potential_flake.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/Color_layer_test_supersampling_potential_2-2.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/Color_layer_test_supersampling_potential_2-2.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/Color_layer_test_ultradeep_interior_detect_potential_ultradeep_interior.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/Color_layer_test_ultradeep_interior_detect_potential_ultradeep_interior.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/flake/dev.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/flake/dev.params -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/flake/dev_pt0.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/flake/dev_pt0.ref -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/perturb_REF/flake/dev_pt0.sa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/perturb_REF/flake/dev_pt0.sa -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/subset_REF/Color_layer_attr.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/subset_REF/Color_layer_attr.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/subset_REF/Color_layer_order.REF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/subset_REF/Color_layer_order.REF.png -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/xdata_REF/data/64SA_pt0.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/xdata_REF/data/64SA_pt0.ref -------------------------------------------------------------------------------- /tests/REFERENCE_DATA/xdata_REF/data/ref_pt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/REFERENCE_DATA/xdata_REF/data/ref_pt.dat -------------------------------------------------------------------------------- /tests/test_FP_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_FP_loop.py -------------------------------------------------------------------------------- /tests/test_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_colors.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_db.py -------------------------------------------------------------------------------- /tests/test_exp_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_exp_db.py -------------------------------------------------------------------------------- /tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_filters.py -------------------------------------------------------------------------------- /tests/test_interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_interpolate.py -------------------------------------------------------------------------------- /tests/test_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_layers.py -------------------------------------------------------------------------------- /tests/test_memmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_memmap.py -------------------------------------------------------------------------------- /tests/test_mpmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_mpmath.py -------------------------------------------------------------------------------- /tests/test_mproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_mproc.py -------------------------------------------------------------------------------- /tests/test_numba_xr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_numba_xr.py -------------------------------------------------------------------------------- /tests/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_parallel.py -------------------------------------------------------------------------------- /tests/test_perturbation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_perturbation.py -------------------------------------------------------------------------------- /tests/test_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_pickle.py -------------------------------------------------------------------------------- /tests/test_postproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_postproc.py -------------------------------------------------------------------------------- /tests/test_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_subset.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_xrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/tests/test_xrange.py -------------------------------------------------------------------------------- /win_build/build_requirements.txt: -------------------------------------------------------------------------------- 1 | setuptools>=42 2 | wheel 3 | Cython 4 | numpy>=2.0,<3 5 | -------------------------------------------------------------------------------- /win_build/dll2lib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/win_build/dll2lib.bat -------------------------------------------------------------------------------- /win_build/gmpy2_headers/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/win_build/gmpy2_headers/COPYING -------------------------------------------------------------------------------- /win_build/gmpy2_headers/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/win_build/gmpy2_headers/COPYING.LESSER -------------------------------------------------------------------------------- /win_build/gmpy2_headers/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/win_build/gmpy2_headers/gmp.h -------------------------------------------------------------------------------- /win_build/gmpy2_headers/gmpy2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/win_build/gmpy2_headers/gmpy2.h -------------------------------------------------------------------------------- /win_build/gmpy2_headers/mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/win_build/gmpy2_headers/mpc.h -------------------------------------------------------------------------------- /win_build/gmpy2_headers/mpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/win_build/gmpy2_headers/mpfr.h -------------------------------------------------------------------------------- /win_build/patch_gmpy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBillotey/Fractalshades/HEAD/win_build/patch_gmpy2.py --------------------------------------------------------------------------------