├── .clang-format ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── bug_report_form.yml │ ├── feature_request.md │ └── old-slic3r-issue-template.md └── workflows │ ├── ccpp_mac.yml │ ├── ccpp_mac_arm.yml │ ├── ccpp_mac_arm_debug.yml │ ├── ccpp_mac_arm_rc.yml │ ├── ccpp_mac_debug.yml │ ├── ccpp_mac_rc.yml │ ├── ccpp_ubuntu_gtk2.yml │ ├── ccpp_ubuntu_gtk2_debug.yml │ ├── ccpp_ubuntu_gtk2_rc.yml │ ├── ccpp_ubuntu_gtk3.yml │ ├── ccpp_ubuntu_gtk3_debug.yml │ ├── ccpp_ubuntu_gtk3_rc.yml │ ├── ccpp_win.yml │ ├── ccpp_win_debug.yml │ └── ccpp_win_rc.yml ├── .gitignore ├── .gitmodules ├── BuildLinux.sh ├── BuildMacOS.sh ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── SECURITY.md ├── cmake ├── modules │ ├── AddCMakeProject.cmake │ ├── CheckAtomic.cmake │ ├── FindCURL.cmake │ ├── FindDBus.cmake │ ├── FindEXPAT.cmake │ ├── FindEigen3.cmake │ ├── FindGLEW.cmake │ ├── FindGTK3.cmake │ ├── FindNLopt.cmake │ ├── FindOpenVDB.cmake │ ├── FindPackageHandleStandardArgs_SLIC3R.cmake │ ├── FindPackageMessage_SLIC3R.cmake │ ├── FindTBB.cmake │ ├── FindTBB.cmake.in │ ├── Findcereal.cmake │ ├── FindwxWidgets.cmake │ ├── LibFindMacros.cmake │ ├── OpenVDBUtils.cmake │ ├── PrecompiledHeader.cmake │ ├── SelectLibraryConfigurations_SLIC3R.cmake │ ├── UsewxWidgets.cmake │ └── bin2h.cmake └── msvc │ └── xs.wperl.props.in ├── create_release.py ├── deps ├── +Blosc │ └── Blosc.cmake ├── +Boost │ └── Boost.cmake ├── +CGAL │ ├── CGAL.cmake │ └── cgal │ │ └── CGALConfigVersion.cmake ├── +CURL │ └── CURL.cmake ├── +Catch2 │ └── Catch2.cmake ├── +Cereal │ └── Cereal.cmake ├── +EXPAT │ └── EXPAT.cmake ├── +GLEW │ └── GLEW.cmake ├── +GMP │ ├── GMP.cmake │ └── gmp │ │ ├── gmp.COPYING │ │ ├── gmp.README │ │ ├── include │ │ └── gmp.h │ │ └── lib │ │ ├── win32 │ │ ├── libgmp-10.dll │ │ └── libgmp-10.lib │ │ └── win64 │ │ ├── libgmp-10.dll │ │ └── libgmp-10.lib ├── +JPEG │ └── JPEG.cmake ├── +LibBGCode │ └── LibBGCode.cmake ├── +MPFR │ ├── MPFR.cmake │ └── mpfr │ │ ├── include │ │ ├── mpf2mpfr.h │ │ └── mpfr.h │ │ ├── lib │ │ ├── win32 │ │ │ ├── libmpfr-4.dll │ │ │ └── libmpfr-4.lib │ │ └── win64 │ │ │ ├── libmpfr-4.dll │ │ │ └── libmpfr-4.lib │ │ ├── mpfr.COPYING │ │ ├── mpfr.COPYING.LESSER │ │ └── mpfr.README ├── +NLopt │ └── NLopt.cmake ├── +NanoSVG │ └── NanoSVG.cmake ├── +OCCT │ ├── OCCT.cmake │ └── occt_toolkit.cmake ├── +OpenCSG │ ├── CMakeLists.txt.in │ └── OpenCSG.cmake ├── +OpenEXR │ ├── OpenEXR.cmake │ └── OpenEXR.patch ├── +OpenSSL │ └── OpenSSL.cmake ├── +OpenVDB │ └── OpenVDB.cmake ├── +PNG │ ├── CMakeLists.txt.patched │ ├── PNG.cmake │ └── PNG.patch ├── +Qhull │ └── Qhull.cmake ├── +TBB │ └── TBB.cmake ├── +ZLIB │ ├── 0001-Respect-BUILD_SHARED_LIBS.patch │ └── ZLIB.cmake ├── +heatshrink │ ├── CMakeLists.txt │ ├── Config.cmake.in │ └── heatshrink.cmake ├── +wxWidgets │ └── wxWidgets.cmake ├── CMakeLists.txt ├── CMakePresets.json ├── Qhull │ └── Qhull.patch ├── README.md └── autobuild.cmake ├── doc ├── Dependencies.md ├── How to build - Linux et al.md ├── How to build - Mac OS.md ├── How to build - Windows.md ├── How to create a vendor profiles.md ├── Localization_guide.md ├── images │ └── long_text_on_button.png ├── seam_placement │ └── corner_penalty_function.png └── updating │ ├── Updating.md │ ├── setting_mod.png │ ├── setting_sys.png │ ├── setting_user.png │ └── snapshots_dialog.png ├── resources ├── calibration │ ├── bed_leveling │ │ ├── bed_leveling.html │ │ ├── es_bed_leveling.html │ │ ├── fr_bed_leveling.html │ │ ├── good.jpg │ │ ├── high.jpg │ │ ├── high_h.jpg │ │ ├── high_hh.jpg │ │ ├── low.jpg │ │ ├── low_l.jpg │ │ ├── low_ll.jpg │ │ └── patch.amf │ ├── bridge_flow │ │ ├── bridge_flow.html │ │ ├── bridge_test.amf │ │ ├── es_bridge_flow.html │ │ ├── f100.amf │ │ ├── f105.amf │ │ ├── f110.amf │ │ ├── f115.amf │ │ ├── f120.amf │ │ ├── f125.amf │ │ ├── f130.amf │ │ ├── f135.amf │ │ ├── f140.amf │ │ ├── f145.amf │ │ ├── f150.amf │ │ ├── f155.amf │ │ ├── f160.amf │ │ ├── f165.amf │ │ ├── f170.amf │ │ ├── f175.amf │ │ ├── f20.amf │ │ ├── f25.amf │ │ ├── f30.amf │ │ ├── f35.amf │ │ ├── f40.amf │ │ ├── f45.amf │ │ ├── f50.amf │ │ ├── f55.amf │ │ ├── f60.amf │ │ ├── f65.amf │ │ ├── f70.amf │ │ ├── f75.amf │ │ ├── f80.amf │ │ ├── f85.amf │ │ ├── f90.amf │ │ ├── f95.amf │ │ └── fr_bridge_flow.html │ ├── calibration_cube.amf │ ├── cube │ │ ├── LICENCE.txt │ │ ├── cube.html │ │ ├── es_cube.html │ │ ├── fr_cube.html │ │ ├── voron_design_cube_v7.amf │ │ └── xyzCalibration_cube.amf │ ├── es_introduction.html │ ├── extruder_flow │ │ ├── extruder_flow.html │ │ ├── first_flow_graph.jpg │ │ ├── overlap_graph.jpg │ │ ├── second_flow_graph.jpg │ │ └── speed_graph.jpg │ ├── filament_flow │ │ ├── 0_v1.jpg │ │ ├── 0_v2.jpg │ │ ├── O.amf │ │ ├── _0.amf │ │ ├── es_filament_flow.html │ │ ├── filament_flow.html │ │ ├── filament_flow_test_cube.amf │ │ ├── fr_filament_flow.html │ │ ├── m10.amf │ │ ├── m10.jpg │ │ ├── m2.amf │ │ ├── m2.jpg │ │ ├── m20.amf │ │ ├── m20.jpg │ │ ├── m4.amf │ │ ├── m4.jpg │ │ ├── m6.amf │ │ ├── m6.jpg │ │ ├── m8.amf │ │ ├── m8.jpg │ │ ├── p10.amf │ │ ├── p10.jpg │ │ ├── p20.amf │ │ └── p20.jpg │ ├── filament_pressure │ │ ├── 0.3mf │ │ ├── 1.3mf │ │ ├── 2.3mf │ │ ├── 3.3mf │ │ ├── 4.3mf │ │ ├── 5.3mf │ │ ├── 6.3mf │ │ ├── 7.3mf │ │ ├── 8.3mf │ │ ├── 9.3mf │ │ ├── base_plate.3mf │ │ ├── filament_pressure.html │ │ ├── pa_border.3mf │ │ ├── point.3mf │ │ └── scaled_with_nozzle_size │ │ │ ├── 90_bend_0.10.3mf │ │ │ ├── 90_bend_0.20.3mf │ │ │ ├── 90_bend_0.30.3mf │ │ │ ├── 90_bend_0.40.3mf │ │ │ ├── 90_bend_0.50.3mf │ │ │ ├── 90_bend_0.60.3mf │ │ │ ├── 90_bend_0.70.3mf │ │ │ ├── 90_bend_0.80.3mf │ │ │ ├── 90_bend_0.90.3mf │ │ │ ├── 90_bend_1.00.3mf │ │ │ ├── 90_bend_1.10.3mf │ │ │ ├── 90_bend_1.20.3mf │ │ │ ├── 90_bend_1.30.3mf │ │ │ ├── 90_bend_1.40.3mf │ │ │ ├── 90_bend_1.50.3mf │ │ │ ├── 90_bend_1.60.3mf │ │ │ ├── 90_bend_1.70.3mf │ │ │ ├── 90_bend_1.80.3mf │ │ │ ├── 90_bend_1.90.3mf │ │ │ └── 90_bend_2.00.3mf │ ├── filament_temp │ │ ├── LICENCE.txt │ │ ├── Smart_compact_temperature_calibration_item.amf │ │ ├── es_filament_temp.html │ │ ├── filament_temp.html │ │ ├── fr_filament_temp.html │ │ ├── t180.amf │ │ ├── t185.amf │ │ ├── t190.amf │ │ ├── t195.amf │ │ ├── t200.amf │ │ ├── t205.amf │ │ ├── t210.amf │ │ ├── t215.amf │ │ ├── t220.amf │ │ ├── t225.amf │ │ ├── t230.amf │ │ ├── t235.amf │ │ ├── t240.amf │ │ ├── t245.amf │ │ ├── t250.amf │ │ ├── t255.amf │ │ ├── t260.amf │ │ ├── t265.amf │ │ ├── t270.amf │ │ ├── t275.amf │ │ ├── t280.amf │ │ ├── t285.amf │ │ ├── temp_tower.jpg │ │ ├── temp_tower_180.jpg │ │ ├── temp_tower_195.jpg │ │ ├── temp_tower_210.jpg │ │ ├── temp_tower_225.jpg │ │ ├── temp_tower_240.jpg │ │ └── to_break.amf │ ├── fr_introduction.html │ ├── introduction.html │ ├── over-bridge_tuning │ │ ├── 100.jpg │ │ ├── 105.jpg │ │ ├── 110.jpg │ │ ├── 115.jpg │ │ ├── 120.jpg │ │ ├── 125.jpg │ │ ├── es_over-bridge_tuning.html │ │ ├── fr_over-bridge_tuning.html │ │ ├── over-bridge_flow_ratio_test.amf │ │ └── over-bridge_tuning.html │ └── retraction │ │ ├── es_retraction.html │ │ ├── fr_retraction.html │ │ ├── retraction.html │ │ ├── retraction.jpg │ │ ├── retraction_calibration.amf │ │ └── retraction_calibration_pillar.amf ├── data │ ├── embossed_text.obj │ └── hints.ini ├── fonts │ ├── NotoSans-Regular.ttf │ ├── NotoSansCJK-Regular.ttc │ └── README.txt ├── icons │ ├── Pmetal_001.png │ ├── SuperSlicer-console.ico │ ├── SuperSlicer-gcodeviewer-mac_128px.png │ ├── SuperSlicer-gcodeviewer.ico │ ├── SuperSlicer-gcodeviewer.svg │ ├── SuperSlicer-gcodeviewer_128px.png │ ├── SuperSlicer-gcodeviewer_192px.png │ ├── SuperSlicer-gcodeviewer_32px.png │ ├── SuperSlicer.icns │ ├── SuperSlicer.ico │ ├── SuperSlicer.png │ ├── SuperSlicer.svg │ ├── SuperSlicer_128px.png │ ├── SuperSlicer_192px.png │ ├── SuperSlicer_192px_transparent.png │ ├── SuperSlicer_256_icns.png │ ├── SuperSlicer_32px.png │ ├── add.svg │ ├── add_brim.svg │ ├── add_brim_negative.svg │ ├── add_brim_patch.svg │ ├── add_copies.svg │ ├── add_gcode.svg │ ├── add_modifier.svg │ ├── add_negative.svg │ ├── add_part.svg │ ├── add_seam.svg │ ├── add_text_modifier.svg │ ├── add_text_negative.svg │ ├── add_text_part.svg │ ├── advanced_plus.svg │ ├── align_horizontal_center.svg │ ├── align_horizontal_left.svg │ ├── align_horizontal_right.svg │ ├── align_vertical_bottom.svg │ ├── align_vertical_center.svg │ ├── align_vertical_top.svg │ ├── arrange.svg │ ├── attention.svg │ ├── browse.svg │ ├── bullet_black.png │ ├── bullet_blue.png │ ├── bullet_white.png │ ├── burn.svg │ ├── cancel.svg │ ├── change_extruder.svg │ ├── check_off.svg │ ├── check_off_disabled.svg │ ├── check_off_focused.svg │ ├── check_on.svg │ ├── check_on_disabled.svg │ ├── check_on_focused.svg │ ├── checked.svg │ ├── cog.svg │ ├── cog_.svg │ ├── cog_go.png │ ├── collapse.svg │ ├── collapse_btn.svg │ ├── colorchange_add.svg │ ├── colorchange_add_f.svg │ ├── colorchange_add_m.svg │ ├── colorchange_del.svg │ ├── colorchange_del_f.svg │ ├── compare.svg │ ├── convert_file.svg │ ├── cooling.svg │ ├── copy.svg │ ├── copy_menu.svg │ ├── cross.svg │ ├── cross_focus.svg │ ├── cross_focus_large.svg │ ├── custom-gcode_gcode.svg │ ├── custom-gcode_measure.svg │ ├── custom-gcode_object-info.svg │ ├── custom-gcode_single.svg │ ├── custom-gcode_slicing-state.svg │ ├── custom-gcode_slicing-state_global.svg │ ├── custom-gcode_stats.svg │ ├── custom-gcode_vector-index.svg │ ├── custom-gcode_vector.svg │ ├── cut.svg │ ├── cut_.svg │ ├── cut_connectors.svg │ ├── delete.svg │ ├── delete_all.svg │ ├── delete_all_menu.svg │ ├── dot.svg │ ├── dot_small.svg │ ├── dot_white.svg │ ├── dowel.svg │ ├── drop_down.svg │ ├── drop_to_bed.svg │ ├── edit.svg │ ├── edit_button.svg │ ├── edit_button_pressed.svg │ ├── edit_gcode.svg │ ├── edit_gcode_f.svg │ ├── edit_layers_all.svg │ ├── edit_layers_some.svg │ ├── edit_uni.svg │ ├── editor.svg │ ├── editor_menu.svg │ ├── eject_sd.svg │ ├── empty.svg │ ├── equal.svg │ ├── error_tick.svg │ ├── error_tick_f.svg │ ├── exclamation.svg │ ├── exclamation_manifold.svg │ ├── exit.svg │ ├── expand_btn.svg │ ├── explanation_spacing.svg │ ├── explanation_width.svg │ ├── export_config.svg │ ├── export_config_bundle.svg │ ├── export_gcode.svg │ ├── export_plater.svg │ ├── export_prusa_config.svg │ ├── export_to_sd.svg │ ├── eye_closed.svg │ ├── eye_open.svg │ ├── fdm_supports.svg │ ├── fdm_supports_.svg │ ├── flag_green.svg │ ├── flag_red.svg │ ├── freecad.svg │ ├── funnel.svg │ ├── fuzzy_skin.svg │ ├── gcode.icns │ ├── hollow.svg │ ├── hollowing.svg │ ├── import_config.svg │ ├── import_config_bundle.svg │ ├── import_plater.svg │ ├── import_prusa_config.svg │ ├── import_prusa_config_bundle.svg │ ├── infill.svg │ ├── info.svg │ ├── instance_add.svg │ ├── instance_remove.svg │ ├── instances.svg │ ├── ironing.svg │ ├── layers.svg │ ├── layers_white.svg │ ├── legend_cog.svg │ ├── legend_colorchanges.svg │ ├── legend_customgcodes.svg │ ├── legend_deretract.svg │ ├── legend_pauseprints.svg │ ├── legend_retract.svg │ ├── legend_seams.svg │ ├── legend_shells.svg │ ├── legend_toolchanges.svg │ ├── legend_toolmarker.svg │ ├── legend_travel.svg │ ├── legend_wipe.svg │ ├── lock.svg │ ├── lock_closed.svg │ ├── lock_closed_f.svg │ ├── lock_closed_white.svg │ ├── lock_open.svg │ ├── lock_open_f.svg │ ├── lock_open_sys.svg │ ├── make_bold.svg │ ├── make_italic.svg │ ├── make_unbold.svg │ ├── make_unitalic.svg │ ├── mark_X.svg │ ├── mark_Y.svg │ ├── mark_Z.svg │ ├── measure.svg │ ├── milling.svg │ ├── mirroring_off.svg │ ├── mirroring_on.svg │ ├── mirroring_transparent.svg │ ├── mmu_segmentation.svg │ ├── mmu_segmentation_.svg │ ├── mode.svg │ ├── mode_advanced.svg │ ├── mode_expert.svg │ ├── mode_simple.svg │ ├── move.svg │ ├── not_equal.svg │ ├── note.svg │ ├── notification_cancel.svg │ ├── notification_cancel_hover.svg │ ├── notification_clippy.svg │ ├── notification_close.svg │ ├── notification_close_hover.svg │ ├── notification_documentation.svg │ ├── notification_documentation_hover.svg │ ├── notification_eject_sd.svg │ ├── notification_eject_sd_hover.svg │ ├── notification_error.svg │ ├── notification_info.svg │ ├── notification_minimalize.svg │ ├── notification_minimalize_hover.svg │ ├── notification_open.svg │ ├── notification_open_hover.svg │ ├── notification_pause.svg │ ├── notification_pause_hover.svg │ ├── notification_play.svg │ ├── notification_play_hover.svg │ ├── notification_preferences.svg │ ├── notification_preferences_hover.svg │ ├── notification_right.svg │ ├── notification_right_hover.svg │ ├── notification_warning.svg │ ├── number_of_copies.svg │ ├── objlist_info.svg │ ├── open.svg │ ├── open_browser.svg │ ├── output+page_white.svg │ ├── pad.svg │ ├── paste.svg │ ├── paste_menu.svg │ ├── pause_print.svg │ ├── pause_print_f.svg │ ├── place.svg │ ├── plater.svg │ ├── plug.svg │ ├── preview.svg │ ├── preview_menu.svg │ ├── printer.svg │ ├── printer_cog.svg │ ├── printer_placeholder.png │ ├── printer_white.svg │ ├── question.svg │ ├── re_slice.svg │ ├── redo.svg │ ├── redo_menu.svg │ ├── redo_toolbar.svg │ ├── reflection_x.svg │ ├── reflection_y.svg │ ├── refresh.svg │ ├── remove.svg │ ├── remove_copies.svg │ ├── remove_menu.svg │ ├── resin.svg │ ├── resin_cog.svg │ ├── revert_all_.svg │ ├── rotate.svg │ ├── save.svg │ ├── save_as.svg │ ├── scalar_param.svg │ ├── scale.svg │ ├── seam.svg │ ├── seam_.svg │ ├── search.svg │ ├── search_.svg │ ├── search_blink.svg │ ├── search_gray.svg │ ├── set_separate_obj.svg │ ├── settings.svg │ ├── shape_gallery.svg │ ├── shell.svg │ ├── sinking.svg │ ├── skirt+brim.svg │ ├── sla_printer.svg │ ├── sla_printer_cog.svg │ ├── sla_supports.svg │ ├── sla_view_original.svg │ ├── sla_view_processed.svg │ ├── snap.svg │ ├── spin_dec.svg │ ├── spin_dec_act.svg │ ├── spin_inc.svg │ ├── spin_inc_act.svg │ ├── splashscreen.jpg │ ├── split_object_SMALL.svg │ ├── split_objects.svg │ ├── split_parts.svg │ ├── split_parts_SMALL.svg │ ├── spool.svg │ ├── spool_cog.svg │ ├── stl.icns │ ├── support.svg │ ├── support_blocker.svg │ ├── support_enforcer.svg │ ├── svg_modifier.svg │ ├── svg_negative.svg │ ├── svg_part.svg │ ├── switch_presets.svg │ ├── test.svg │ ├── text_part.svg │ ├── thumb_down.svg │ ├── thumb_left.svg │ ├── thumb_right.svg │ ├── thumb_up.svg │ ├── tick_mark.svg │ ├── time.svg │ ├── timer_dot.svg │ ├── timer_dot_empty.svg │ ├── toggle_off.svg │ ├── toggle_on.svg │ ├── toolbar_arrow.svg │ ├── toolbar_arrow_2.svg │ ├── toolbar_background.png │ ├── toolbar_orient.svg │ ├── undo.svg │ ├── undo_menu.svg │ ├── undo_toolbar.svg │ ├── upload_queue.svg │ ├── vector_filament_param.svg │ ├── vector_param.svg │ ├── width.svg │ ├── wrench.svg │ └── wrench_white.svg ├── localization │ ├── README.md │ ├── be │ │ └── PrusaSlicer_be.po │ ├── ca │ │ ├── PrusaSlicer_ca.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── ca_database.po │ │ └── settings.ini │ ├── cs │ │ ├── PrusaSlicer_cs.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── cs_database.po │ │ └── settings.ini │ ├── de │ │ ├── PrusaSlicer_de.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── de_database.po │ │ └── settings.ini │ ├── en │ │ ├── PrusaSlicer_en.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── en_database.po │ │ └── settings.ini │ ├── es │ │ ├── PrusaSlicer_es.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── es_database.po │ │ └── settings.ini │ ├── fi │ │ └── PrusaSlicer_fi.po │ ├── fr │ │ ├── PrusaSlicer_fr.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── fr_database.po │ │ └── settings.ini │ ├── hu │ │ ├── PrusaSlicer_hu.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── hu_database.po │ │ └── settings.ini │ ├── it │ │ ├── PrusaSlicer_it.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── it_database.po │ │ └── settings.ini │ ├── ja │ │ ├── PrusaSlicer_ja.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── ja_database.po │ │ └── settings.ini │ ├── ko │ │ ├── PrusaSlicer_ko_KR.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── ko_database.po │ │ └── settings.ini │ ├── ko_KR │ │ ├── PrusaSlicer_ko.po │ │ ├── PrusaSlicer_ko_KR.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── ko_KR_database.po │ │ └── settings.ini │ ├── list.txt │ ├── nl │ │ ├── PrusaSlicer_nl.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── nl_database.po │ │ └── settings.ini │ ├── pl │ │ ├── PrusaSlicer_pl.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── pl_database.po │ │ └── settings.ini │ ├── pom_merger.py │ ├── pt_BR │ │ ├── PrusaSlicer_pt_BR.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── pt_BR_database.po │ │ └── settings.ini │ ├── ru │ │ ├── PrusaSlicer_ru.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── ru_database.po │ │ └── settings.ini │ ├── settings.ini │ ├── tr │ │ ├── PrusaSlicer_tr.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── settings.ini │ │ └── tr_database.po │ ├── uk │ │ ├── PrusaSlicer_uk.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── settings.ini │ │ └── uk_database.po │ ├── update_all.py │ ├── wx_locale │ │ ├── af.po │ │ ├── an.po │ │ ├── ar.po │ │ ├── be.po │ │ ├── ca.po │ │ ├── ca@valencia.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── el.po │ │ ├── en.mo │ │ ├── en.po │ │ ├── es.po │ │ ├── eu.po │ │ ├── fa_IR.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── gl_ES.po │ │ ├── hi.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── id.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ko.po │ │ ├── ko_KR.po │ │ ├── lt.po │ │ ├── lv.po │ │ ├── ms.po │ │ ├── nb.po │ │ ├── ne.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sk.po │ │ ├── sl.po │ │ ├── sq.po │ │ ├── sv.po │ │ ├── ta.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ ├── zh_CN │ │ ├── PrusaSlicer_zh_CN.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── settings.ini │ │ └── zh_CN_database.po │ └── zh_TW_copy │ │ ├── PrusaSlicer_zh_TW.po │ │ ├── Slic3r.po │ │ ├── TODO.po │ │ ├── settings.ini │ │ └── zh_TW_database.po ├── shaders │ ├── 110 │ │ ├── background.fs │ │ ├── background.vs │ │ ├── flat.fs │ │ ├── flat.vs │ │ ├── flat_clip.fs │ │ ├── flat_clip.vs │ │ ├── flat_texture.fs │ │ ├── flat_texture.vs │ │ ├── gouraud.fs │ │ ├── gouraud.vs │ │ ├── gouraud_light.fs │ │ ├── gouraud_light.vs │ │ ├── gouraud_light_clip.fs │ │ ├── gouraud_light_clip.vs │ │ ├── gouraud_light_instanced.fs │ │ ├── gouraud_light_instanced.vs │ │ ├── imgui.fs │ │ ├── imgui.vs │ │ ├── mm_contour.fs │ │ ├── mm_contour.vs │ │ ├── mm_gouraud.fs │ │ ├── mm_gouraud.vs │ │ ├── printbed.fs │ │ ├── printbed.vs │ │ ├── toolpaths_cog.fs │ │ ├── toolpaths_cog.vs │ │ ├── variable_layer_height.fs │ │ └── variable_layer_height.vs │ ├── 140 │ │ ├── background.fs │ │ ├── background.vs │ │ ├── dashed_thick_lines.fs │ │ ├── dashed_thick_lines.gs │ │ ├── dashed_thick_lines.vs │ │ ├── flat.fs │ │ ├── flat.vs │ │ ├── flat_clip.fs │ │ ├── flat_clip.vs │ │ ├── flat_texture.fs │ │ ├── flat_texture.vs │ │ ├── gouraud.fs │ │ ├── gouraud.vs │ │ ├── gouraud_light.fs │ │ ├── gouraud_light.vs │ │ ├── gouraud_light_clip.fs │ │ ├── gouraud_light_clip.vs │ │ ├── gouraud_light_instanced.fs │ │ ├── gouraud_light_instanced.vs │ │ ├── imgui.fs │ │ ├── imgui.vs │ │ ├── mm_contour.fs │ │ ├── mm_contour.vs │ │ ├── mm_gouraud.fs │ │ ├── mm_gouraud.vs │ │ ├── printbed.fs │ │ ├── printbed.vs │ │ ├── toolpaths_cog.fs │ │ ├── toolpaths_cog.vs │ │ ├── variable_layer_height.fs │ │ └── variable_layer_height.vs │ └── ES │ │ ├── background.fs │ │ ├── background.vs │ │ ├── dashed_lines.fs │ │ ├── dashed_lines.vs │ │ ├── flat.fs │ │ ├── flat.vs │ │ ├── flat_clip.fs │ │ ├── flat_clip.vs │ │ ├── flat_texture.fs │ │ ├── flat_texture.vs │ │ ├── gouraud.fs │ │ ├── gouraud.vs │ │ ├── gouraud_light.fs │ │ ├── gouraud_light.vs │ │ ├── gouraud_light_clip.fs │ │ ├── gouraud_light_clip.vs │ │ ├── gouraud_light_instanced.fs │ │ ├── gouraud_light_instanced.vs │ │ ├── imgui.fs │ │ ├── imgui.vs │ │ ├── mm_contour.fs │ │ ├── mm_contour.vs │ │ ├── mm_gouraud.fs │ │ ├── mm_gouraud.vs │ │ ├── printbed.fs │ │ ├── printbed.vs │ │ ├── toolpaths_cog.fs │ │ ├── toolpaths_cog.vs │ │ ├── variable_layer_height.fs │ │ ├── variable_layer_height.vs │ │ ├── wireframe.fs │ │ └── wireframe.vs ├── shapes │ ├── 3DBenchy.png │ ├── 3DBenchy.stl │ ├── M3_hex_nut.png │ ├── M3_hex_nut.stl │ ├── M3x10_screw.png │ ├── M3x10_screw.stl │ ├── OTHER_recycling_symbol.png │ ├── OTHER_recycling_symbol.stl │ ├── PETG_recycling_symbol.png │ ├── PETG_recycling_symbol.stl │ ├── PLA_recycling_symbol.png │ ├── PLA_recycling_symbol.stl │ ├── box.png │ ├── box.stl │ ├── bunny.png │ ├── bunny.stl │ ├── cone.png │ ├── cone.stl │ ├── cylinder.png │ ├── cylinder.stl │ ├── helper_disk.png │ ├── helper_disk.stl │ ├── pyramid.png │ ├── pyramid.stl │ ├── sign_base.png │ ├── sign_base.stl │ ├── sign_base_rounded.png │ ├── sign_base_rounded.stl │ ├── sphere.png │ ├── sphere.stl │ ├── torus.png │ ├── torus.stl │ ├── universal wall mount hole.png │ └── universal wall mount hole.stl ├── splashscreen │ ├── benchy-splashscreen.jpg │ ├── cars.jpg │ ├── da_fish.jpg │ ├── prusa-gcodepreview.jpg │ └── vector_finesse.jpg ├── udev │ └── 90-3dconnexion.rules └── ui_layout │ ├── Readme.md │ └── default │ ├── colors.ini │ ├── extruder.ui │ ├── filament.ui │ ├── filament_override.ui │ ├── freq_fff.as │ ├── freq_fff.ui │ ├── freq_sla.as │ ├── freq_sla.ui │ ├── material_override.ui │ ├── milling.ui │ ├── print.as │ ├── print.ui │ ├── printer_fff.ui │ ├── printer_sla.ui │ ├── sla_material.ui │ ├── sla_print.ui │ └── version.ini ├── sandboxes ├── CMakeLists.txt ├── aabb-evaluation │ ├── CMakeLists.txt │ └── aabb-evaluation.cpp ├── its_neighbor_index │ ├── CMakeLists.txt │ ├── ItsNeighborIndex.cpp │ ├── ItsNeighborIndex.hpp │ └── main.cpp ├── meshboolean │ ├── CMakeLists.txt │ └── MeshBoolean.cpp ├── opencsg │ ├── CMakeLists.txt │ ├── Engine.cpp │ ├── Engine.hpp │ ├── ShaderCSGDisplay.cpp │ ├── ShaderCSGDisplay.hpp │ └── main.cpp ├── openvdb │ ├── CMakeLists.txt │ └── openvdb_example.cpp ├── print_arrange_polys │ ├── CMakeLists.txt │ └── main.cpp ├── slasupporttree │ ├── CMakeLists.txt │ └── slasupporttree.cpp └── wx_gl_test │ ├── CMakeLists.txt │ └── main.cpp ├── src ├── CMakeLists.txt ├── PrusaSlicer.cpp ├── PrusaSlicer.hpp ├── PrusaSlicer_app_msvc.cpp ├── admesh │ ├── CMakeLists.txt │ ├── connect.cpp │ ├── normals.cpp │ ├── shared.cpp │ ├── stl.h │ ├── stl_io.cpp │ ├── stlinit.cpp │ └── util.cpp ├── agg │ ├── AUTHORS │ ├── VERSION │ ├── agg_array.h │ ├── agg_basics.h │ ├── agg_bezier_arc.h │ ├── agg_clip_liang_barsky.h │ ├── agg_color_gray.h │ ├── agg_color_rgba.h │ ├── agg_config.h │ ├── agg_conv_transform.h │ ├── agg_gamma_functions.h │ ├── agg_gamma_lut.h │ ├── agg_math.h │ ├── agg_path_storage.h │ ├── agg_pixfmt_base.h │ ├── agg_pixfmt_gray.h │ ├── agg_pixfmt_rgb.h │ ├── agg_rasterizer_cells_aa.h │ ├── agg_rasterizer_scanline_aa.h │ ├── agg_rasterizer_scanline_aa_nogamma.h │ ├── agg_rasterizer_sl_clip.h │ ├── agg_renderer_base.h │ ├── agg_renderer_scanline.h │ ├── agg_rendering_buffer.h │ ├── agg_scanline_p.h │ ├── agg_trans_affine.h │ └── copying ├── angelscript │ ├── CMakeLists.txt │ ├── add_on │ │ ├── autowrapper │ │ │ ├── aswrappedcall.h │ │ │ └── generator │ │ │ │ ├── generateheader.cpp │ │ │ │ ├── generator.sln │ │ │ │ └── generator.vcproj │ │ ├── contextmgr │ │ │ ├── contextmgr.cpp │ │ │ └── contextmgr.h │ │ ├── datetime │ │ │ ├── datetime.cpp │ │ │ └── datetime.h │ │ ├── debugger │ │ │ ├── debugger.cpp │ │ │ └── debugger.h │ │ ├── scriptany │ │ │ ├── scriptany.cpp │ │ │ └── scriptany.h │ │ ├── scriptarray │ │ │ ├── scriptarray.cpp │ │ │ └── scriptarray.h │ │ ├── scriptbuilder │ │ │ ├── scriptbuilder.cpp │ │ │ └── scriptbuilder.h │ │ ├── scriptdictionary │ │ │ ├── scriptdictionary.cpp │ │ │ └── scriptdictionary.h │ │ ├── scriptfile │ │ │ ├── scriptfile.cpp │ │ │ ├── scriptfile.h │ │ │ ├── scriptfilesystem.cpp │ │ │ └── scriptfilesystem.h │ │ ├── scriptgrid │ │ │ ├── scriptgrid.cpp │ │ │ └── scriptgrid.h │ │ ├── scripthandle │ │ │ ├── scripthandle.cpp │ │ │ └── scripthandle.h │ │ ├── scripthelper │ │ │ ├── scripthelper.cpp │ │ │ └── scripthelper.h │ │ ├── scriptmath │ │ │ ├── scriptmath.cpp │ │ │ ├── scriptmath.h │ │ │ ├── scriptmathcomplex.cpp │ │ │ └── scriptmathcomplex.h │ │ ├── scriptstdstring │ │ │ ├── scriptstdstring.cpp │ │ │ ├── scriptstdstring.h │ │ │ └── scriptstdstring_utils.cpp │ │ ├── serializer │ │ │ ├── serializer.cpp │ │ │ └── serializer.h │ │ └── weakref │ │ │ ├── weakref.cpp │ │ │ └── weakref.h │ ├── cmake │ │ └── AngelscriptConfig.cmake │ ├── include │ │ └── angelscript.h │ └── source │ │ ├── as_array.h │ │ ├── as_atomic.cpp │ │ ├── as_atomic.h │ │ ├── as_builder.cpp │ │ ├── as_builder.h │ │ ├── as_bytecode.cpp │ │ ├── as_bytecode.h │ │ ├── as_callfunc.cpp │ │ ├── as_callfunc.h │ │ ├── as_callfunc_arm.cpp │ │ ├── as_callfunc_arm64.cpp │ │ ├── as_callfunc_arm64_gcc.S │ │ ├── as_callfunc_arm64_msvc.asm │ │ ├── as_callfunc_arm_gcc.S │ │ ├── as_callfunc_arm_msvc.asm │ │ ├── as_callfunc_arm_vita.S │ │ ├── as_callfunc_arm_xcode.S │ │ ├── as_callfunc_mips.cpp │ │ ├── as_callfunc_ppc.cpp │ │ ├── as_callfunc_ppc_64.cpp │ │ ├── as_callfunc_sh4.cpp │ │ ├── as_callfunc_x64_gcc.cpp │ │ ├── as_callfunc_x64_mingw.cpp │ │ ├── as_callfunc_x64_msvc.cpp │ │ ├── as_callfunc_x64_msvc_asm.asm │ │ ├── as_callfunc_x86.cpp │ │ ├── as_callfunc_xenon.cpp │ │ ├── as_compiler.cpp │ │ ├── as_compiler.h │ │ ├── as_config.h │ │ ├── as_configgroup.cpp │ │ ├── as_configgroup.h │ │ ├── as_context.cpp │ │ ├── as_context.h │ │ ├── as_criticalsection.h │ │ ├── as_datatype.cpp │ │ ├── as_datatype.h │ │ ├── as_debug.h │ │ ├── as_gc.cpp │ │ ├── as_gc.h │ │ ├── as_generic.cpp │ │ ├── as_generic.h │ │ ├── as_globalproperty.cpp │ │ ├── as_map.h │ │ ├── as_memory.cpp │ │ ├── as_memory.h │ │ ├── as_module.cpp │ │ ├── as_module.h │ │ ├── as_namespace.h │ │ ├── as_objecttype.cpp │ │ ├── as_objecttype.h │ │ ├── as_outputbuffer.cpp │ │ ├── as_outputbuffer.h │ │ ├── as_parser.cpp │ │ ├── as_parser.h │ │ ├── as_property.h │ │ ├── as_restore.cpp │ │ ├── as_restore.h │ │ ├── as_scriptcode.cpp │ │ ├── as_scriptcode.h │ │ ├── as_scriptengine.cpp │ │ ├── as_scriptengine.h │ │ ├── as_scriptfunction.cpp │ │ ├── as_scriptfunction.h │ │ ├── as_scriptnode.cpp │ │ ├── as_scriptnode.h │ │ ├── as_scriptobject.cpp │ │ ├── as_scriptobject.h │ │ ├── as_string.cpp │ │ ├── as_string.h │ │ ├── as_string_util.cpp │ │ ├── as_string_util.h │ │ ├── as_symboltable.h │ │ ├── as_texts.h │ │ ├── as_thread.cpp │ │ ├── as_thread.h │ │ ├── as_tokendef.h │ │ ├── as_tokenizer.cpp │ │ ├── as_tokenizer.h │ │ ├── as_typeinfo.cpp │ │ ├── as_typeinfo.h │ │ ├── as_variablescope.cpp │ │ └── as_variablescope.h ├── ankerl │ ├── README.txt │ └── unordered_dense.h ├── avrdude │ ├── AUTHORS │ ├── BUILD-FROM-SVN │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── ChangeLog-2001 │ ├── ChangeLog-2002 │ ├── ChangeLog-2003 │ ├── ChangeLog-2004-2006 │ ├── ChangeLog-2007 │ ├── ChangeLog-2008 │ ├── ChangeLog-2009 │ ├── ChangeLog-2010 │ ├── ChangeLog-2011 │ ├── ChangeLog-2012 │ ├── ChangeLog-2013 │ ├── ChangeLog-2014 │ ├── ChangeLog-2015 │ ├── Makefile.am │ ├── Makefile.standalone │ ├── NEWS │ ├── README │ ├── ac_cfg.h │ ├── ac_cfg.h.in │ ├── arduino.c │ ├── arduino.h │ ├── atmel-docs │ │ ├── AVR109.pdf │ │ ├── AVR910.pdf │ │ ├── AVRISPmkII-AVR069.pdf │ │ ├── EDBG │ │ │ ├── common │ │ │ │ ├── browserDetect.js │ │ │ │ ├── css │ │ │ │ │ ├── 960.css │ │ │ │ │ ├── docbook.css │ │ │ │ │ ├── fluid_grid.css │ │ │ │ │ ├── index.css │ │ │ │ │ ├── positioning.css │ │ │ │ │ ├── print.css │ │ │ │ │ ├── reset.css │ │ │ │ │ └── text.css │ │ │ │ ├── fonts │ │ │ │ │ ├── DroidSansMono.eot │ │ │ │ │ └── DroidSansMono.ttf │ │ │ │ ├── images │ │ │ │ │ ├── Book_Closed.png │ │ │ │ │ ├── Book_Open.png │ │ │ │ │ ├── Document_Text.png │ │ │ │ │ ├── Library.png │ │ │ │ │ ├── external_link.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── next-arrow.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── previous-arrow.png │ │ │ │ │ ├── search-icon.png │ │ │ │ │ ├── sidebar.png │ │ │ │ │ ├── starsSmall.png │ │ │ │ │ ├── toc-icon.png │ │ │ │ │ └── ui-icons_217bc0_256x240.png │ │ │ │ ├── jquery │ │ │ │ │ ├── jquery-1.7.2.min.js │ │ │ │ │ ├── jquery.cookie.js │ │ │ │ │ ├── jquery.ui.all.js │ │ │ │ │ ├── layout │ │ │ │ │ │ └── jquery.layout.js │ │ │ │ │ ├── theme-redmond │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── ui-anim_basic_16x16.gif │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ │ │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ │ │ │ └── jquery-ui-1.8.2.custom.css │ │ │ │ │ └── treeview │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── file.gif │ │ │ │ │ │ ├── folder-closed.gif │ │ │ │ │ │ ├── folder.gif │ │ │ │ │ │ ├── treeview-black-line.gif │ │ │ │ │ │ ├── treeview-black.gif │ │ │ │ │ │ ├── treeview-default-line.gif │ │ │ │ │ │ ├── treeview-default.gif │ │ │ │ │ │ ├── treeview-famfamfam-line.gif │ │ │ │ │ │ ├── treeview-famfamfam.gif │ │ │ │ │ │ ├── treeview-gray-line.gif │ │ │ │ │ │ ├── treeview-gray.gif │ │ │ │ │ │ ├── treeview-red-line.gif │ │ │ │ │ │ └── treeview-red.gif │ │ │ │ │ │ ├── jquery.treeview.css │ │ │ │ │ │ └── jquery.treeview.min.js │ │ │ │ ├── main.js │ │ │ │ └── splitterInit.js │ │ │ └── protocoldocs │ │ │ │ ├── ch01s01.html │ │ │ │ ├── ch01s02.html │ │ │ │ ├── ch02s01.html │ │ │ │ ├── ch02s02.html │ │ │ │ ├── ch02s02s01.html │ │ │ │ ├── ch02s02s02.html │ │ │ │ ├── ch02s02s02s01.html │ │ │ │ ├── ch02s02s02s02.html │ │ │ │ ├── ch02s02s03.html │ │ │ │ ├── ch02s02s03s01.html │ │ │ │ ├── ch02s02s03s02.html │ │ │ │ ├── ch02s02s03s03.html │ │ │ │ ├── ch02s02s03s04.html │ │ │ │ ├── ch02s03s01.html │ │ │ │ ├── ch02s03s02.html │ │ │ │ ├── ch02s03s03.html │ │ │ │ ├── ch02s03s04.html │ │ │ │ ├── ch02s03s05.html │ │ │ │ ├── ch02s03s06.html │ │ │ │ ├── ch02s03s07.html │ │ │ │ ├── ch02s03s08.html │ │ │ │ ├── ch02s03s09.html │ │ │ │ ├── ch02s04.html │ │ │ │ ├── ch02s04s01.html │ │ │ │ ├── ch02s04s02.html │ │ │ │ ├── ch02s04s03.html │ │ │ │ ├── ch03s01.html │ │ │ │ ├── ch03s01s01.html │ │ │ │ ├── ch03s01s02.html │ │ │ │ ├── ch03s01s03.html │ │ │ │ ├── ch03s01s03s01.html │ │ │ │ ├── ch03s02.html │ │ │ │ ├── ch03s02s01.html │ │ │ │ ├── ch03s02s02.html │ │ │ │ ├── ch03s02s03.html │ │ │ │ ├── ch03s02s04.html │ │ │ │ ├── ch04s01.html │ │ │ │ ├── ch04s02.html │ │ │ │ ├── ch04s03.html │ │ │ │ ├── ch04s04.html │ │ │ │ ├── ch04s04s01.html │ │ │ │ ├── ch04s04s03.html │ │ │ │ ├── ch04s04s04.html │ │ │ │ ├── ch04s04s05.html │ │ │ │ ├── ch04s05.html │ │ │ │ ├── ch04s05s01.html │ │ │ │ ├── ch04s05s03.html │ │ │ │ ├── ch04s05s04.html │ │ │ │ ├── ch04s05s06.html │ │ │ │ ├── ch04s05s06s02.html │ │ │ │ ├── ch04s05s06s03.html │ │ │ │ ├── ch04s05s06s04.html │ │ │ │ ├── ch04s05s06s05.html │ │ │ │ ├── ch04s05s07.html │ │ │ │ ├── ch04s05s07s01.html │ │ │ │ ├── ch04s05s07s02.html │ │ │ │ ├── ch04s05s07s03.html │ │ │ │ ├── ch04s05s07s04.html │ │ │ │ ├── ch04s05s08.html │ │ │ │ ├── ch04s05s08s01.html │ │ │ │ ├── ch04s05s08s02.html │ │ │ │ ├── ch04s05s08s03.html │ │ │ │ ├── ch04s05s09.html │ │ │ │ ├── ch04s05s10.html │ │ │ │ ├── ch05s01.html │ │ │ │ ├── ch05s01s01.html │ │ │ │ ├── ch05s01s02.html │ │ │ │ ├── ch05s01s03.html │ │ │ │ ├── ch05s01s04.html │ │ │ │ ├── ch05s01s05.html │ │ │ │ ├── ch05s01s06.html │ │ │ │ ├── ch05s01s07.html │ │ │ │ ├── ch05s01s08.html │ │ │ │ ├── ch05s01s09.html │ │ │ │ ├── ch05s01s10.html │ │ │ │ ├── ch05s01s11.html │ │ │ │ ├── ch05s01s12.html │ │ │ │ ├── ch05s01s13.html │ │ │ │ ├── ch05s01s14.html │ │ │ │ ├── ch05s01s15.html │ │ │ │ ├── ch05s02.html │ │ │ │ ├── ch05s02s01.html │ │ │ │ ├── ch05s02s02.html │ │ │ │ ├── ch05s02s03.html │ │ │ │ ├── ch05s02s04.html │ │ │ │ ├── ch05s02s05.html │ │ │ │ ├── ch05s02s06.html │ │ │ │ ├── ch05s03.html │ │ │ │ ├── ch05s03s01.html │ │ │ │ ├── ch05s03s02.html │ │ │ │ ├── ch05s03s03.html │ │ │ │ ├── ch05s04.html │ │ │ │ ├── ch06s01.html │ │ │ │ ├── ch06s01s01.html │ │ │ │ ├── ch06s01s02.html │ │ │ │ ├── ch06s01s03.html │ │ │ │ ├── ch06s01s04.html │ │ │ │ ├── ch06s01s05.html │ │ │ │ ├── ch06s01s06.html │ │ │ │ ├── ch06s01s07.html │ │ │ │ ├── ch06s01s08.html │ │ │ │ ├── ch06s01s09.html │ │ │ │ ├── ch06s01s10.html │ │ │ │ ├── ch06s01s11.html │ │ │ │ ├── ch06s01s12.html │ │ │ │ ├── ch06s01s13.html │ │ │ │ ├── ch06s01s14.html │ │ │ │ ├── ch06s01s15.html │ │ │ │ ├── ch06s01s16.html │ │ │ │ ├── ch06s01s17.html │ │ │ │ ├── ch06s01s18.html │ │ │ │ ├── ch06s01s19.html │ │ │ │ ├── ch06s01s20.html │ │ │ │ ├── ch06s01s21.html │ │ │ │ ├── ch06s01s22.html │ │ │ │ ├── ch06s01s23.html │ │ │ │ ├── ch06s01s24.html │ │ │ │ ├── ch06s01s25.html │ │ │ │ ├── ch06s01s26.html │ │ │ │ ├── ch06s01s27.html │ │ │ │ ├── ch06s01s28.html │ │ │ │ ├── ch06s01s29.html │ │ │ │ ├── ch06s02.html │ │ │ │ ├── ch06s02s01.html │ │ │ │ ├── ch06s02s02.html │ │ │ │ ├── ch06s02s03.html │ │ │ │ ├── ch06s02s04.html │ │ │ │ ├── ch06s02s05.html │ │ │ │ ├── ch06s03.html │ │ │ │ ├── ch06s03s01.html │ │ │ │ ├── ch06s03s02.html │ │ │ │ ├── ch06s04s01.html │ │ │ │ ├── ch06s04s02.html │ │ │ │ ├── ch06s04s03.html │ │ │ │ ├── ch06s05.html │ │ │ │ ├── ch06s05s01.html │ │ │ │ ├── ch06s05s02.html │ │ │ │ ├── ch06s05s03.html │ │ │ │ ├── ch06s05s04.html │ │ │ │ ├── ch06s05s05.html │ │ │ │ ├── ch06s06.html │ │ │ │ ├── ch07s01.html │ │ │ │ ├── ch07s01s01.html │ │ │ │ ├── ch07s01s02.html │ │ │ │ ├── ch07s01s03.html │ │ │ │ ├── ch07s01s04.html │ │ │ │ ├── ch07s01s05.html │ │ │ │ ├── ch07s01s06.html │ │ │ │ ├── ch07s01s07.html │ │ │ │ ├── ch07s01s08.html │ │ │ │ ├── ch07s01s09.html │ │ │ │ ├── ch07s01s10.html │ │ │ │ ├── ch07s01s11.html │ │ │ │ ├── ch07s01s12.html │ │ │ │ ├── ch07s01s13.html │ │ │ │ ├── ch07s01s14.html │ │ │ │ ├── ch07s01s15.html │ │ │ │ ├── ch07s01s16.html │ │ │ │ ├── ch07s01s17.html │ │ │ │ ├── ch07s02.html │ │ │ │ ├── ch07s03.html │ │ │ │ ├── ch08s01.html │ │ │ │ ├── ch08s01s01.html │ │ │ │ ├── ch08s01s02.html │ │ │ │ ├── ch08s01s03.html │ │ │ │ ├── ch08s01s04.html │ │ │ │ ├── ch08s01s05.html │ │ │ │ ├── ch08s01s06.html │ │ │ │ ├── ch08s02.html │ │ │ │ ├── ch08s03.html │ │ │ │ ├── document.revisions.html │ │ │ │ ├── index.html │ │ │ │ ├── pr01.html │ │ │ │ ├── protocoldocs.Introduction.html │ │ │ │ ├── protocoldocs.avr32protocol.html │ │ │ │ ├── protocoldocs.avr8protocol.html │ │ │ │ ├── protocoldocs.avrispprotocol.html │ │ │ │ ├── protocoldocs.avrprotocol.Overview.html │ │ │ │ ├── protocoldocs.cmsis_dap.html │ │ │ │ ├── protocoldocs.edbg_ctrl_protocol.html │ │ │ │ ├── protocoldocs.tpiprotocol.html │ │ │ │ ├── search │ │ │ │ ├── htmlFileInfoList.js │ │ │ │ ├── index-1.js │ │ │ │ ├── index-2.js │ │ │ │ ├── index-3.js │ │ │ │ ├── l10n.js │ │ │ │ ├── nwSearchFnt.js │ │ │ │ └── stemmers │ │ │ │ │ └── en_stemmer.js │ │ │ │ ├── section_avr32_memtypes.html │ │ │ │ ├── section_avr32_setget_params.html │ │ │ │ ├── section_avr8_memtypes.html │ │ │ │ ├── section_avr8_query_contexts.html │ │ │ │ ├── section_avr8_setget_params.html │ │ │ │ ├── section_edbg_ctrl_setget_params.html │ │ │ │ ├── section_edbg_query_contexts.html │ │ │ │ ├── section_housekeeping_start_session.html │ │ │ │ ├── section_i5v_3yz_rl.html │ │ │ │ ├── section_jdx_m11_sl.html │ │ │ │ ├── section_qhb_x1c_sl.html │ │ │ │ ├── section_serial_trace.html │ │ │ │ └── section_t1f_hb1_sl.html │ │ ├── JTAGICE-AVR060.pdf │ │ ├── JTAGICEmkII-AVR067.pdf │ │ ├── STK500-AVR061.pdf │ │ └── STK500v2-AVR068.pdf │ ├── avr.c │ ├── avr910.c │ ├── avr910.h │ ├── avrdude-slic3r.conf │ ├── avrdude-slic3r.cpp │ ├── avrdude-slic3r.hpp │ ├── avrdude.1 │ ├── avrdude.conf │ ├── avrdude.conf.in │ ├── avrdude.h │ ├── avrdude.spec.in │ ├── avrftdi.c │ ├── avrftdi.h │ ├── avrftdi_private.h │ ├── avrftdi_tpi.c │ ├── avrftdi_tpi.h │ ├── avrpart.c │ ├── bitbang.c │ ├── bitbang.h │ ├── bootstrap │ ├── buspirate.c │ ├── buspirate.h │ ├── butterfly.c │ ├── butterfly.h │ ├── conf-generate.cpp │ ├── config.c │ ├── config.h │ ├── config_gram.c │ ├── config_gram.h │ ├── config_gram.y │ ├── configure.ac │ ├── confwin.c │ ├── crc16.c │ ├── crc16.h │ ├── dfu.c │ ├── dfu.h │ ├── doc │ │ ├── .cvsignore │ │ ├── Makefile.am │ │ ├── TODO │ │ ├── avrdude.texi │ │ └── parts_comments.txt │ ├── fileio.c │ ├── flip1.c │ ├── flip1.h │ ├── flip2.c │ ├── flip2.h │ ├── freebsd_ppi.h │ ├── ft245r.c │ ├── ft245r.h │ ├── jtag3.c │ ├── jtag3.h │ ├── jtag3_private.h │ ├── jtagmkI.c │ ├── jtagmkI.h │ ├── jtagmkII.c │ ├── jtagmkII.h │ ├── jtagmkII_private.h │ ├── jtagmkI_private.h │ ├── lexer.c │ ├── lexer.l │ ├── libavrdude.h │ ├── linux_ppdev.h │ ├── linuxgpio.c │ ├── linuxgpio.h │ ├── lists.c │ ├── main-standalone.cpp │ ├── main.c │ ├── my_ddk_hidsdi.h │ ├── par.c │ ├── par.h │ ├── pgm.c │ ├── pgm_type.c │ ├── pickit2.c │ ├── pickit2.h │ ├── pindefs.c │ ├── ppi.c │ ├── ppi.h │ ├── ppiwin.c │ ├── safemode.c │ ├── ser_avrdoper.c │ ├── ser_posix.c │ ├── ser_win32.c │ ├── serbb.h │ ├── serbb_posix.c │ ├── serbb_win32.c │ ├── solaris_ecpp.h │ ├── stk500.c │ ├── stk500.h │ ├── stk500_private.h │ ├── stk500generic.c │ ├── stk500generic.h │ ├── stk500v2.c │ ├── stk500v2.h │ ├── stk500v2_private.h │ ├── term.c │ ├── term.h │ ├── tools │ │ ├── build-mingw32.sh │ │ ├── get-dw-params.xsl │ │ ├── get-hv-params.xsl │ │ ├── get-stk600-cards.xsl │ │ └── get-stk600-devices.xsl │ ├── tpi.h │ ├── update.c │ ├── usb_hidapi.c │ ├── usb_libusb.c │ ├── usbasp.c │ ├── usbasp.h │ ├── usbdevs.h │ ├── usbtiny.c │ ├── usbtiny.h │ ├── windows │ │ ├── .cvsignore │ │ ├── Makefile.am │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── giveio.c │ │ ├── giveio.sys │ │ ├── install_giveio.bat │ │ ├── loaddrv.c │ │ ├── loaddrv.h │ │ ├── remove_giveio.bat │ │ ├── status_giveio.bat │ │ ├── unistd.cpp │ │ ├── unistd.h │ │ ├── utf8.c │ │ └── utf8.h │ ├── wiring.c │ └── wiring.h ├── boost │ ├── CMakeLists.txt │ └── nowide │ │ ├── args.hpp │ │ ├── cenv.hpp │ │ ├── config.hpp │ │ ├── convert.hpp │ │ ├── cstdio.hpp │ │ ├── cstdlib.hpp │ │ ├── filebuf.hpp │ │ ├── fstream.hpp │ │ ├── integration │ │ └── filesystem.hpp │ │ ├── iostream.cpp │ │ ├── iostream.hpp │ │ ├── stackstring.hpp │ │ ├── system.hpp │ │ ├── utf8_codecvt.hpp │ │ └── windows.hpp ├── build-utils │ ├── CMakeLists.txt │ ├── check_encoding.py │ └── encoding-check.cpp ├── clipper │ ├── CMakeLists.txt │ ├── clipper.cpp │ ├── clipper.hpp │ ├── clipper_z.cpp │ └── clipper_z.hpp ├── eigen │ ├── COPYING.README │ ├── Eigen │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── Cholesky │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_LAPACKE.h │ │ │ ├── CholmodSupport │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── AssignEvaluator.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CommaInitializer.h │ │ │ ├── ConditionEstimator.h │ │ │ ├── CoreEvaluators.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseTernaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── Inverse.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── MathFunctionsImpl.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductEvaluators.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── Solve.h │ │ │ ├── SolveTriangular.h │ │ │ ├── SolverBase.h │ │ │ ├── StableNorm.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AVX │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AVX512 │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── AltiVec │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CUDA │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── Half.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── Default │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ └── Settings.h │ │ │ │ ├── NEON │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ └── ZVector │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── functors │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ ├── BinaryFunctors.h │ │ │ │ ├── NullaryFunctors.h │ │ │ │ ├── StlFunctors.h │ │ │ │ ├── TernaryFunctors.h │ │ │ │ └── UnaryFunctors.h │ │ │ ├── products │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── StaticAssert.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigenvalues │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_LAPACKE.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ └── Geometry_SSE.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLUT.h │ │ │ ├── IterativeSolverBase.h │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ └── SolveWithGuess.h │ │ │ ├── Jacobi │ │ │ └── Jacobi.h │ │ │ ├── LU │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── InverseImpl.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ └── arch │ │ │ │ └── Inverse_SSE.h │ │ │ ├── MetisSupport │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ ├── SPQRSupport │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── BDCSVD.h │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ ├── SVDBase.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCompressedBase.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMap.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseRef.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSolverBase.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── RealSvd2x2.h │ │ │ ├── blas.h │ │ │ ├── lapack.h │ │ │ ├── lapacke.h │ │ │ └── lapacke_mangling.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ └── MatrixCwiseUnaryOps.h │ ├── README.md │ └── unsupported │ │ └── Eigen │ │ ├── SparseExtra │ │ └── src │ │ └── SparseExtra │ │ ├── BlockOfDynamicSparseMatrix.h │ │ ├── BlockSparseMatrix.h │ │ ├── DynamicSparseMatrix.h │ │ ├── MarketIO.h │ │ ├── MatrixMarketIterator.h │ │ └── RandomSetter.h ├── exif │ ├── CMakeLists.txt │ ├── COPYING │ ├── README │ ├── exif.c │ ├── exif_testy.c │ └── include │ │ └── exif.h ├── fast_float │ ├── README.md │ └── fast_float.h ├── glu-libtess │ ├── CMakeLists.txt │ ├── README │ ├── include │ │ └── glu-libtess.h │ └── src │ │ ├── README │ │ ├── alg-outline │ │ ├── dict-list.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── geom.c │ │ ├── geom.h │ │ ├── gluos.h │ │ ├── memalloc.c │ │ ├── memalloc.h │ │ ├── mesh.c │ │ ├── mesh.h │ │ ├── normal.c │ │ ├── normal.h │ │ ├── priorityq-heap.c │ │ ├── priorityq-heap.h │ │ ├── priorityq-sort.h │ │ ├── priorityq.c │ │ ├── priorityq.h │ │ ├── render.c │ │ ├── render.h │ │ ├── sweep.c │ │ ├── sweep.h │ │ ├── tess.c │ │ ├── tess.h │ │ ├── tessmono.c │ │ └── tessmono.h ├── hidapi │ ├── CMakeLists.txt │ ├── README.md │ ├── include │ │ └── hidapi.h │ ├── linux │ │ └── hid.c │ ├── mac │ │ └── hid.c │ └── win │ │ └── hid.c ├── hints │ ├── CMakeLists.txt │ └── HintsToPot.cpp ├── imgui │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_stdlib.cpp │ ├── imgui_stdlib.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── jpeg-compressor │ ├── CMakeLists.txt │ ├── README.md │ ├── jpge.cpp │ └── jpge.h ├── libigl │ ├── CMakeLists.txt │ └── igl │ │ ├── AABB.cpp │ │ ├── AABB.h │ │ ├── ARAPEnergyType.h │ │ ├── AtA_cached.cpp │ │ ├── AtA_cached.h │ │ ├── C_STR.h │ │ ├── Camera.h │ │ ├── EPS.cpp │ │ ├── EPS.h │ │ ├── HalfEdgeIterator.cpp │ │ ├── HalfEdgeIterator.h │ │ ├── Hit.h │ │ ├── IO │ │ ├── IndexComparison.h │ │ ├── LinSpaced.h │ │ ├── MeshBooleanType.h │ │ ├── NormalType.h │ │ ├── ONE.h │ │ ├── PI.h │ │ ├── REDRUM.h │ │ ├── STR.h │ │ ├── Singular_Value_Decomposition_Givens_QR_Factorization_Kernel.hpp │ │ ├── Singular_Value_Decomposition_Jacobi_Conjugation_Kernel.hpp │ │ ├── Singular_Value_Decomposition_Kernel_Declarations.hpp │ │ ├── Singular_Value_Decomposition_Main_Kernel_Body.hpp │ │ ├── Singular_Value_Decomposition_Preamble.hpp │ │ ├── SolverStatus.h │ │ ├── SortableRow.h │ │ ├── Timer.h │ │ ├── Viewport.h │ │ ├── WindingNumberAABB.h │ │ ├── WindingNumberMethod.h │ │ ├── WindingNumberTree.h │ │ ├── ZERO.h │ │ ├── active_set.cpp │ │ ├── active_set.h │ │ ├── adjacency_list.cpp │ │ ├── adjacency_list.h │ │ ├── adjacency_matrix.cpp │ │ ├── adjacency_matrix.h │ │ ├── all.cpp │ │ ├── all.h │ │ ├── all_edges.cpp │ │ ├── all_edges.h │ │ ├── all_pairs_distances.cpp │ │ ├── all_pairs_distances.h │ │ ├── ambient_occlusion.cpp │ │ ├── ambient_occlusion.h │ │ ├── angular_distance.cpp │ │ ├── angular_distance.h │ │ ├── anttweakbar │ │ ├── ReAntTweakBar.cpp │ │ ├── ReAntTweakBar.h │ │ ├── cocoa_key_to_anttweakbar_key.cpp │ │ └── cocoa_key_to_anttweakbar_key.h │ │ ├── any.cpp │ │ ├── any.h │ │ ├── any_of.cpp │ │ ├── any_of.h │ │ ├── arap.cpp │ │ ├── arap.h │ │ ├── arap_dof.cpp │ │ ├── arap_dof.h │ │ ├── arap_linear_block.cpp │ │ ├── arap_linear_block.h │ │ ├── arap_rhs.cpp │ │ ├── arap_rhs.h │ │ ├── average_onto_faces.cpp │ │ ├── average_onto_faces.h │ │ ├── average_onto_vertices.cpp │ │ ├── average_onto_vertices.h │ │ ├── avg_edge_length.cpp │ │ ├── avg_edge_length.h │ │ ├── axis_angle_to_quat.cpp │ │ ├── axis_angle_to_quat.h │ │ ├── barycenter.cpp │ │ ├── barycenter.h │ │ ├── barycentric_coordinates.cpp │ │ ├── barycentric_coordinates.h │ │ ├── barycentric_to_global.cpp │ │ ├── barycentric_to_global.h │ │ ├── basename.cpp │ │ ├── basename.h │ │ ├── bbw.cpp │ │ ├── bbw.h │ │ ├── bfs.cpp │ │ ├── bfs.h │ │ ├── bfs_orient.cpp │ │ ├── bfs_orient.h │ │ ├── biharmonic_coordinates.cpp │ │ ├── biharmonic_coordinates.h │ │ ├── bijective_composite_harmonic_mapping.cpp │ │ ├── bijective_composite_harmonic_mapping.h │ │ ├── bone_parents.cpp │ │ ├── bone_parents.h │ │ ├── boundary_conditions.cpp │ │ ├── boundary_conditions.h │ │ ├── boundary_facets.cpp │ │ ├── boundary_facets.h │ │ ├── boundary_loop.cpp │ │ ├── boundary_loop.h │ │ ├── bounding_box.cpp │ │ ├── bounding_box.h │ │ ├── bounding_box_diagonal.cpp │ │ ├── bounding_box_diagonal.h │ │ ├── canonical_quaternions.cpp │ │ ├── canonical_quaternions.h │ │ ├── cat.cpp │ │ ├── cat.h │ │ ├── ceil.cpp │ │ ├── ceil.h │ │ ├── centroid.cpp │ │ ├── centroid.h │ │ ├── circulation.cpp │ │ ├── circulation.h │ │ ├── circumradius.cpp │ │ ├── circumradius.h │ │ ├── collapse_edge.cpp │ │ ├── collapse_edge.h │ │ ├── collapse_small_triangles.cpp │ │ ├── collapse_small_triangles.h │ │ ├── colon.cpp │ │ ├── colon.h │ │ ├── colormap.cpp │ │ ├── colormap.h │ │ ├── column_to_quats.cpp │ │ ├── column_to_quats.h │ │ ├── columnize.cpp │ │ ├── columnize.h │ │ ├── comb_cross_field.cpp │ │ ├── comb_cross_field.h │ │ ├── comb_frame_field.cpp │ │ ├── comb_frame_field.h │ │ ├── comb_line_field.cpp │ │ ├── comb_line_field.h │ │ ├── combine.cpp │ │ ├── combine.h │ │ ├── components.cpp │ │ ├── components.h │ │ ├── compute_frame_field_bisectors.cpp │ │ ├── compute_frame_field_bisectors.h │ │ ├── connect_boundary_to_infinity.cpp │ │ ├── connect_boundary_to_infinity.h │ │ ├── copyleft │ │ ├── README.md │ │ ├── cgal │ │ │ ├── BinaryWindingNumberOperations.h │ │ │ ├── CGAL_includes.hpp │ │ │ ├── CSGTree.h │ │ │ ├── RemeshSelfIntersectionsParam.h │ │ │ ├── SelfIntersectMesh.h │ │ │ ├── assign.cpp │ │ │ ├── assign.h │ │ │ ├── assign_scalar.cpp │ │ │ ├── assign_scalar.h │ │ │ ├── barycenter.cpp │ │ │ ├── cell_adjacency.cpp │ │ │ ├── cell_adjacency.h │ │ │ ├── closest_facet.cpp │ │ │ ├── closest_facet.h │ │ │ ├── complex_to_mesh.cpp │ │ │ ├── complex_to_mesh.h │ │ │ ├── component_inside_component.cpp │ │ │ ├── component_inside_component.h │ │ │ ├── convex_hull.cpp │ │ │ ├── convex_hull.h │ │ │ ├── delaunay_triangulation.cpp │ │ │ ├── delaunay_triangulation.h │ │ │ ├── extract_cells.cpp │ │ │ ├── extract_cells.h │ │ │ ├── extract_feature.cpp │ │ │ ├── extract_feature.h │ │ │ ├── fast_winding_number.cpp │ │ │ ├── fast_winding_number.h │ │ │ ├── half_space_box.cpp │ │ │ ├── half_space_box.h │ │ │ ├── hausdorff.cpp │ │ │ ├── hausdorff.h │ │ │ ├── incircle.cpp │ │ │ ├── incircle.h │ │ │ ├── insert_into_cdt.cpp │ │ │ ├── insert_into_cdt.h │ │ │ ├── insphere.cpp │ │ │ ├── insphere.h │ │ │ ├── intersect_other.cpp │ │ │ ├── intersect_other.h │ │ │ ├── intersect_with_half_space.cpp │ │ │ ├── intersect_with_half_space.h │ │ │ ├── lexicographic_triangulation.cpp │ │ │ ├── lexicographic_triangulation.h │ │ │ ├── list_to_matrix.cpp │ │ │ ├── mesh_boolean.cpp │ │ │ ├── mesh_boolean.h │ │ │ ├── mesh_boolean_type_to_funcs.cpp │ │ │ ├── mesh_boolean_type_to_funcs.h │ │ │ ├── mesh_to_cgal_triangle_list.cpp │ │ │ ├── mesh_to_cgal_triangle_list.h │ │ │ ├── mesh_to_polyhedron.cpp │ │ │ ├── mesh_to_polyhedron.h │ │ │ ├── minkowski_sum.cpp │ │ │ ├── minkowski_sum.h │ │ │ ├── order_facets_around_edge.cpp │ │ │ ├── order_facets_around_edge.h │ │ │ ├── order_facets_around_edges.cpp │ │ │ ├── order_facets_around_edges.h │ │ │ ├── orient2D.cpp │ │ │ ├── orient2D.h │ │ │ ├── orient3D.cpp │ │ │ ├── orient3D.h │ │ │ ├── outer_element.cpp │ │ │ ├── outer_element.h │ │ │ ├── outer_facet.cpp │ │ │ ├── outer_facet.h │ │ │ ├── outer_hull.cpp │ │ │ ├── outer_hull.h │ │ │ ├── peel_outer_hull_layers.cpp │ │ │ ├── peel_outer_hull_layers.h │ │ │ ├── peel_winding_number_layers.cpp │ │ │ ├── peel_winding_number_layers.h │ │ │ ├── piecewise_constant_winding_number.cpp │ │ │ ├── piecewise_constant_winding_number.h │ │ │ ├── point_areas.cpp │ │ │ ├── point_areas.h │ │ │ ├── point_mesh_squared_distance.cpp │ │ │ ├── point_mesh_squared_distance.h │ │ │ ├── point_segment_squared_distance.cpp │ │ │ ├── point_segment_squared_distance.h │ │ │ ├── point_solid_signed_squared_distance.cpp │ │ │ ├── point_solid_signed_squared_distance.h │ │ │ ├── point_triangle_squared_distance.cpp │ │ │ ├── point_triangle_squared_distance.h │ │ │ ├── points_inside_component.cpp │ │ │ ├── points_inside_component.h │ │ │ ├── polyhedron_to_mesh.cpp │ │ │ ├── polyhedron_to_mesh.h │ │ │ ├── projected_cdt.cpp │ │ │ ├── projected_cdt.h │ │ │ ├── projected_delaunay.cpp │ │ │ ├── projected_delaunay.h │ │ │ ├── propagate_winding_numbers.cpp │ │ │ ├── propagate_winding_numbers.h │ │ │ ├── read_triangle_mesh.cpp │ │ │ ├── read_triangle_mesh.h │ │ │ ├── relabel_small_immersed_cells.cpp │ │ │ ├── relabel_small_immersed_cells.h │ │ │ ├── remesh_intersections.cpp │ │ │ ├── remesh_intersections.h │ │ │ ├── remesh_self_intersections.cpp │ │ │ ├── remesh_self_intersections.h │ │ │ ├── remove_unreferenced.cpp │ │ │ ├── resolve_intersections.cpp │ │ │ ├── resolve_intersections.h │ │ │ ├── row_to_point.cpp │ │ │ ├── row_to_point.h │ │ │ ├── segment_segment_squared_distance.cpp │ │ │ ├── segment_segment_squared_distance.h │ │ │ ├── signed_distance_isosurface.cpp │ │ │ ├── signed_distance_isosurface.h │ │ │ ├── slice.cpp │ │ │ ├── slice_mask.cpp │ │ │ ├── snap_rounding.cpp │ │ │ ├── snap_rounding.h │ │ │ ├── string_to_mesh_boolean_type.cpp │ │ │ ├── string_to_mesh_boolean_type.h │ │ │ ├── subdivide_segments.cpp │ │ │ ├── subdivide_segments.h │ │ │ ├── submesh_aabb_tree.cpp │ │ │ ├── submesh_aabb_tree.h │ │ │ ├── triangle_triangle_squared_distance.cpp │ │ │ ├── triangle_triangle_squared_distance.h │ │ │ ├── trim_with_solid.cpp │ │ │ ├── trim_with_solid.h │ │ │ ├── unique.cpp │ │ │ ├── unique_rows.cpp │ │ │ ├── wire_mesh.cpp │ │ │ └── wire_mesh.h │ │ ├── comiso │ │ │ ├── frame_field.cpp │ │ │ ├── frame_field.h │ │ │ ├── miq.cpp │ │ │ ├── miq.h │ │ │ ├── nrosy.cpp │ │ │ └── nrosy.h │ │ ├── cork │ │ │ ├── from_cork_mesh.cpp │ │ │ ├── from_cork_mesh.h │ │ │ ├── mesh_boolean.cpp │ │ │ ├── mesh_boolean.h │ │ │ ├── to_cork_mesh.cpp │ │ │ └── to_cork_mesh.h │ │ ├── marching_cubes.cpp │ │ ├── marching_cubes.h │ │ ├── marching_cubes_tables.h │ │ ├── offset_surface.cpp │ │ ├── offset_surface.h │ │ ├── opengl2 │ │ │ ├── render_to_tga.cpp │ │ │ ├── render_to_tga.h │ │ │ ├── texture_from_tga.cpp │ │ │ ├── texture_from_tga.h │ │ │ ├── tga.cpp │ │ │ └── tga.h │ │ ├── progressive_hulls.cpp │ │ ├── progressive_hulls.h │ │ ├── progressive_hulls_cost_and_placement.cpp │ │ ├── progressive_hulls_cost_and_placement.h │ │ ├── quadprog.cpp │ │ ├── quadprog.h │ │ ├── swept_volume.cpp │ │ ├── swept_volume.h │ │ └── tetgen │ │ │ ├── README │ │ │ ├── cdt.cpp │ │ │ ├── cdt.h │ │ │ ├── mesh_to_tetgenio.cpp │ │ │ ├── mesh_to_tetgenio.h │ │ │ ├── mesh_with_skeleton.cpp │ │ │ ├── mesh_with_skeleton.h │ │ │ ├── read_into_tetgenio.cpp │ │ │ ├── read_into_tetgenio.h │ │ │ ├── tetgenio_to_tetmesh.cpp │ │ │ ├── tetgenio_to_tetmesh.h │ │ │ ├── tetrahedralize.cpp │ │ │ └── tetrahedralize.h │ │ ├── cotmatrix.cpp │ │ ├── cotmatrix.h │ │ ├── cotmatrix_entries.cpp │ │ ├── cotmatrix_entries.h │ │ ├── count.cpp │ │ ├── count.h │ │ ├── covariance_scatter_matrix.cpp │ │ ├── covariance_scatter_matrix.h │ │ ├── cross.cpp │ │ ├── cross.h │ │ ├── cross_field_missmatch.cpp │ │ ├── cross_field_missmatch.h │ │ ├── crouzeix_raviart_cotmatrix.cpp │ │ ├── crouzeix_raviart_cotmatrix.h │ │ ├── crouzeix_raviart_massmatrix.cpp │ │ ├── crouzeix_raviart_massmatrix.h │ │ ├── cumsum.cpp │ │ ├── cumsum.h │ │ ├── cut_mesh.cpp │ │ ├── cut_mesh.h │ │ ├── cut_mesh_from_singularities.cpp │ │ ├── cut_mesh_from_singularities.h │ │ ├── cylinder.cpp │ │ ├── cylinder.h │ │ ├── dated_copy.cpp │ │ ├── dated_copy.h │ │ ├── decimate.cpp │ │ ├── decimate.h │ │ ├── deform_skeleton.cpp │ │ ├── deform_skeleton.h │ │ ├── delaunay_triangulation.cpp │ │ ├── delaunay_triangulation.h │ │ ├── deprecated.h │ │ ├── dfs.cpp │ │ ├── dfs.h │ │ ├── diag.cpp │ │ ├── diag.h │ │ ├── dihedral_angles.cpp │ │ ├── dihedral_angles.h │ │ ├── dijkstra.cpp │ │ ├── dijkstra.h │ │ ├── directed_edge_orientations.cpp │ │ ├── directed_edge_orientations.h │ │ ├── directed_edge_parents.cpp │ │ ├── directed_edge_parents.h │ │ ├── dirname.cpp │ │ ├── dirname.h │ │ ├── dot.cpp │ │ ├── dot.h │ │ ├── dot_row.cpp │ │ ├── dot_row.h │ │ ├── doublearea.cpp │ │ ├── doublearea.h │ │ ├── dqs.cpp │ │ ├── dqs.h │ │ ├── ears.cpp │ │ ├── ears.h │ │ ├── edge_collapse_is_valid.cpp │ │ ├── edge_collapse_is_valid.h │ │ ├── edge_flaps.cpp │ │ ├── edge_flaps.h │ │ ├── edge_lengths.cpp │ │ ├── edge_lengths.h │ │ ├── edge_topology.cpp │ │ ├── edge_topology.h │ │ ├── edges.cpp │ │ ├── edges.h │ │ ├── edges_to_path.cpp │ │ ├── edges_to_path.h │ │ ├── eigs.cpp │ │ ├── eigs.h │ │ ├── embree │ │ ├── EmbreeIntersector.h │ │ ├── Embree_convenience.h │ │ ├── ambient_occlusion.cpp │ │ ├── ambient_occlusion.h │ │ ├── bone_heat.cpp │ │ ├── bone_heat.h │ │ ├── bone_visible.cpp │ │ ├── bone_visible.h │ │ ├── embree2 │ │ │ ├── rtcore.h │ │ │ ├── rtcore.isph │ │ │ ├── rtcore_geometry.h │ │ │ ├── rtcore_geometry.isph │ │ │ ├── rtcore_geometry_user.h │ │ │ ├── rtcore_geometry_user.isph │ │ │ ├── rtcore_ray.h │ │ │ ├── rtcore_ray.isph │ │ │ ├── rtcore_scene.h │ │ │ └── rtcore_scene.isph │ │ ├── line_mesh_intersection.cpp │ │ ├── line_mesh_intersection.h │ │ ├── reorient_facets_raycast.cpp │ │ ├── reorient_facets_raycast.h │ │ ├── shape_diameter_function.cpp │ │ ├── shape_diameter_function.h │ │ ├── unproject_in_mesh.cpp │ │ ├── unproject_in_mesh.h │ │ ├── unproject_onto_mesh.cpp │ │ └── unproject_onto_mesh.h │ │ ├── euler_characteristic.cpp │ │ ├── euler_characteristic.h │ │ ├── exact_geodesic.cpp │ │ ├── exact_geodesic.h │ │ ├── example_fun.cpp │ │ ├── example_fun.h │ │ ├── exterior_edges.cpp │ │ ├── exterior_edges.h │ │ ├── extract_manifold_patches.cpp │ │ ├── extract_manifold_patches.h │ │ ├── extract_non_manifold_edge_curves.cpp │ │ ├── extract_non_manifold_edge_curves.h │ │ ├── face_areas.cpp │ │ ├── face_areas.h │ │ ├── face_occurrences.cpp │ │ ├── face_occurrences.h │ │ ├── faces_first.cpp │ │ ├── faces_first.h │ │ ├── facet_components.cpp │ │ ├── facet_components.h │ │ ├── false_barycentric_subdivision.cpp │ │ ├── false_barycentric_subdivision.h │ │ ├── fast_winding_number.cpp │ │ ├── fast_winding_number.h │ │ ├── file_contents_as_string.cpp │ │ ├── file_contents_as_string.h │ │ ├── file_dialog_open.cpp │ │ ├── file_dialog_open.h │ │ ├── file_dialog_save.cpp │ │ ├── file_dialog_save.h │ │ ├── file_exists.cpp │ │ ├── file_exists.h │ │ ├── find.cpp │ │ ├── find.h │ │ ├── find_cross_field_singularities.cpp │ │ ├── find_cross_field_singularities.h │ │ ├── find_zero.cpp │ │ ├── find_zero.h │ │ ├── fit_plane.cpp │ │ ├── fit_plane.h │ │ ├── fit_rotations.cpp │ │ ├── fit_rotations.h │ │ ├── flip_avoiding_line_search.cpp │ │ ├── flip_avoiding_line_search.h │ │ ├── flip_edge.cpp │ │ ├── flip_edge.h │ │ ├── flipped_triangles.cpp │ │ ├── flipped_triangles.h │ │ ├── flood_fill.cpp │ │ ├── flood_fill.h │ │ ├── floor.cpp │ │ ├── floor.h │ │ ├── for_each.h │ │ ├── forward_kinematics.cpp │ │ ├── forward_kinematics.h │ │ ├── frame_field_deformer.cpp │ │ ├── frame_field_deformer.h │ │ ├── frame_to_cross_field.cpp │ │ ├── frame_to_cross_field.h │ │ ├── frustum.cpp │ │ ├── frustum.h │ │ ├── gaussian_curvature.cpp │ │ ├── gaussian_curvature.h │ │ ├── get_seconds.cpp │ │ ├── get_seconds.h │ │ ├── get_seconds_hires.cpp │ │ ├── get_seconds_hires.h │ │ ├── grad.cpp │ │ ├── grad.h │ │ ├── grid.cpp │ │ ├── grid.h │ │ ├── grid_search.cpp │ │ ├── grid_search.h │ │ ├── group_sum_matrix.cpp │ │ ├── group_sum_matrix.h │ │ ├── guess_extension.cpp │ │ ├── guess_extension.h │ │ ├── harmonic.cpp │ │ ├── harmonic.h │ │ ├── harwell_boeing.cpp │ │ ├── harwell_boeing.h │ │ ├── hausdorff.cpp │ │ ├── hausdorff.h │ │ ├── hessian.cpp │ │ ├── hessian.h │ │ ├── hessian_energy.cpp │ │ ├── hessian_energy.h │ │ ├── histc.cpp │ │ ├── histc.h │ │ ├── hsv_to_rgb.cpp │ │ ├── hsv_to_rgb.h │ │ ├── igl_inline.h │ │ ├── in_element.cpp │ │ ├── in_element.h │ │ ├── infinite_cost_stopping_condition.cpp │ │ ├── infinite_cost_stopping_condition.h │ │ ├── inradius.cpp │ │ ├── inradius.h │ │ ├── internal_angles.cpp │ │ ├── internal_angles.h │ │ ├── intersect.cpp │ │ ├── intersect.h │ │ ├── invert_diag.cpp │ │ ├── invert_diag.h │ │ ├── is_border_vertex.cpp │ │ ├── is_border_vertex.h │ │ ├── is_boundary_edge.cpp │ │ ├── is_boundary_edge.h │ │ ├── is_dir.cpp │ │ ├── is_dir.h │ │ ├── is_edge_manifold.cpp │ │ ├── is_edge_manifold.h │ │ ├── is_file.cpp │ │ ├── is_file.h │ │ ├── is_irregular_vertex.cpp │ │ ├── is_irregular_vertex.h │ │ ├── is_planar.cpp │ │ ├── is_planar.h │ │ ├── is_readable.cpp │ │ ├── is_readable.h │ │ ├── is_sparse.cpp │ │ ├── is_sparse.h │ │ ├── is_stl.cpp │ │ ├── is_stl.h │ │ ├── is_symmetric.cpp │ │ ├── is_symmetric.h │ │ ├── is_vertex_manifold.cpp │ │ ├── is_vertex_manifold.h │ │ ├── is_writable.cpp │ │ ├── is_writable.h │ │ ├── isdiag.cpp │ │ ├── isdiag.h │ │ ├── ismember.cpp │ │ ├── ismember.h │ │ ├── isolines.cpp │ │ ├── isolines.h │ │ ├── jet.cpp │ │ ├── jet.h │ │ ├── knn.cpp │ │ ├── knn.h │ │ ├── launch_medit.cpp │ │ ├── launch_medit.h │ │ ├── lbs_matrix.cpp │ │ ├── lbs_matrix.h │ │ ├── lexicographic_triangulation.cpp │ │ ├── lexicographic_triangulation.h │ │ ├── lim │ │ ├── lim.cpp │ │ └── lim.h │ │ ├── limit_faces.cpp │ │ ├── limit_faces.h │ │ ├── line_field_missmatch.cpp │ │ ├── line_field_missmatch.h │ │ ├── line_search.cpp │ │ ├── line_search.h │ │ ├── line_segment_in_rectangle.cpp │ │ ├── line_segment_in_rectangle.h │ │ ├── linprog.cpp │ │ ├── linprog.h │ │ ├── list_to_matrix.cpp │ │ ├── list_to_matrix.h │ │ ├── local_basis.cpp │ │ ├── local_basis.h │ │ ├── look_at.cpp │ │ ├── look_at.h │ │ ├── loop.cpp │ │ ├── loop.h │ │ ├── lscm.cpp │ │ ├── lscm.h │ │ ├── map_vertices_to_circle.cpp │ │ ├── map_vertices_to_circle.h │ │ ├── massmatrix.cpp │ │ ├── massmatrix.h │ │ ├── mat_max.cpp │ │ ├── mat_max.h │ │ ├── mat_min.cpp │ │ ├── mat_min.h │ │ ├── mat_to_quat.cpp │ │ ├── mat_to_quat.h │ │ ├── material_colors.h │ │ ├── matlab │ │ ├── MatlabWorkspace.h │ │ ├── MexStream.h │ │ ├── matlabinterface.cpp │ │ ├── matlabinterface.h │ │ ├── mexErrMsgTxt.cpp │ │ ├── mexErrMsgTxt.h │ │ ├── parse_rhs.cpp │ │ ├── parse_rhs.h │ │ ├── prepare_lhs.cpp │ │ ├── prepare_lhs.h │ │ ├── requires_arg.cpp │ │ ├── requires_arg.h │ │ ├── validate_arg.cpp │ │ └── validate_arg.h │ │ ├── matlab_format.cpp │ │ ├── matlab_format.h │ │ ├── matrix_to_list.cpp │ │ ├── matrix_to_list.h │ │ ├── max.cpp │ │ ├── max.h │ │ ├── max_faces_stopping_condition.cpp │ │ ├── max_faces_stopping_condition.h │ │ ├── max_size.cpp │ │ ├── max_size.h │ │ ├── median.cpp │ │ ├── median.h │ │ ├── min.cpp │ │ ├── min.h │ │ ├── min_quad_dense.cpp │ │ ├── min_quad_dense.h │ │ ├── min_quad_with_fixed.cpp │ │ ├── min_quad_with_fixed.h │ │ ├── min_size.cpp │ │ ├── min_size.h │ │ ├── mod.cpp │ │ ├── mod.h │ │ ├── mode.cpp │ │ ├── mode.h │ │ ├── mosek │ │ ├── bbw.cpp │ │ ├── bbw.h │ │ ├── mosek_guarded.cpp │ │ ├── mosek_guarded.h │ │ ├── mosek_linprog.cpp │ │ ├── mosek_linprog.h │ │ ├── mosek_quadprog.cpp │ │ └── mosek_quadprog.h │ │ ├── mvc.cpp │ │ ├── mvc.h │ │ ├── nchoosek.cpp │ │ ├── nchoosek.h │ │ ├── next_filename.cpp │ │ ├── next_filename.h │ │ ├── normal_derivative.cpp │ │ ├── normal_derivative.h │ │ ├── normalize_quat.cpp │ │ ├── normalize_quat.h │ │ ├── normalize_row_lengths.cpp │ │ ├── normalize_row_lengths.h │ │ ├── normalize_row_sums.cpp │ │ ├── normalize_row_sums.h │ │ ├── null.cpp │ │ ├── null.h │ │ ├── octree.cpp │ │ ├── octree.h │ │ ├── on_boundary.cpp │ │ ├── on_boundary.h │ │ ├── opengl │ │ ├── MeshGL.cpp │ │ ├── MeshGL.h │ │ ├── ViewerCore.cpp │ │ ├── ViewerCore.h │ │ ├── ViewerData.cpp │ │ ├── ViewerData.h │ │ ├── bind_vertex_attrib_array.cpp │ │ ├── bind_vertex_attrib_array.h │ │ ├── create_index_vbo.cpp │ │ ├── create_index_vbo.h │ │ ├── create_mesh_vbo.cpp │ │ ├── create_mesh_vbo.h │ │ ├── create_shader_program.cpp │ │ ├── create_shader_program.h │ │ ├── create_vector_vbo.cpp │ │ ├── create_vector_vbo.h │ │ ├── destroy_shader_program.cpp │ │ ├── destroy_shader_program.h │ │ ├── gl.h │ │ ├── gl_type_size.cpp │ │ ├── gl_type_size.h │ │ ├── glfw │ │ │ ├── Viewer.cpp │ │ │ ├── Viewer.h │ │ │ ├── ViewerPlugin.h │ │ │ ├── background_window.cpp │ │ │ ├── background_window.h │ │ │ ├── imgui │ │ │ │ ├── ImGuiHelpers.h │ │ │ │ ├── ImGuiMenu.cpp │ │ │ │ └── ImGuiMenu.h │ │ │ ├── map_texture.cpp │ │ │ └── map_texture.h │ │ ├── init_render_to_texture.cpp │ │ ├── init_render_to_texture.h │ │ ├── load_shader.cpp │ │ ├── load_shader.h │ │ ├── print_program_info_log.cpp │ │ ├── print_program_info_log.h │ │ ├── print_shader_info_log.cpp │ │ ├── print_shader_info_log.h │ │ ├── report_gl_error.cpp │ │ ├── report_gl_error.h │ │ ├── uniform_type_to_string.cpp │ │ ├── uniform_type_to_string.h │ │ ├── vertex_array.cpp │ │ └── vertex_array.h │ │ ├── opengl2 │ │ ├── MouseController.h │ │ ├── RotateWidget.h │ │ ├── TranslateWidget.h │ │ ├── draw_beach_ball.cpp │ │ ├── draw_beach_ball.h │ │ ├── draw_floor.cpp │ │ ├── draw_floor.h │ │ ├── draw_mesh.cpp │ │ ├── draw_mesh.h │ │ ├── draw_point.cpp │ │ ├── draw_point.h │ │ ├── draw_rectangular_marquee.cpp │ │ ├── draw_rectangular_marquee.h │ │ ├── draw_skeleton_3d.cpp │ │ ├── draw_skeleton_3d.h │ │ ├── draw_skeleton_vector_graphics.cpp │ │ ├── draw_skeleton_vector_graphics.h │ │ ├── flare_textures.h │ │ ├── gl.h │ │ ├── glext.h │ │ ├── glu.h │ │ ├── lens_flare.cpp │ │ ├── lens_flare.h │ │ ├── model_proj_viewport.cpp │ │ ├── model_proj_viewport.h │ │ ├── print_gl_get.cpp │ │ ├── print_gl_get.h │ │ ├── project.cpp │ │ ├── project.h │ │ ├── right_axis.cpp │ │ ├── right_axis.h │ │ ├── shine_textures.h │ │ ├── sort_triangles.cpp │ │ ├── sort_triangles.h │ │ ├── unproject.cpp │ │ ├── unproject.h │ │ ├── unproject_to_zero_plane.cpp │ │ ├── unproject_to_zero_plane.h │ │ ├── up_axis.cpp │ │ ├── up_axis.h │ │ ├── view_axis.cpp │ │ └── view_axis.h │ │ ├── orient_outward.cpp │ │ ├── orient_outward.h │ │ ├── orientable_patches.cpp │ │ ├── orientable_patches.h │ │ ├── oriented_facets.cpp │ │ ├── oriented_facets.h │ │ ├── orth.cpp │ │ ├── orth.h │ │ ├── ortho.cpp │ │ ├── ortho.h │ │ ├── outer_element.cpp │ │ ├── outer_element.h │ │ ├── parallel_for.h │ │ ├── parallel_transport_angles.cpp │ │ ├── parallel_transport_angles.h │ │ ├── partition.cpp │ │ ├── partition.h │ │ ├── parula.cpp │ │ ├── parula.h │ │ ├── path_to_executable.cpp │ │ ├── path_to_executable.h │ │ ├── pathinfo.cpp │ │ ├── pathinfo.h │ │ ├── per_corner_normals.cpp │ │ ├── per_corner_normals.h │ │ ├── per_edge_normals.cpp │ │ ├── per_edge_normals.h │ │ ├── per_face_normals.cpp │ │ ├── per_face_normals.h │ │ ├── per_vertex_attribute_smoothing.cpp │ │ ├── per_vertex_attribute_smoothing.h │ │ ├── per_vertex_normals.cpp │ │ ├── per_vertex_normals.h │ │ ├── per_vertex_point_to_plane_quadrics.cpp │ │ ├── per_vertex_point_to_plane_quadrics.h │ │ ├── piecewise_constant_winding_number.cpp │ │ ├── piecewise_constant_winding_number.h │ │ ├── pinv.cpp │ │ ├── pinv.h │ │ ├── planarize_quad_mesh.cpp │ │ ├── planarize_quad_mesh.h │ │ ├── ply.h │ │ ├── png │ │ ├── readPNG.cpp │ │ ├── readPNG.h │ │ ├── render_to_png.cpp │ │ ├── render_to_png.h │ │ ├── render_to_png_async.cpp │ │ ├── render_to_png_async.h │ │ ├── texture_from_file.cpp │ │ ├── texture_from_file.h │ │ ├── texture_from_png.cpp │ │ ├── texture_from_png.h │ │ ├── writePNG.cpp │ │ └── writePNG.h │ │ ├── point_in_circle.cpp │ │ ├── point_in_circle.h │ │ ├── point_in_poly.cpp │ │ ├── point_in_poly.h │ │ ├── point_mesh_squared_distance.cpp │ │ ├── point_mesh_squared_distance.h │ │ ├── point_simplex_squared_distance.cpp │ │ ├── point_simplex_squared_distance.h │ │ ├── polar_dec.cpp │ │ ├── polar_dec.h │ │ ├── polar_svd.cpp │ │ ├── polar_svd.h │ │ ├── polar_svd3x3.cpp │ │ ├── polar_svd3x3.h │ │ ├── polygon_mesh_to_triangle_mesh.cpp │ │ ├── polygon_mesh_to_triangle_mesh.h │ │ ├── principal_curvature.cpp │ │ ├── principal_curvature.h │ │ ├── print_ijv.cpp │ │ ├── print_ijv.h │ │ ├── print_vector.cpp │ │ ├── print_vector.h │ │ ├── procrustes.cpp │ │ ├── procrustes.h │ │ ├── project.cpp │ │ ├── project.h │ │ ├── project_isometrically_to_plane.cpp │ │ ├── project_isometrically_to_plane.h │ │ ├── project_to_line.cpp │ │ ├── project_to_line.h │ │ ├── project_to_line_segment.cpp │ │ ├── project_to_line_segment.h │ │ ├── pseudonormal_test.cpp │ │ ├── pseudonormal_test.h │ │ ├── pso.cpp │ │ ├── pso.h │ │ ├── qslim.cpp │ │ ├── qslim.h │ │ ├── qslim_optimal_collapse_edge_callbacks.cpp │ │ ├── qslim_optimal_collapse_edge_callbacks.h │ │ ├── quad_planarity.cpp │ │ ├── quad_planarity.h │ │ ├── quadric_binary_plus_operator.cpp │ │ ├── quadric_binary_plus_operator.h │ │ ├── quat_conjugate.cpp │ │ ├── quat_conjugate.h │ │ ├── quat_mult.cpp │ │ ├── quat_mult.h │ │ ├── quat_to_axis_angle.cpp │ │ ├── quat_to_axis_angle.h │ │ ├── quat_to_mat.cpp │ │ ├── quat_to_mat.h │ │ ├── quats_to_column.cpp │ │ ├── quats_to_column.h │ │ ├── ramer_douglas_peucker.cpp │ │ ├── ramer_douglas_peucker.h │ │ ├── random_dir.cpp │ │ ├── random_dir.h │ │ ├── random_points_on_mesh.cpp │ │ ├── random_points_on_mesh.h │ │ ├── random_quaternion.cpp │ │ ├── random_quaternion.h │ │ ├── random_search.cpp │ │ ├── random_search.h │ │ ├── randperm.cpp │ │ ├── randperm.h │ │ ├── ray_box_intersect.cpp │ │ ├── ray_box_intersect.h │ │ ├── ray_mesh_intersect.cpp │ │ ├── ray_mesh_intersect.h │ │ ├── ray_sphere_intersect.cpp │ │ ├── ray_sphere_intersect.h │ │ ├── raytri.c │ │ ├── readBF.cpp │ │ ├── readBF.h │ │ ├── readCSV.cpp │ │ ├── readCSV.h │ │ ├── readDMAT.cpp │ │ ├── readDMAT.h │ │ ├── readMESH.cpp │ │ ├── readMESH.h │ │ ├── readMSH.cpp │ │ ├── readMSH.h │ │ ├── readNODE.cpp │ │ ├── readNODE.h │ │ ├── readOBJ.cpp │ │ ├── readOBJ.h │ │ ├── readOFF.cpp │ │ ├── readOFF.h │ │ ├── readPLY.cpp │ │ ├── readPLY.h │ │ ├── readSTL.cpp │ │ ├── readSTL.h │ │ ├── readTGF.cpp │ │ ├── readTGF.h │ │ ├── readWRL.cpp │ │ ├── readWRL.h │ │ ├── read_triangle_mesh.cpp │ │ ├── read_triangle_mesh.h │ │ ├── redux.h │ │ ├── remesh_along_isoline.cpp │ │ ├── remesh_along_isoline.h │ │ ├── remove_duplicate_vertices.cpp │ │ ├── remove_duplicate_vertices.h │ │ ├── remove_duplicates.cpp │ │ ├── remove_duplicates.h │ │ ├── remove_unreferenced.cpp │ │ ├── remove_unreferenced.h │ │ ├── reorder.cpp │ │ ├── reorder.h │ │ ├── repdiag.cpp │ │ ├── repdiag.h │ │ ├── repmat.cpp │ │ ├── repmat.h │ │ ├── resolve_duplicated_faces.cpp │ │ ├── resolve_duplicated_faces.h │ │ ├── rgb_to_hsv.cpp │ │ ├── rgb_to_hsv.h │ │ ├── rotate_by_quat.cpp │ │ ├── rotate_by_quat.h │ │ ├── rotate_vectors.cpp │ │ ├── rotate_vectors.h │ │ ├── rotation_matrix_from_directions.cpp │ │ ├── rotation_matrix_from_directions.h │ │ ├── round.cpp │ │ ├── round.h │ │ ├── rows_to_matrix.cpp │ │ ├── rows_to_matrix.h │ │ ├── sample_edges.cpp │ │ ├── sample_edges.h │ │ ├── seam_edges.cpp │ │ ├── seam_edges.h │ │ ├── segment_segment_intersect.cpp │ │ ├── segment_segment_intersect.h │ │ ├── serialize.h │ │ ├── setdiff.cpp │ │ ├── setdiff.h │ │ ├── setunion.cpp │ │ ├── setunion.h │ │ ├── setxor.cpp │ │ ├── setxor.h │ │ ├── shape_diameter_function.cpp │ │ ├── shape_diameter_function.h │ │ ├── shapeup.cpp │ │ ├── shapeup.h │ │ ├── shortest_edge_and_midpoint.cpp │ │ ├── shortest_edge_and_midpoint.h │ │ ├── signed_angle.cpp │ │ ├── signed_angle.h │ │ ├── signed_distance.cpp │ │ ├── signed_distance.h │ │ ├── simplify_polyhedron.cpp │ │ ├── simplify_polyhedron.h │ │ ├── slice.cpp │ │ ├── slice.h │ │ ├── slice_cached.cpp │ │ ├── slice_cached.h │ │ ├── slice_into.cpp │ │ ├── slice_into.h │ │ ├── slice_mask.cpp │ │ ├── slice_mask.h │ │ ├── slice_tets.cpp │ │ ├── slice_tets.h │ │ ├── slim.cpp │ │ ├── slim.h │ │ ├── snap_points.cpp │ │ ├── snap_points.h │ │ ├── snap_to_canonical_view_quat.cpp │ │ ├── snap_to_canonical_view_quat.h │ │ ├── snap_to_fixed_up.cpp │ │ ├── snap_to_fixed_up.h │ │ ├── solid_angle.cpp │ │ ├── solid_angle.h │ │ ├── sort.cpp │ │ ├── sort.h │ │ ├── sort_angles.cpp │ │ ├── sort_angles.h │ │ ├── sort_triangles.cpp │ │ ├── sort_triangles.h │ │ ├── sort_vectors_ccw.cpp │ │ ├── sort_vectors_ccw.h │ │ ├── sortrows.cpp │ │ ├── sortrows.h │ │ ├── sparse.cpp │ │ ├── sparse.h │ │ ├── sparse_cached.cpp │ │ ├── sparse_cached.h │ │ ├── speye.cpp │ │ ├── speye.h │ │ ├── squared_edge_lengths.cpp │ │ ├── squared_edge_lengths.h │ │ ├── stdin_to_temp.cpp │ │ ├── stdin_to_temp.h │ │ ├── straighten_seams.cpp │ │ ├── straighten_seams.h │ │ ├── sum.cpp │ │ ├── sum.h │ │ ├── svd3x3.cpp │ │ ├── svd3x3.h │ │ ├── svd3x3_avx.cpp │ │ ├── svd3x3_avx.h │ │ ├── svd3x3_sse.cpp │ │ ├── svd3x3_sse.h │ │ ├── swept_volume_bounding_box.cpp │ │ ├── swept_volume_bounding_box.h │ │ ├── swept_volume_signed_distance.cpp │ │ ├── swept_volume_signed_distance.h │ │ ├── trackball.cpp │ │ ├── trackball.h │ │ ├── transpose_blocks.cpp │ │ ├── transpose_blocks.h │ │ ├── triangle │ │ ├── cdt.cpp │ │ ├── cdt.h │ │ ├── triangulate.cpp │ │ └── triangulate.h │ │ ├── triangle_fan.cpp │ │ ├── triangle_fan.h │ │ ├── triangle_triangle_adjacency.cpp │ │ ├── triangle_triangle_adjacency.h │ │ ├── triangles_from_strip.cpp │ │ ├── triangles_from_strip.h │ │ ├── two_axis_valuator_fixed_up.cpp │ │ ├── two_axis_valuator_fixed_up.h │ │ ├── uniformly_sample_two_manifold.cpp │ │ ├── uniformly_sample_two_manifold.h │ │ ├── unique.cpp │ │ ├── unique.h │ │ ├── unique_edge_map.cpp │ │ ├── unique_edge_map.h │ │ ├── unique_rows.cpp │ │ ├── unique_rows.h │ │ ├── unique_simplices.cpp │ │ ├── unique_simplices.h │ │ ├── unproject.cpp │ │ ├── unproject.h │ │ ├── unproject_in_mesh.cpp │ │ ├── unproject_in_mesh.h │ │ ├── unproject_onto_mesh.cpp │ │ ├── unproject_onto_mesh.h │ │ ├── unproject_ray.cpp │ │ ├── unproject_ray.h │ │ ├── unzip_corners.cpp │ │ ├── unzip_corners.h │ │ ├── upsample.cpp │ │ ├── upsample.h │ │ ├── vector_area_matrix.cpp │ │ ├── vector_area_matrix.h │ │ ├── verbose.h │ │ ├── vertex_triangle_adjacency.cpp │ │ ├── vertex_triangle_adjacency.h │ │ ├── volume.cpp │ │ ├── volume.h │ │ ├── voxel_grid.cpp │ │ ├── voxel_grid.h │ │ ├── winding_number.cpp │ │ ├── winding_number.h │ │ ├── writeBF.cpp │ │ ├── writeBF.h │ │ ├── writeDMAT.cpp │ │ ├── writeDMAT.h │ │ ├── writeMESH.cpp │ │ ├── writeMESH.h │ │ ├── writeOBJ.cpp │ │ ├── writeOBJ.h │ │ ├── writeOFF.cpp │ │ ├── writeOFF.h │ │ ├── writePLY.cpp │ │ ├── writePLY.h │ │ ├── writeSTL.cpp │ │ ├── writeSTL.h │ │ ├── writeTGF.cpp │ │ ├── writeTGF.h │ │ ├── writeWRL.cpp │ │ ├── writeWRL.h │ │ ├── write_triangle_mesh.cpp │ │ ├── write_triangle_mesh.h │ │ └── xml │ │ ├── ReAntTweakBarXMLSerialization.h │ │ ├── XMLSerializable.h │ │ ├── serialization_test.skip │ │ ├── serialize_xml.cpp │ │ ├── serialize_xml.h │ │ ├── writeDAE.cpp │ │ ├── writeDAE.h │ │ ├── write_triangle_mesh.cpp │ │ └── write_triangle_mesh.h ├── libnest2d │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── include │ │ └── libnest2d │ │ │ ├── backends │ │ │ └── libslic3r │ │ │ │ └── geometries.hpp │ │ │ ├── common.hpp │ │ │ ├── geometry_traits.hpp │ │ │ ├── geometry_traits_nfp.hpp │ │ │ ├── libnest2d.hpp │ │ │ ├── nester.hpp │ │ │ ├── optimizer.hpp │ │ │ ├── optimizers │ │ │ └── nlopt │ │ │ │ ├── genetic.hpp │ │ │ │ ├── nlopt_boilerplate.hpp │ │ │ │ ├── simplex.hpp │ │ │ │ └── subplex.hpp │ │ │ ├── parallel.hpp │ │ │ ├── placers │ │ │ ├── bottomleftplacer.hpp │ │ │ ├── nfpplacer.hpp │ │ │ └── placer_boilerplate.hpp │ │ │ ├── selections │ │ │ ├── djd_heuristic.hpp │ │ │ ├── filler.hpp │ │ │ ├── firstfit.hpp │ │ │ └── selection_boilerplate.hpp │ │ │ └── utils │ │ │ ├── boost_alg.hpp │ │ │ ├── metaloop.hpp │ │ │ ├── rotcalipers.hpp │ │ │ └── rotfinder.hpp │ ├── src │ │ └── libnest2d.cpp │ └── tools │ │ ├── benchmark.h │ │ └── svgtools.hpp ├── libslic3r │ ├── AABBMesh.cpp │ ├── AABBMesh.hpp │ ├── AABBTreeIndirect.hpp │ ├── AABBTreeLines.hpp │ ├── AStar.hpp │ ├── Algorithm │ │ ├── PathSorting.hpp │ │ ├── RegionExpansion.cpp │ │ └── RegionExpansion.hpp │ ├── AnyPtr.hpp │ ├── AppConfig.cpp │ ├── AppConfig.hpp │ ├── Arachne │ │ ├── BeadingStrategy │ │ │ ├── BeadingStrategy.cpp │ │ │ ├── BeadingStrategy.hpp │ │ │ ├── BeadingStrategyFactory.cpp │ │ │ ├── BeadingStrategyFactory.hpp │ │ │ ├── DistributedBeadingStrategy.cpp │ │ │ ├── DistributedBeadingStrategy.hpp │ │ │ ├── LimitedBeadingStrategy.cpp │ │ │ ├── LimitedBeadingStrategy.hpp │ │ │ ├── OuterWallInsetBeadingStrategy.cpp │ │ │ ├── OuterWallInsetBeadingStrategy.hpp │ │ │ ├── RedistributeBeadingStrategy.cpp │ │ │ ├── RedistributeBeadingStrategy.hpp │ │ │ ├── WideningBeadingStrategy.cpp │ │ │ └── WideningBeadingStrategy.hpp │ │ ├── SkeletalTrapezoidation.cpp │ │ ├── SkeletalTrapezoidation.hpp │ │ ├── SkeletalTrapezoidationEdge.hpp │ │ ├── SkeletalTrapezoidationGraph.cpp │ │ ├── SkeletalTrapezoidationGraph.hpp │ │ ├── SkeletalTrapezoidationJoint.hpp │ │ ├── WallToolPaths.cpp │ │ ├── WallToolPaths.hpp │ │ └── utils │ │ │ ├── ExtrusionJunction.cpp │ │ │ ├── ExtrusionJunction.hpp │ │ │ ├── ExtrusionLine.cpp │ │ │ ├── ExtrusionLine.hpp │ │ │ ├── HalfEdge.hpp │ │ │ ├── HalfEdgeGraph.hpp │ │ │ ├── HalfEdgeNode.hpp │ │ │ ├── PolygonsPointIndex.hpp │ │ │ ├── PolygonsSegmentIndex.hpp │ │ │ ├── PolylineStitcher.cpp │ │ │ ├── PolylineStitcher.hpp │ │ │ ├── SparseGrid.hpp │ │ │ ├── SparseLineGrid.hpp │ │ │ ├── SparsePointGrid.hpp │ │ │ ├── SquareGrid.cpp │ │ │ ├── SquareGrid.hpp │ │ │ └── linearAlg2D.hpp │ ├── Arrange.cpp │ ├── Arrange.hpp │ ├── Arrange │ │ ├── Arrange.hpp │ │ ├── ArrangeImpl.hpp │ │ ├── ArrangeSettingsDb_AppCfg.cpp │ │ ├── ArrangeSettingsDb_AppCfg.hpp │ │ ├── ArrangeSettingsView.hpp │ │ ├── Core │ │ │ ├── ArrangeBase.hpp │ │ │ ├── ArrangeFirstFit.hpp │ │ │ ├── ArrangeItemTraits.hpp │ │ │ ├── Beds.cpp │ │ │ ├── Beds.hpp │ │ │ ├── DataStoreTraits.hpp │ │ │ ├── NFP │ │ │ │ ├── CircularEdgeIterator.hpp │ │ │ │ ├── EdgeCache.cpp │ │ │ │ ├── EdgeCache.hpp │ │ │ │ ├── Kernels │ │ │ │ │ ├── CompactifyKernel.hpp │ │ │ │ │ ├── GravityKernel.hpp │ │ │ │ │ ├── KernelTraits.hpp │ │ │ │ │ ├── KernelUtils.hpp │ │ │ │ │ ├── RectangleOverfitKernelWrapper.hpp │ │ │ │ │ ├── SVGDebugOutputKernelWrapper.hpp │ │ │ │ │ └── TMArrangeKernel.hpp │ │ │ │ ├── NFP.cpp │ │ │ │ ├── NFP.hpp │ │ │ │ ├── NFPArrangeItemTraits.hpp │ │ │ │ ├── NFPConcave_CGAL.cpp │ │ │ │ ├── NFPConcave_CGAL.hpp │ │ │ │ ├── NFPConcave_Tesselate.cpp │ │ │ │ ├── NFPConcave_Tesselate.hpp │ │ │ │ ├── PackStrategyNFP.hpp │ │ │ │ └── RectangleOverfitPackingStrategy.hpp │ │ │ └── PackingContext.hpp │ │ ├── Items │ │ │ ├── ArbitraryDataStore.hpp │ │ │ ├── ArrangeItem.cpp │ │ │ ├── ArrangeItem.hpp │ │ │ ├── MutableItemTraits.hpp │ │ │ ├── SimpleArrangeItem.cpp │ │ │ ├── SimpleArrangeItem.hpp │ │ │ └── TrafoOnlyArrangeItem.hpp │ │ ├── Scene.cpp │ │ ├── Scene.hpp │ │ ├── SceneBuilder.cpp │ │ ├── SceneBuilder.hpp │ │ ├── SegmentedRectangleBed.hpp │ │ └── Tasks │ │ │ ├── ArrangeTask.hpp │ │ │ ├── ArrangeTaskImpl.hpp │ │ │ ├── FillBedTask.hpp │ │ │ ├── FillBedTaskImpl.hpp │ │ │ ├── MultiplySelectionTask.hpp │ │ │ └── MultiplySelectionTaskImpl.hpp │ ├── BlacklistedLibraryCheck.cpp │ ├── BlacklistedLibraryCheck.hpp │ ├── BoostAdapter.hpp │ ├── BoundingBox.cpp │ ├── BoundingBox.hpp │ ├── BranchingTree │ │ ├── BranchingTree.cpp │ │ ├── BranchingTree.hpp │ │ ├── PointCloud.cpp │ │ └── PointCloud.hpp │ ├── BridgeDetector.cpp │ ├── BridgeDetector.hpp │ ├── Brim.cpp │ ├── Brim.hpp │ ├── BuildVolume.cpp │ ├── BuildVolume.hpp │ ├── CMakeLists.txt │ ├── CSGMesh │ │ ├── CSGMesh.hpp │ │ ├── CSGMeshCopy.hpp │ │ ├── ModelToCSGMesh.hpp │ │ ├── PerformCSGMeshBooleans.hpp │ │ ├── SliceCSGMesh.hpp │ │ ├── TriangleMeshAdapter.hpp │ │ └── VoxelizeCSGMesh.hpp │ ├── Channel.hpp │ ├── ClipperUtils.cpp │ ├── ClipperUtils.hpp │ ├── ClipperZUtils.hpp │ ├── Color.cpp │ ├── Color.hpp │ ├── Config.cpp │ ├── Config.hpp │ ├── CustomGCode.cpp │ ├── CustomGCode.hpp │ ├── CutSurface.cpp │ ├── CutSurface.hpp │ ├── CutUtils.cpp │ ├── CutUtils.hpp │ ├── EdgeGrid.cpp │ ├── EdgeGrid.hpp │ ├── ElephantFootCompensation.cpp │ ├── ElephantFootCompensation.hpp │ ├── Emboss.cpp │ ├── Emboss.hpp │ ├── EmbossShape.hpp │ ├── ExPolygon.cpp │ ├── ExPolygon.hpp │ ├── ExPolygonSerialize.hpp │ ├── ExPolygonsIndex.cpp │ ├── ExPolygonsIndex.hpp │ ├── Exception.hpp │ ├── Execution │ │ ├── Execution.hpp │ │ ├── ExecutionSeq.hpp │ │ └── ExecutionTBB.hpp │ ├── Extruder.cpp │ ├── Extruder.hpp │ ├── ExtrusionEntity.cpp │ ├── ExtrusionEntity.hpp │ ├── ExtrusionEntityCollection.cpp │ ├── ExtrusionEntityCollection.hpp │ ├── ExtrusionRole.cpp │ ├── ExtrusionRole.hpp │ ├── ExtrusionSimulator.cpp │ ├── ExtrusionSimulator.hpp │ ├── FileParserError.hpp │ ├── Fill │ │ ├── Fill.cpp │ │ ├── Fill3DHoneycomb.cpp │ │ ├── Fill3DHoneycomb.hpp │ │ ├── FillAdaptive.cpp │ │ ├── FillAdaptive.hpp │ │ ├── FillBase.cpp │ │ ├── FillBase.hpp │ │ ├── FillConcentric.cpp │ │ ├── FillConcentric.hpp │ │ ├── FillEnsuring.cpp │ │ ├── FillEnsuring.hpp │ │ ├── FillGyroid.cpp │ │ ├── FillGyroid.hpp │ │ ├── FillHoneycomb.cpp │ │ ├── FillHoneycomb.hpp │ │ ├── FillLightning.cpp │ │ ├── FillLightning.hpp │ │ ├── FillLine.cpp │ │ ├── FillLine.hpp │ │ ├── FillPlanePath.cpp │ │ ├── FillPlanePath.hpp │ │ ├── FillRectilinear.cpp │ │ ├── FillRectilinear.hpp │ │ ├── FillSmooth.cpp │ │ ├── FillSmooth.hpp │ │ └── Lightning │ │ │ ├── DistanceField.cpp │ │ │ ├── DistanceField.hpp │ │ │ ├── Generator.cpp │ │ │ ├── Generator.hpp │ │ │ ├── Layer.cpp │ │ │ ├── Layer.hpp │ │ │ ├── TreeNode.cpp │ │ │ └── TreeNode.hpp │ ├── Flow.cpp │ ├── Flow.hpp │ ├── Format │ │ ├── 3mf.cpp │ │ ├── 3mf.hpp │ │ ├── AMF.cpp │ │ ├── AMF.hpp │ │ ├── AnycubicSLA.cpp │ │ ├── AnycubicSLA.hpp │ │ ├── BBConfig.cpp │ │ ├── BBConfig.hpp │ │ ├── CWS.cpp │ │ ├── CWS.hpp │ │ ├── HFP.cpp │ │ ├── HFP.hpp │ │ ├── OBJ.cpp │ │ ├── OBJ.hpp │ │ ├── SL1.cpp │ │ ├── SL1.hpp │ │ ├── SL1_SVG.cpp │ │ ├── SL1_SVG.hpp │ │ ├── SLAArchiveFormatRegistry.cpp │ │ ├── SLAArchiveFormatRegistry.hpp │ │ ├── SLAArchiveReader.cpp │ │ ├── SLAArchiveReader.hpp │ │ ├── SLAArchiveWriter.cpp │ │ ├── SLAArchiveWriter.hpp │ │ ├── STEP.cpp │ │ ├── STEP.hpp │ │ ├── STL.cpp │ │ ├── STL.hpp │ │ ├── SVG.cpp │ │ ├── SVG.hpp │ │ ├── ZipperArchiveImport.cpp │ │ ├── ZipperArchiveImport.hpp │ │ ├── bbs_3mf.cpp │ │ ├── bbs_3mf.hpp │ │ ├── objparser.cpp │ │ └── objparser.hpp │ ├── GCode.cpp │ ├── GCode.hpp │ ├── GCode │ │ ├── AvoidCrossingPerimeters.cpp │ │ ├── AvoidCrossingPerimeters.hpp │ │ ├── ConflictChecker.cpp │ │ ├── ConflictChecker.hpp │ │ ├── CoolingBuffer.cpp │ │ ├── CoolingBuffer.hpp │ │ ├── ExtrusionProcessor.cpp │ │ ├── ExtrusionProcessor.hpp │ │ ├── FanMover.cpp │ │ ├── FanMover.hpp │ │ ├── FindReplace.cpp │ │ ├── FindReplace.hpp │ │ ├── GCodeFormatter.cpp │ │ ├── GCodeFormatter.hpp │ │ ├── GCodeProcessor.cpp │ │ ├── GCodeProcessor.hpp │ │ ├── GCodeWriter.cpp │ │ ├── GCodeWriter.hpp │ │ ├── LabelObjects.cpp │ │ ├── LabelObjects.hpp │ │ ├── PostProcessor.cpp │ │ ├── PostProcessor.hpp │ │ ├── PressureEqualizer.cpp │ │ ├── PressureEqualizer.hpp │ │ ├── PrintExtents.cpp │ │ ├── PrintExtents.hpp │ │ ├── RetractWhenCrossingPerimeters.cpp │ │ ├── RetractWhenCrossingPerimeters.hpp │ │ ├── SeamPlacer.cpp │ │ ├── SeamPlacer.hpp │ │ ├── SmoothPath.cpp │ │ ├── SmoothPath.hpp │ │ ├── SpiralVase.cpp │ │ ├── SpiralVase.hpp │ │ ├── ThumbnailData.cpp │ │ ├── ThumbnailData.hpp │ │ ├── Thumbnails.cpp │ │ ├── Thumbnails.hpp │ │ ├── ToolOrdering.cpp │ │ ├── ToolOrdering.hpp │ │ ├── Travels.cpp │ │ ├── Travels.hpp │ │ ├── Wipe.cpp │ │ ├── Wipe.hpp │ │ ├── WipeTower.cpp │ │ ├── WipeTower.hpp │ │ ├── WipeTowerIntegration.cpp │ │ └── WipeTowerIntegration.hpp │ ├── GCodeReader.cpp │ ├── GCodeReader.hpp │ ├── GCodeSender.cpp │ ├── GCodeSender.hpp │ ├── Geometry.cpp │ ├── Geometry.hpp │ ├── Geometry │ │ ├── ArcFitter.cpp │ │ ├── ArcFitter.hpp │ │ ├── ArcWelder.cpp │ │ ├── ArcWelder.hpp │ │ ├── Bicubic.hpp │ │ ├── Circle.cpp │ │ ├── Circle.hpp │ │ ├── ConvexHull.cpp │ │ ├── ConvexHull.hpp │ │ ├── Curves.hpp │ │ ├── MedialAxis.cpp │ │ ├── MedialAxis.hpp │ │ ├── Voronoi.cpp │ │ ├── Voronoi.hpp │ │ ├── VoronoiOffset.cpp │ │ ├── VoronoiOffset.hpp │ │ ├── VoronoiUtils.cpp │ │ ├── VoronoiUtils.hpp │ │ ├── VoronoiUtilsCgal.cpp │ │ ├── VoronoiUtilsCgal.hpp │ │ └── VoronoiVisualUtils.hpp │ ├── I18N.hpp │ ├── Int128.hpp │ ├── IntersectionPoints.cpp │ ├── IntersectionPoints.hpp │ ├── JumpPointSearch.cpp │ ├── JumpPointSearch.hpp │ ├── KDTreeIndirect.hpp │ ├── Layer.cpp │ ├── Layer.hpp │ ├── LayerRegion.cpp │ ├── Line.cpp │ ├── Line.hpp │ ├── LocalesUtils.cpp │ ├── LocalesUtils.hpp │ ├── Log.cpp │ ├── Log.hpp │ ├── MTUtils.hpp │ ├── MarchingSquares.hpp │ ├── Measure.cpp │ ├── Measure.hpp │ ├── MeasureUtils.hpp │ ├── MeshBoolean.cpp │ ├── MeshBoolean.hpp │ ├── MeshNormals.cpp │ ├── MeshNormals.hpp │ ├── MeshSplitImpl.hpp │ ├── Milling │ │ ├── MillingPostProcess.cpp │ │ └── MillingPostProcess.hpp │ ├── MinAreaBoundingBox.cpp │ ├── MinAreaBoundingBox.hpp │ ├── Model.cpp │ ├── Model.hpp │ ├── ModelArrange.cpp │ ├── ModelArrange.hpp │ ├── MultiMaterialSegmentation.cpp │ ├── MultiMaterialSegmentation.hpp │ ├── MultiPoint.cpp │ ├── MultiPoint.hpp │ ├── MutablePolygon.cpp │ ├── MutablePolygon.hpp │ ├── MutablePriorityQueue.hpp │ ├── NSVGUtils.cpp │ ├── NSVGUtils.hpp │ ├── NormalUtils.cpp │ ├── NormalUtils.hpp │ ├── ObjectID.cpp │ ├── ObjectID.hpp │ ├── OpenVDBUtils.cpp │ ├── OpenVDBUtils.hpp │ ├── OpenVDBUtilsLegacy.hpp │ ├── Optimize │ │ ├── BruteforceOptimizer.hpp │ │ ├── NLoptOptimizer.hpp │ │ └── Optimizer.hpp │ ├── Orient.cpp │ ├── Orient.hpp │ ├── PNGReadWrite.cpp │ ├── PNGReadWrite.hpp │ ├── PerimeterGenerator.cpp │ ├── PerimeterGenerator.hpp │ ├── PlaceholderParser.cpp │ ├── PlaceholderParser.hpp │ ├── Platform.cpp │ ├── Platform.hpp │ ├── Point.cpp │ ├── Point.hpp │ ├── PointGrid.hpp │ ├── Polygon.cpp │ ├── Polygon.hpp │ ├── PolygonTrimmer.cpp │ ├── PolygonTrimmer.hpp │ ├── Polyline.cpp │ ├── Polyline.hpp │ ├── Preset.cpp │ ├── Preset.hpp │ ├── PresetBundle.cpp │ ├── PresetBundle.hpp │ ├── PrincipalComponents2D.cpp │ ├── PrincipalComponents2D.hpp │ ├── Print.cpp │ ├── Print.hpp │ ├── PrintApply.cpp │ ├── PrintBase.cpp │ ├── PrintBase.hpp │ ├── PrintConfig.cpp │ ├── PrintConfig.hpp │ ├── PrintObject.cpp │ ├── PrintObjectSlice.cpp │ ├── PrintRegion.cpp │ ├── QuadricEdgeCollapse.cpp │ ├── QuadricEdgeCollapse.hpp │ ├── RegionSettings.cpp │ ├── RegionSettings.hpp │ ├── SLA │ │ ├── AGGRaster.hpp │ │ ├── BranchingTreeSLA.cpp │ │ ├── BranchingTreeSLA.hpp │ │ ├── Clustering.cpp │ │ ├── Clustering.hpp │ │ ├── ConcaveHull.cpp │ │ ├── ConcaveHull.hpp │ │ ├── DefaultSupportTree.cpp │ │ ├── DefaultSupportTree.hpp │ │ ├── Hollowing.cpp │ │ ├── Hollowing.hpp │ │ ├── JobController.hpp │ │ ├── Pad.cpp │ │ ├── Pad.hpp │ │ ├── RasterBase.cpp │ │ ├── RasterBase.hpp │ │ ├── RasterToPolygons.cpp │ │ ├── RasterToPolygons.hpp │ │ ├── ReprojectPointsOnMesh.hpp │ │ ├── Rotfinder.cpp │ │ ├── Rotfinder.hpp │ │ ├── SpatIndex.cpp │ │ ├── SpatIndex.hpp │ │ ├── SupportPoint.hpp │ │ ├── SupportPointGenerator.cpp │ │ ├── SupportPointGenerator.hpp │ │ ├── SupportTree.cpp │ │ ├── SupportTree.hpp │ │ ├── SupportTreeBuilder.cpp │ │ ├── SupportTreeBuilder.hpp │ │ ├── SupportTreeMesher.cpp │ │ ├── SupportTreeMesher.hpp │ │ ├── SupportTreeStrategies.hpp │ │ ├── SupportTreeUtils.hpp │ │ └── SupportTreeUtilsLegacy.hpp │ ├── SLAPrint.cpp │ ├── SLAPrint.hpp │ ├── SLAPrintSteps.cpp │ ├── SLAPrintSteps.hpp │ ├── SVG.cpp │ ├── SVG.hpp │ ├── Semver.cpp │ ├── Semver.hpp │ ├── ShortEdgeCollapse.cpp │ ├── ShortEdgeCollapse.hpp │ ├── ShortestPath.cpp │ ├── ShortestPath.hpp │ ├── SlicesToTriangleMesh.cpp │ ├── SlicesToTriangleMesh.hpp │ ├── Slicing.cpp │ ├── Slicing.hpp │ ├── SlicingAdaptive.cpp │ ├── SlicingAdaptive.hpp │ ├── StaticMap.hpp │ ├── Subdivide.cpp │ ├── Subdivide.hpp │ ├── Support │ │ ├── OrganicSupport.cpp │ │ ├── OrganicSupport.hpp │ │ ├── SupportCommon.cpp │ │ ├── SupportCommon.hpp │ │ ├── SupportDebug.cpp │ │ ├── SupportDebug.hpp │ │ ├── SupportLayer.hpp │ │ ├── SupportMaterial.cpp │ │ ├── SupportMaterial.hpp │ │ ├── SupportParameters.cpp │ │ ├── SupportParameters.hpp │ │ ├── TreeModelVolumes.cpp │ │ ├── TreeModelVolumes.hpp │ │ ├── TreeSupport.cpp │ │ ├── TreeSupport.hpp │ │ ├── TreeSupportCommon.cpp │ │ └── TreeSupportCommon.hpp │ ├── SupportSpotsGenerator.cpp │ ├── SupportSpotsGenerator.hpp │ ├── Surface.cpp │ ├── Surface.hpp │ ├── SurfaceCollection.cpp │ ├── SurfaceCollection.hpp │ ├── SurfaceMesh.hpp │ ├── Technologies.hpp │ ├── Tesselate.cpp │ ├── Tesselate.hpp │ ├── TextConfiguration.hpp │ ├── Thread.cpp │ ├── Thread.hpp │ ├── Time.cpp │ ├── Time.hpp │ ├── Timer.cpp │ ├── Timer.hpp │ ├── TriangleMesh.cpp │ ├── TriangleMesh.hpp │ ├── TriangleMeshSlicer.cpp │ ├── TriangleMeshSlicer.hpp │ ├── TriangleSelector.cpp │ ├── TriangleSelector.hpp │ ├── TriangleSelectorWrapper.cpp │ ├── TriangleSelectorWrapper.hpp │ ├── TriangleSetSampling.cpp │ ├── TriangleSetSampling.hpp │ ├── TriangulateWall.hpp │ ├── Triangulation.cpp │ ├── Triangulation.hpp │ ├── TryCatchSignal.cpp │ ├── TryCatchSignal.hpp │ ├── TryCatchSignalSEH.cpp │ ├── TryCatchSignalSEH.hpp │ ├── Utils.hpp │ ├── Zipper.cpp │ ├── Zipper.hpp │ ├── clipper.cpp │ ├── clipper.hpp │ ├── clonable_ptr.hpp │ ├── enum_bitmask.hpp │ ├── format.hpp │ ├── libslic3r.h │ ├── libslic3r_version.h.in │ ├── miniz_extension.cpp │ ├── miniz_extension.hpp │ ├── pchheader.cpp │ ├── pchheader.hpp │ └── utils.cpp ├── miniz │ ├── CMakeLists.txt │ ├── ChangeLog.md │ ├── LICENSE │ ├── README-Prusa.txt │ ├── miniz.c │ ├── miniz.h │ └── readme.md ├── nlohmann │ ├── adl_serializer.hpp │ ├── byte_container_with_subtype.hpp │ ├── detail │ │ ├── conversions │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta │ │ │ ├── call_std │ │ │ │ ├── begin.hpp │ │ │ │ └── end.hpp │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_escape.hpp │ │ └── value_t.hpp │ ├── json.hpp │ ├── json_fwd.hpp │ ├── ordered_map.hpp │ └── thirdparty │ │ └── hedley │ │ ├── hedley.hpp │ │ └── hedley_undef.hpp ├── occt_wrapper │ ├── CMakeLists.txt │ ├── OCCTWrapper.cpp │ └── OCCTWrapper.hpp ├── platform │ ├── download_vendor_bundles.py │ ├── msw │ │ ├── PrusaSlicer.manifest.in │ │ ├── Slic3r.rc.in │ │ ├── gcodeviewer.rc.in │ │ └── winInstaller.wxs.in │ ├── osx │ │ ├── BuildMacOSImage.sh.in │ │ ├── Info.plist.in │ │ └── entitlements.plist │ └── unix │ │ ├── BuildLinuxImage.sh.in │ │ ├── Gcodeviewer.desktop.in │ │ ├── Slic3r.desktop.in │ │ ├── build_appimage.sh.in │ │ ├── fhs.hpp.in │ │ └── linux.d │ │ ├── README.md │ │ ├── arch │ │ ├── debian │ │ └── fedora ├── qoi │ ├── CMakeLists.txt │ ├── README.md │ ├── qoi.h │ └── qoilib.c ├── semver │ ├── CMakeLists.txt │ ├── semver.c │ └── semver.h ├── slic3r │ ├── CMakeLists.txt │ ├── Config │ │ ├── Snapshot.cpp │ │ ├── Snapshot.hpp │ │ ├── Version.cpp │ │ └── Version.hpp │ ├── GUI │ │ ├── 2DBed.cpp │ │ ├── 2DBed.hpp │ │ ├── 3DBed.cpp │ │ ├── 3DBed.hpp │ │ ├── 3DScene.cpp │ │ ├── 3DScene.hpp │ │ ├── AboutDialog.cpp │ │ ├── AboutDialog.hpp │ │ ├── ArrangeSettingsDialogImgui.cpp │ │ ├── ArrangeSettingsDialogImgui.hpp │ │ ├── BackgroundSlicingProcess.cpp │ │ ├── BackgroundSlicingProcess.hpp │ │ ├── BedShapeDialog.cpp │ │ ├── BedShapeDialog.hpp │ │ ├── BitmapCache.cpp │ │ ├── BitmapCache.hpp │ │ ├── BitmapComboBox.cpp │ │ ├── BitmapComboBox.hpp │ │ ├── BonjourDialog.cpp │ │ ├── BonjourDialog.hpp │ │ ├── ButtonsDescription.cpp │ │ ├── ButtonsDescription.hpp │ │ ├── CalibrationAbstractDialog.cpp │ │ ├── CalibrationAbstractDialog.hpp │ │ ├── CalibrationBedDialog.cpp │ │ ├── CalibrationBedDialog.hpp │ │ ├── CalibrationBridgeDialog.cpp │ │ ├── CalibrationBridgeDialog.hpp │ │ ├── CalibrationCubeDialog.cpp │ │ ├── CalibrationCubeDialog.hpp │ │ ├── CalibrationFlowDialog.cpp │ │ ├── CalibrationFlowDialog.hpp │ │ ├── CalibrationFlowSpeedDialog.cpp │ │ ├── CalibrationFlowSpeedDialog.hpp │ │ ├── CalibrationOverBridgeDialog.cpp │ │ ├── CalibrationOverBridgeDialog.hpp │ │ ├── CalibrationPressureAdvDialog.cpp │ │ ├── CalibrationPressureAdvDialog.hpp │ │ ├── CalibrationRetractionDialog.cpp │ │ ├── CalibrationRetractionDialog.hpp │ │ ├── CalibrationTempDialog.cpp │ │ ├── CalibrationTempDialog.hpp │ │ ├── Camera.cpp │ │ ├── Camera.hpp │ │ ├── CameraUtils.cpp │ │ ├── CameraUtils.hpp │ │ ├── ConfigExceptions.hpp │ │ ├── ConfigManipulation.cpp │ │ ├── ConfigManipulation.hpp │ │ ├── ConfigSnapshotDialog.cpp │ │ ├── ConfigSnapshotDialog.hpp │ │ ├── ConfigWizard.cpp │ │ ├── ConfigWizard.hpp │ │ ├── ConfigWizard_private.hpp │ │ ├── CoordAxes.cpp │ │ ├── CoordAxes.hpp │ │ ├── CreateMMUTiledCanvas.cpp │ │ ├── CreateMMUTiledCanvas.hpp │ │ ├── DesktopIntegrationDialog.cpp │ │ ├── DesktopIntegrationDialog.hpp │ │ ├── DoubleSlider.cpp │ │ ├── DoubleSlider.hpp │ │ ├── Downloader.cpp │ │ ├── Downloader.hpp │ │ ├── DownloaderFileGet.cpp │ │ ├── DownloaderFileGet.hpp │ │ ├── EditGCodeDialog.cpp │ │ ├── EditGCodeDialog.hpp │ │ ├── Event.hpp │ │ ├── ExtraRenderers.cpp │ │ ├── ExtraRenderers.hpp │ │ ├── ExtruderSequenceDialog.cpp │ │ ├── ExtruderSequenceDialog.hpp │ │ ├── Field.cpp │ │ ├── Field.hpp │ │ ├── FileArchiveDialog.cpp │ │ ├── FileArchiveDialog.hpp │ │ ├── FirmwareDialog.cpp │ │ ├── FirmwareDialog.hpp │ │ ├── FreeCADDialog.cpp │ │ ├── FreeCADDialog.hpp │ │ ├── GCodeViewer.cpp │ │ ├── GCodeViewer.hpp │ │ ├── GLCanvas3D.cpp │ │ ├── GLCanvas3D.hpp │ │ ├── GLModel.cpp │ │ ├── GLModel.hpp │ │ ├── GLSelectionRectangle.cpp │ │ ├── GLSelectionRectangle.hpp │ │ ├── GLShader.cpp │ │ ├── GLShader.hpp │ │ ├── GLShadersManager.cpp │ │ ├── GLShadersManager.hpp │ │ ├── GLTexture.cpp │ │ ├── GLTexture.hpp │ │ ├── GLToolbar.cpp │ │ ├── GLToolbar.hpp │ │ ├── GUI.cpp │ │ ├── GUI.hpp │ │ ├── GUI_App.cpp │ │ ├── GUI_App.hpp │ │ ├── GUI_Factories.cpp │ │ ├── GUI_Factories.hpp │ │ ├── GUI_Geometry.cpp │ │ ├── GUI_Geometry.hpp │ │ ├── GUI_Init.cpp │ │ ├── GUI_Init.hpp │ │ ├── GUI_ObjectLayers.cpp │ │ ├── GUI_ObjectLayers.hpp │ │ ├── GUI_ObjectList.cpp │ │ ├── GUI_ObjectList.hpp │ │ ├── GUI_ObjectManipulation.cpp │ │ ├── GUI_ObjectManipulation.hpp │ │ ├── GUI_ObjectSettings.cpp │ │ ├── GUI_ObjectSettings.hpp │ │ ├── GUI_Preview.cpp │ │ ├── GUI_Preview.hpp │ │ ├── GUI_Tags.cpp │ │ ├── GUI_Tags.hpp │ │ ├── GUI_Utils.cpp │ │ ├── GUI_Utils.hpp │ │ ├── GalleryDialog.cpp │ │ ├── GalleryDialog.hpp │ │ ├── Gizmos │ │ │ ├── GLGizmoBase.cpp │ │ │ ├── GLGizmoBase.hpp │ │ │ ├── GLGizmoCut.cpp │ │ │ ├── GLGizmoCut.hpp │ │ │ ├── GLGizmoEmboss.cpp │ │ │ ├── GLGizmoEmboss.hpp │ │ │ ├── GLGizmoFdmSupports.cpp │ │ │ ├── GLGizmoFdmSupports.hpp │ │ │ ├── GLGizmoFlatten.cpp │ │ │ ├── GLGizmoFlatten.hpp │ │ │ ├── GLGizmoHollow.cpp │ │ │ ├── GLGizmoHollow.hpp │ │ │ ├── GLGizmoMeasure.cpp │ │ │ ├── GLGizmoMeasure.hpp │ │ │ ├── GLGizmoMmuSegmentation.cpp │ │ │ ├── GLGizmoMmuSegmentation.hpp │ │ │ ├── GLGizmoMove.cpp │ │ │ ├── GLGizmoMove.hpp │ │ │ ├── GLGizmoPainterBase.cpp │ │ │ ├── GLGizmoPainterBase.hpp │ │ │ ├── GLGizmoRotate.cpp │ │ │ ├── GLGizmoRotate.hpp │ │ │ ├── GLGizmoSVG.cpp │ │ │ ├── GLGizmoSVG.hpp │ │ │ ├── GLGizmoScale.cpp │ │ │ ├── GLGizmoScale.hpp │ │ │ ├── GLGizmoSeam.cpp │ │ │ ├── GLGizmoSeam.hpp │ │ │ ├── GLGizmoSimplify.cpp │ │ │ ├── GLGizmoSimplify.hpp │ │ │ ├── GLGizmoSlaBase.cpp │ │ │ ├── GLGizmoSlaBase.hpp │ │ │ ├── GLGizmoSlaSupports.cpp │ │ │ ├── GLGizmoSlaSupports.hpp │ │ │ ├── GLGizmos.hpp │ │ │ ├── GLGizmosCommon.cpp │ │ │ ├── GLGizmosCommon.hpp │ │ │ ├── GLGizmosManager.cpp │ │ │ └── GLGizmosManager.hpp │ │ ├── GraphDialog.cpp │ │ ├── GraphDialog.hpp │ │ ├── HintNotification.cpp │ │ ├── HintNotification.hpp │ │ ├── I18N.cpp │ │ ├── I18N.hpp │ │ ├── IconManager.cpp │ │ ├── IconManager.hpp │ │ ├── ImGuiWrapper.cpp │ │ ├── ImGuiWrapper.hpp │ │ ├── InstanceCheck.cpp │ │ ├── InstanceCheck.hpp │ │ ├── InstanceCheckMac.h │ │ ├── InstanceCheckMac.mm │ │ ├── Jobs │ │ │ ├── ArrangeJob.cpp │ │ │ ├── ArrangeJob.hpp │ │ │ ├── ArrangeJob2.cpp │ │ │ ├── ArrangeJob2.hpp │ │ │ ├── BoostThreadWorker.cpp │ │ │ ├── BoostThreadWorker.hpp │ │ │ ├── BusyCursorJob.hpp │ │ │ ├── CancellableJob.hpp │ │ │ ├── CreateFontNameImageJob.cpp │ │ │ ├── CreateFontNameImageJob.hpp │ │ │ ├── CreateFontStyleImagesJob.cpp │ │ │ ├── CreateFontStyleImagesJob.hpp │ │ │ ├── EmbossJob.cpp │ │ │ ├── EmbossJob.hpp │ │ │ ├── FillBedJob.cpp │ │ │ ├── FillBedJob.hpp │ │ │ ├── Job.hpp │ │ │ ├── NotificationProgressIndicator.cpp │ │ │ ├── NotificationProgressIndicator.hpp │ │ │ ├── OrientJob.cpp │ │ │ ├── OrientJob.hpp │ │ │ ├── PlaterWorker.hpp │ │ │ ├── ProgressIndicator.hpp │ │ │ ├── RotoptimizeJob.cpp │ │ │ ├── RotoptimizeJob.hpp │ │ │ ├── SLAImportDialog.hpp │ │ │ ├── SLAImportJob.cpp │ │ │ ├── SLAImportJob.hpp │ │ │ ├── ThreadSafeQueue.hpp │ │ │ ├── UIThreadWorker.hpp │ │ │ └── Worker.hpp │ │ ├── KBShortcutsDialog.cpp │ │ ├── KBShortcutsDialog.hpp │ │ ├── LoadStepDialog.cpp │ │ ├── LoadStepDialog.hpp │ │ ├── MainFrame.cpp │ │ ├── MainFrame.hpp │ │ ├── MeshUtils.cpp │ │ ├── MeshUtils.hpp │ │ ├── Mouse3DController.cpp │ │ ├── Mouse3DController.hpp │ │ ├── Mouse3DHandlerMac.mm │ │ ├── MsgDialog.cpp │ │ ├── MsgDialog.hpp │ │ ├── Notebook.cpp │ │ ├── Notebook.hpp │ │ ├── NotificationManager.cpp │ │ ├── NotificationManager.hpp │ │ ├── OG_CustomCtrl.cpp │ │ ├── OG_CustomCtrl.hpp │ │ ├── ObjectDataViewModel.cpp │ │ ├── ObjectDataViewModel.hpp │ │ ├── OpenGLManager.cpp │ │ ├── OpenGLManager.hpp │ │ ├── OptionsGroup.cpp │ │ ├── OptionsGroup.hpp │ │ ├── PhysicalPrinterDialog.cpp │ │ ├── PhysicalPrinterDialog.hpp │ │ ├── Plater.cpp │ │ ├── Plater.hpp │ │ ├── Preferences.cpp │ │ ├── Preferences.hpp │ │ ├── PresetComboBoxes.cpp │ │ ├── PresetComboBoxes.hpp │ │ ├── PresetHints.cpp │ │ ├── PresetHints.hpp │ │ ├── PrintHostDialogs.cpp │ │ ├── PrintHostDialogs.hpp │ │ ├── ProgressStatusBar.cpp │ │ ├── ProgressStatusBar.hpp │ │ ├── ProjectDirtyStateManager.cpp │ │ ├── ProjectDirtyStateManager.hpp │ │ ├── RammingChart.cpp │ │ ├── RammingChart.hpp │ │ ├── RemovableDriveManager.cpp │ │ ├── RemovableDriveManager.hpp │ │ ├── RemovableDriveManagerMM.h │ │ ├── RemovableDriveManagerMM.mm │ │ ├── SavePresetDialog.cpp │ │ ├── SavePresetDialog.hpp │ │ ├── SceneRaycaster.cpp │ │ ├── SceneRaycaster.hpp │ │ ├── ScriptExecutor.cpp │ │ ├── ScriptExecutor.hpp │ │ ├── Search.cpp │ │ ├── Search.hpp │ │ ├── Selection.cpp │ │ ├── Selection.hpp │ │ ├── SendSystemInfoDialog.cpp │ │ ├── SendSystemInfoDialog.hpp │ │ ├── SurfaceDrag.cpp │ │ ├── SurfaceDrag.hpp │ │ ├── SysInfoDialog.cpp │ │ ├── SysInfoDialog.hpp │ │ ├── Tab.cpp │ │ ├── Tab.hpp │ │ ├── TextLines.cpp │ │ ├── TextLines.hpp │ │ ├── UnsavedChangesDialog.cpp │ │ ├── UnsavedChangesDialog.hpp │ │ ├── UpdateDialogs.cpp │ │ ├── UpdateDialogs.hpp │ │ ├── Widgets │ │ │ ├── BitmapToggleButton.cpp │ │ │ ├── BitmapToggleButton.hpp │ │ │ ├── Button.cpp │ │ │ ├── Button.hpp │ │ │ ├── CheckBox.cpp │ │ │ ├── CheckBox.hpp │ │ │ ├── ComboBox.cpp │ │ │ ├── ComboBox.hpp │ │ │ ├── DropDown.cpp │ │ │ ├── DropDown.hpp │ │ │ ├── GraphBitmapButton.cpp │ │ │ ├── GraphBitmapButton.hpp │ │ │ ├── Label.cpp │ │ │ ├── Label.hpp │ │ │ ├── SpinInput.cpp │ │ │ ├── SpinInput.hpp │ │ │ ├── StateColor.cpp │ │ │ ├── StateColor.hpp │ │ │ ├── StateHandler.cpp │ │ │ ├── StateHandler.hpp │ │ │ ├── StaticBox.cpp │ │ │ ├── StaticBox.hpp │ │ │ ├── SwitchButton.cpp │ │ │ ├── SwitchButton.hpp │ │ │ ├── TextInput.cpp │ │ │ ├── TextInput.hpp │ │ │ ├── UIColors.cpp │ │ │ └── UIColors.hpp │ │ ├── WifiConfigDialog.cpp │ │ ├── WifiConfigDialog.hpp │ │ ├── WipeTowerDialog.cpp │ │ ├── WipeTowerDialog.hpp │ │ ├── format.hpp │ │ ├── fts_fuzzy_match.h │ │ ├── wxExtensions.cpp │ │ ├── wxExtensions.hpp │ │ └── wxinit.h │ ├── StackWalker.cpp │ ├── StackWalker.h │ ├── Utils │ │ ├── ASCIIFolding.cpp │ │ ├── ASCIIFolding.hpp │ │ ├── AppUpdater.cpp │ │ ├── AppUpdater.hpp │ │ ├── AstroBox.cpp │ │ ├── AstroBox.hpp │ │ ├── Bonjour.cpp │ │ ├── Bonjour.hpp │ │ ├── Duet.cpp │ │ ├── Duet.hpp │ │ ├── EmbossStyleManager.cpp │ │ ├── EmbossStyleManager.hpp │ │ ├── FixModelByWin10.cpp │ │ ├── FixModelByWin10.hpp │ │ ├── FlashAir.cpp │ │ ├── FlashAir.hpp │ │ ├── FontConfigHelp.cpp │ │ ├── FontConfigHelp.hpp │ │ ├── HexFile.cpp │ │ ├── HexFile.hpp │ │ ├── Http.cpp │ │ ├── Http.hpp │ │ ├── Klipper.cpp │ │ ├── Klipper.hpp │ │ ├── MKS.cpp │ │ ├── MKS.hpp │ │ ├── MPMDv2.cpp │ │ ├── MPMDv2.hpp │ │ ├── MacDarkMode.hpp │ │ ├── MacDarkMode.mm │ │ ├── MacUtils.mm │ │ ├── Moonraker.cpp │ │ ├── Moonraker.hpp │ │ ├── OctoPrint.cpp │ │ ├── OctoPrint.hpp │ │ ├── PresetUpdater.cpp │ │ ├── PresetUpdater.hpp │ │ ├── PrintHost.cpp │ │ ├── PrintHost.hpp │ │ ├── Process.cpp │ │ ├── Process.hpp │ │ ├── RaycastManager.cpp │ │ ├── RaycastManager.hpp │ │ ├── Repetier.cpp │ │ ├── Repetier.hpp │ │ ├── RetinaHelper.hpp │ │ ├── RetinaHelperImpl.hmm │ │ ├── RetinaHelperImpl.mm │ │ ├── Serial.cpp │ │ ├── Serial.hpp │ │ ├── TCPConsole.cpp │ │ ├── TCPConsole.hpp │ │ ├── UndoRedo.cpp │ │ ├── UndoRedo.hpp │ │ ├── WifiScanner.cpp │ │ ├── WifiScanner.hpp │ │ ├── WifiScannerMac.h │ │ ├── WifiScannerMac.mm │ │ ├── WinRegistry.cpp │ │ ├── WinRegistry.hpp │ │ ├── WxFontUtils.cpp │ │ └── WxFontUtils.hpp │ ├── pchheader.cpp │ └── pchheader.hpp ├── stb_dxt │ └── stb_dxt.h ├── tcbspan │ ├── README.md │ └── span.hpp └── test-utils │ ├── CMakeLists.txt │ ├── ClipboardXX │ └── include │ │ ├── clipboardxx.hpp │ │ └── detail │ │ ├── exception.hpp │ │ ├── interface.hpp │ │ ├── linux.hpp │ │ ├── linux │ │ ├── provider.hpp │ │ ├── x11_event_handler.hpp │ │ ├── x11_provider.hpp │ │ └── xcb │ │ │ ├── xcb.hpp │ │ │ └── xcb_event.hpp │ │ └── windows.hpp │ ├── convert_config.cpp │ └── stl_to_cpp.cpp ├── tests ├── CMakeLists.txt ├── arrange │ ├── CMakeLists.txt │ ├── arrange_tests_main.cpp │ ├── test_arrange.cpp │ └── test_arrange_integration.cpp ├── catch_main.hpp ├── cpp17 │ ├── CMakeLists.txt │ └── main.cpp ├── data │ ├── 20mm_cube.obj │ ├── 2x20x10.obj │ ├── A.obj │ ├── A_upsidedown.obj │ ├── README.md │ ├── U_overhang.obj │ ├── V.obj │ ├── V_standing.obj │ ├── bridge.obj │ ├── contour_ALIENATO.TTF_glyph_i.svg │ ├── contour_Allura_Script.ttf_glyph_m.svg │ ├── contour_neighbor.svg │ ├── cpp │ │ └── test_data.cpp │ ├── cube_with_concave_hole.obj │ ├── cube_with_concave_hole_enlarged.obj │ ├── cube_with_concave_hole_enlarged_standing.obj │ ├── cube_with_hole.obj │ ├── default_fff.ini │ ├── extruder_idler.obj │ ├── extruder_idler_quads.obj │ ├── fff_print_tests │ │ └── test_gcodewriter │ │ │ └── config_lift_unlift.ini │ ├── frog_legs.obj │ ├── include │ │ └── test_data.hpp │ ├── ipadstand.obj │ ├── overhang.obj │ ├── points_close_to_line.svg │ ├── prusaparts.cpp │ ├── prusaparts.hpp │ ├── pyramid.obj │ ├── simplification.obj │ ├── sloping_hole.obj │ ├── small_dorito.obj │ ├── test_3mf │ │ ├── Geräte │ │ │ └── Büchse.3mf │ │ └── Prusa.stl │ ├── test_amf │ │ ├── 20mmbox.amf │ │ ├── 20mmbox_deflated-in_directories.amf │ │ ├── 20mmbox_deflated-mult_files.amf │ │ ├── 20mmbox_deflated.amf │ │ ├── 5061-malicious.amf │ │ └── read-amf.amf │ ├── test_config │ │ └── new_from_ini.ini │ ├── test_gcode │ │ ├── 4113_fan_mover.gcode │ │ └── 4113_fan_mover_ok.gcode │ ├── test_stl │ │ ├── ASCII │ │ │ ├── 20mmbox-CR.stl │ │ │ ├── 20mmbox-CRLF.stl │ │ │ ├── 20mmbox-LF.stl │ │ │ └── 20mmbox-nonstandard.stl │ │ └── Geräte │ │ │ └── 20mmbox-čřšřěá.stl │ └── two_hollow_squares.obj ├── example │ ├── CMakeLists.txt │ └── example_tests_main.cpp ├── fff_print │ ├── CMakeLists.txt │ ├── fff_print_tests.cpp │ ├── test_avoid_crossing_perimeters.cpp │ ├── test_bridges.cpp │ ├── test_clipper.cpp │ ├── test_cooling.cpp │ ├── test_custom_gcode.cpp │ ├── test_extrusion_entity.cpp │ ├── test_fill.cpp │ ├── test_flow.cpp │ ├── test_gaps.cpp │ ├── test_gcode.cpp │ ├── test_gcode_travels.cpp │ ├── test_gcodefindreplace.cpp │ ├── test_gcodewriter.cpp │ ├── test_layers.cpp │ ├── test_model.cpp │ ├── test_multi.cpp │ ├── test_perimeters.cpp │ ├── test_print.cpp │ ├── test_printgcode.cpp │ ├── test_printobject.cpp │ ├── test_retraction.cpp │ ├── test_shells.cpp │ ├── test_skirt_brim.cpp │ ├── test_support_material.cpp │ ├── test_thin_walls.cpp │ └── test_trianglemesh.cpp ├── libslic3r │ ├── CMakeLists.txt │ ├── libslic3r_tests.cpp │ ├── test_3mf.cpp │ ├── test_aabbindirect.cpp │ ├── test_amf.cpp │ ├── test_anyptr.cpp │ ├── test_arachne.cpp │ ├── test_arc_welder.cpp │ ├── test_astar.cpp │ ├── test_clipper_offset.cpp │ ├── test_clipper_utils.cpp │ ├── test_color.cpp │ ├── test_config.cpp │ ├── test_curve_fitting.cpp │ ├── test_cut_surface.cpp │ ├── test_elephant_foot_compensation.cpp │ ├── test_emboss.cpp │ ├── test_expolygon.cpp │ ├── test_geometry.cpp │ ├── test_hollowing.cpp │ ├── test_indexed_triangle_set.cpp │ ├── test_jump_point_search.cpp │ ├── test_kdtreeindirect.cpp │ ├── test_line.cpp │ ├── test_marchingsquares.cpp │ ├── test_meshboolean.cpp │ ├── test_mutable_polygon.cpp │ ├── test_mutable_priority_queue.cpp │ ├── test_optimizers.cpp │ ├── test_placeholder_parser.cpp │ ├── test_png_io.cpp │ ├── test_point.cpp │ ├── test_polygon.cpp │ ├── test_polyline.cpp │ ├── test_quadric_edge_collapse.cpp │ ├── test_region_expansion.cpp │ ├── test_static_map.cpp │ ├── test_stl.cpp │ ├── test_support_spots_generator.cpp │ ├── test_surface_mesh.cpp │ ├── test_timeutils.cpp │ ├── test_triangulation.cpp │ ├── test_utils.cpp │ └── test_voronoi.cpp ├── sla_print │ ├── CMakeLists.txt │ ├── sla_archive_readwrite_tests.cpp │ ├── sla_print_tests.cpp │ ├── sla_print_tests_main.cpp │ ├── sla_raycast_tests.cpp │ ├── sla_supptgen_tests.cpp │ ├── sla_supptreeutils_tests.cpp │ ├── sla_test_utils.cpp │ └── sla_test_utils.hpp ├── slic3rutils │ ├── CMakeLists.txt │ ├── slic3r_arrangejob_tests.cpp │ ├── slic3r_jobs_tests.cpp │ ├── slic3r_version_tests.cpp │ └── slic3rutils_tests_main.cpp ├── superslicerlibslic3r │ ├── CMakeLists.txt │ ├── superslicerlibslic3r_tests.cpp │ ├── test_clipper_utils.cpp │ ├── test_complete_objects.cpp │ ├── test_data.cpp │ ├── test_data.hpp │ ├── test_dense_infill.cpp │ ├── test_denserinfill.cpp │ ├── test_extrusion_entity.cpp │ ├── test_fan_mover.cpp │ ├── test_fill.cpp │ ├── test_flow.cpp │ ├── test_gcodewriter.cpp │ ├── test_geometry.cpp │ ├── test_model.cpp │ ├── test_perimeter_generator.cpp │ ├── test_print.cpp │ ├── test_skirt_brim.cpp │ └── test_thin.cpp ├── test_utils.hpp └── thumbnails │ ├── CMakeLists.txt │ ├── test_thumbnails_ini_string.cpp │ ├── test_thumbnails_input_string.cpp │ └── thumbnails_tests_main.cpp └── version.inc /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/.gitmodules -------------------------------------------------------------------------------- /BuildLinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/BuildLinux.sh -------------------------------------------------------------------------------- /BuildMacOS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/BuildMacOS.sh -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmake/modules/FindCURL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/cmake/modules/FindCURL.cmake -------------------------------------------------------------------------------- /cmake/modules/FindDBus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/cmake/modules/FindDBus.cmake -------------------------------------------------------------------------------- /cmake/modules/FindEXPAT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/cmake/modules/FindEXPAT.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/cmake/modules/FindGLEW.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGTK3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/cmake/modules/FindGTK3.cmake -------------------------------------------------------------------------------- /cmake/modules/FindNLopt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/cmake/modules/FindNLopt.cmake -------------------------------------------------------------------------------- /cmake/modules/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/cmake/modules/FindTBB.cmake -------------------------------------------------------------------------------- /cmake/modules/bin2h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/cmake/modules/bin2h.cmake -------------------------------------------------------------------------------- /cmake/msvc/xs.wperl.props.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/cmake/msvc/xs.wperl.props.in -------------------------------------------------------------------------------- /create_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/create_release.py -------------------------------------------------------------------------------- /deps/+Blosc/Blosc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+Blosc/Blosc.cmake -------------------------------------------------------------------------------- /deps/+Boost/Boost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+Boost/Boost.cmake -------------------------------------------------------------------------------- /deps/+CGAL/CGAL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+CGAL/CGAL.cmake -------------------------------------------------------------------------------- /deps/+CURL/CURL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+CURL/CURL.cmake -------------------------------------------------------------------------------- /deps/+Catch2/Catch2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+Catch2/Catch2.cmake -------------------------------------------------------------------------------- /deps/+Cereal/Cereal.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+Cereal/Cereal.cmake -------------------------------------------------------------------------------- /deps/+EXPAT/EXPAT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+EXPAT/EXPAT.cmake -------------------------------------------------------------------------------- /deps/+GLEW/GLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+GLEW/GLEW.cmake -------------------------------------------------------------------------------- /deps/+GMP/GMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+GMP/GMP.cmake -------------------------------------------------------------------------------- /deps/+GMP/gmp/gmp.COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+GMP/gmp/gmp.COPYING -------------------------------------------------------------------------------- /deps/+GMP/gmp/gmp.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+GMP/gmp/gmp.README -------------------------------------------------------------------------------- /deps/+GMP/gmp/include/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+GMP/gmp/include/gmp.h -------------------------------------------------------------------------------- /deps/+JPEG/JPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+JPEG/JPEG.cmake -------------------------------------------------------------------------------- /deps/+MPFR/MPFR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+MPFR/MPFR.cmake -------------------------------------------------------------------------------- /deps/+MPFR/mpfr/mpfr.COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+MPFR/mpfr/mpfr.COPYING -------------------------------------------------------------------------------- /deps/+MPFR/mpfr/mpfr.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+MPFR/mpfr/mpfr.README -------------------------------------------------------------------------------- /deps/+NLopt/NLopt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+NLopt/NLopt.cmake -------------------------------------------------------------------------------- /deps/+NanoSVG/NanoSVG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+NanoSVG/NanoSVG.cmake -------------------------------------------------------------------------------- /deps/+OCCT/OCCT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+OCCT/OCCT.cmake -------------------------------------------------------------------------------- /deps/+OCCT/occt_toolkit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+OCCT/occt_toolkit.cmake -------------------------------------------------------------------------------- /deps/+OpenCSG/OpenCSG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+OpenCSG/OpenCSG.cmake -------------------------------------------------------------------------------- /deps/+OpenEXR/OpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+OpenEXR/OpenEXR.cmake -------------------------------------------------------------------------------- /deps/+OpenEXR/OpenEXR.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+OpenEXR/OpenEXR.patch -------------------------------------------------------------------------------- /deps/+OpenSSL/OpenSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+OpenSSL/OpenSSL.cmake -------------------------------------------------------------------------------- /deps/+OpenVDB/OpenVDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+OpenVDB/OpenVDB.cmake -------------------------------------------------------------------------------- /deps/+PNG/PNG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+PNG/PNG.cmake -------------------------------------------------------------------------------- /deps/+PNG/PNG.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+PNG/PNG.patch -------------------------------------------------------------------------------- /deps/+Qhull/Qhull.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+Qhull/Qhull.cmake -------------------------------------------------------------------------------- /deps/+TBB/TBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+TBB/TBB.cmake -------------------------------------------------------------------------------- /deps/+ZLIB/ZLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/+ZLIB/ZLIB.cmake -------------------------------------------------------------------------------- /deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/CMakeLists.txt -------------------------------------------------------------------------------- /deps/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/CMakePresets.json -------------------------------------------------------------------------------- /deps/Qhull/Qhull.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/Qhull/Qhull.patch -------------------------------------------------------------------------------- /deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/README.md -------------------------------------------------------------------------------- /deps/autobuild.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/deps/autobuild.cmake -------------------------------------------------------------------------------- /doc/Dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/doc/Dependencies.md -------------------------------------------------------------------------------- /doc/How to build - Mac OS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/doc/How to build - Mac OS.md -------------------------------------------------------------------------------- /doc/How to build - Windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/doc/How to build - Windows.md -------------------------------------------------------------------------------- /doc/Localization_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/doc/Localization_guide.md -------------------------------------------------------------------------------- /doc/updating/Updating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/doc/updating/Updating.md -------------------------------------------------------------------------------- /doc/updating/setting_mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/doc/updating/setting_mod.png -------------------------------------------------------------------------------- /doc/updating/setting_sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/doc/updating/setting_sys.png -------------------------------------------------------------------------------- /doc/updating/setting_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/doc/updating/setting_user.png -------------------------------------------------------------------------------- /resources/data/hints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/data/hints.ini -------------------------------------------------------------------------------- /resources/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/fonts/README.txt -------------------------------------------------------------------------------- /resources/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/add.svg -------------------------------------------------------------------------------- /resources/icons/add_brim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/add_brim.svg -------------------------------------------------------------------------------- /resources/icons/add_gcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/add_gcode.svg -------------------------------------------------------------------------------- /resources/icons/add_part.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/add_part.svg -------------------------------------------------------------------------------- /resources/icons/add_seam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/add_seam.svg -------------------------------------------------------------------------------- /resources/icons/arrange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/arrange.svg -------------------------------------------------------------------------------- /resources/icons/attention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/attention.svg -------------------------------------------------------------------------------- /resources/icons/browse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/browse.svg -------------------------------------------------------------------------------- /resources/icons/burn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/burn.svg -------------------------------------------------------------------------------- /resources/icons/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/cancel.svg -------------------------------------------------------------------------------- /resources/icons/check_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/check_off.svg -------------------------------------------------------------------------------- /resources/icons/check_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/check_on.svg -------------------------------------------------------------------------------- /resources/icons/checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/checked.svg -------------------------------------------------------------------------------- /resources/icons/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/cog.svg -------------------------------------------------------------------------------- /resources/icons/cog_.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/cog_.svg -------------------------------------------------------------------------------- /resources/icons/cog_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/cog_go.png -------------------------------------------------------------------------------- /resources/icons/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/collapse.svg -------------------------------------------------------------------------------- /resources/icons/compare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/compare.svg -------------------------------------------------------------------------------- /resources/icons/cooling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/cooling.svg -------------------------------------------------------------------------------- /resources/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/copy.svg -------------------------------------------------------------------------------- /resources/icons/copy_menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/copy_menu.svg -------------------------------------------------------------------------------- /resources/icons/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/cross.svg -------------------------------------------------------------------------------- /resources/icons/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/cut.svg -------------------------------------------------------------------------------- /resources/icons/cut_.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/cut_.svg -------------------------------------------------------------------------------- /resources/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/delete.svg -------------------------------------------------------------------------------- /resources/icons/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/dot.svg -------------------------------------------------------------------------------- /resources/icons/dot_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/dot_small.svg -------------------------------------------------------------------------------- /resources/icons/dot_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/dot_white.svg -------------------------------------------------------------------------------- /resources/icons/dowel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/dowel.svg -------------------------------------------------------------------------------- /resources/icons/drop_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/drop_down.svg -------------------------------------------------------------------------------- /resources/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/edit.svg -------------------------------------------------------------------------------- /resources/icons/edit_uni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/edit_uni.svg -------------------------------------------------------------------------------- /resources/icons/editor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/editor.svg -------------------------------------------------------------------------------- /resources/icons/eject_sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/eject_sd.svg -------------------------------------------------------------------------------- /resources/icons/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/empty.svg -------------------------------------------------------------------------------- /resources/icons/equal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/equal.svg -------------------------------------------------------------------------------- /resources/icons/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/exit.svg -------------------------------------------------------------------------------- /resources/icons/freecad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/freecad.svg -------------------------------------------------------------------------------- /resources/icons/funnel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/funnel.svg -------------------------------------------------------------------------------- /resources/icons/gcode.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/gcode.icns -------------------------------------------------------------------------------- /resources/icons/hollow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/hollow.svg -------------------------------------------------------------------------------- /resources/icons/infill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/infill.svg -------------------------------------------------------------------------------- /resources/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/info.svg -------------------------------------------------------------------------------- /resources/icons/ironing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/ironing.svg -------------------------------------------------------------------------------- /resources/icons/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/layers.svg -------------------------------------------------------------------------------- /resources/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/lock.svg -------------------------------------------------------------------------------- /resources/icons/mark_X.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/mark_X.svg -------------------------------------------------------------------------------- /resources/icons/mark_Y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/mark_Y.svg -------------------------------------------------------------------------------- /resources/icons/mark_Z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/mark_Z.svg -------------------------------------------------------------------------------- /resources/icons/measure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/measure.svg -------------------------------------------------------------------------------- /resources/icons/milling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/milling.svg -------------------------------------------------------------------------------- /resources/icons/mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/mode.svg -------------------------------------------------------------------------------- /resources/icons/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/move.svg -------------------------------------------------------------------------------- /resources/icons/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/note.svg -------------------------------------------------------------------------------- /resources/icons/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/open.svg -------------------------------------------------------------------------------- /resources/icons/pad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/pad.svg -------------------------------------------------------------------------------- /resources/icons/paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/paste.svg -------------------------------------------------------------------------------- /resources/icons/place.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/place.svg -------------------------------------------------------------------------------- /resources/icons/plater.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/plater.svg -------------------------------------------------------------------------------- /resources/icons/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/plug.svg -------------------------------------------------------------------------------- /resources/icons/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/preview.svg -------------------------------------------------------------------------------- /resources/icons/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/printer.svg -------------------------------------------------------------------------------- /resources/icons/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/redo.svg -------------------------------------------------------------------------------- /resources/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/refresh.svg -------------------------------------------------------------------------------- /resources/icons/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/remove.svg -------------------------------------------------------------------------------- /resources/icons/resin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/resin.svg -------------------------------------------------------------------------------- /resources/icons/rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/rotate.svg -------------------------------------------------------------------------------- /resources/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/save.svg -------------------------------------------------------------------------------- /resources/icons/save_as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/save_as.svg -------------------------------------------------------------------------------- /resources/icons/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/scale.svg -------------------------------------------------------------------------------- /resources/icons/seam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/seam.svg -------------------------------------------------------------------------------- /resources/icons/seam_.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/seam_.svg -------------------------------------------------------------------------------- /resources/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/search.svg -------------------------------------------------------------------------------- /resources/icons/search_.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/search_.svg -------------------------------------------------------------------------------- /resources/icons/shell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/shell.svg -------------------------------------------------------------------------------- /resources/icons/sinking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/sinking.svg -------------------------------------------------------------------------------- /resources/icons/snap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/snap.svg -------------------------------------------------------------------------------- /resources/icons/spool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/spool.svg -------------------------------------------------------------------------------- /resources/icons/stl.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/stl.icns -------------------------------------------------------------------------------- /resources/icons/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/support.svg -------------------------------------------------------------------------------- /resources/icons/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/test.svg -------------------------------------------------------------------------------- /resources/icons/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/time.svg -------------------------------------------------------------------------------- /resources/icons/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/undo.svg -------------------------------------------------------------------------------- /resources/icons/width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/width.svg -------------------------------------------------------------------------------- /resources/icons/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/icons/wrench.svg -------------------------------------------------------------------------------- /resources/shapes/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/shapes/box.png -------------------------------------------------------------------------------- /resources/shapes/box.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/shapes/box.stl -------------------------------------------------------------------------------- /resources/shapes/bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/shapes/bunny.png -------------------------------------------------------------------------------- /resources/shapes/bunny.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/shapes/bunny.stl -------------------------------------------------------------------------------- /resources/shapes/cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/shapes/cone.png -------------------------------------------------------------------------------- /resources/shapes/cone.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/shapes/cone.stl -------------------------------------------------------------------------------- /resources/shapes/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/shapes/sphere.png -------------------------------------------------------------------------------- /resources/shapes/sphere.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/shapes/sphere.stl -------------------------------------------------------------------------------- /resources/shapes/torus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/shapes/torus.png -------------------------------------------------------------------------------- /resources/shapes/torus.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/resources/shapes/torus.stl -------------------------------------------------------------------------------- /sandboxes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/sandboxes/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxes/opencsg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/sandboxes/opencsg/main.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/PrusaSlicer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/PrusaSlicer.cpp -------------------------------------------------------------------------------- /src/PrusaSlicer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/PrusaSlicer.hpp -------------------------------------------------------------------------------- /src/admesh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/admesh/CMakeLists.txt -------------------------------------------------------------------------------- /src/admesh/connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/admesh/connect.cpp -------------------------------------------------------------------------------- /src/admesh/normals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/admesh/normals.cpp -------------------------------------------------------------------------------- /src/admesh/shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/admesh/shared.cpp -------------------------------------------------------------------------------- /src/admesh/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/admesh/stl.h -------------------------------------------------------------------------------- /src/admesh/stl_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/admesh/stl_io.cpp -------------------------------------------------------------------------------- /src/admesh/stlinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/admesh/stlinit.cpp -------------------------------------------------------------------------------- /src/admesh/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/admesh/util.cpp -------------------------------------------------------------------------------- /src/agg/AUTHORS: -------------------------------------------------------------------------------- 1 | Anti-Grain Geometry - Version 2.4 2 | Copyright (C) 2002-2005 Maxim Shemanarev (McSeem) 3 | -------------------------------------------------------------------------------- /src/agg/VERSION: -------------------------------------------------------------------------------- 1 | 2.4 2 | svn revision 128 -------------------------------------------------------------------------------- /src/agg/agg_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_array.h -------------------------------------------------------------------------------- /src/agg/agg_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_basics.h -------------------------------------------------------------------------------- /src/agg/agg_bezier_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_bezier_arc.h -------------------------------------------------------------------------------- /src/agg/agg_color_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_color_gray.h -------------------------------------------------------------------------------- /src/agg/agg_color_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_color_rgba.h -------------------------------------------------------------------------------- /src/agg/agg_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_config.h -------------------------------------------------------------------------------- /src/agg/agg_gamma_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_gamma_lut.h -------------------------------------------------------------------------------- /src/agg/agg_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_math.h -------------------------------------------------------------------------------- /src/agg/agg_path_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_path_storage.h -------------------------------------------------------------------------------- /src/agg/agg_pixfmt_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_pixfmt_base.h -------------------------------------------------------------------------------- /src/agg/agg_pixfmt_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_pixfmt_gray.h -------------------------------------------------------------------------------- /src/agg/agg_pixfmt_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_pixfmt_rgb.h -------------------------------------------------------------------------------- /src/agg/agg_renderer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_renderer_base.h -------------------------------------------------------------------------------- /src/agg/agg_scanline_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_scanline_p.h -------------------------------------------------------------------------------- /src/agg/agg_trans_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/agg_trans_affine.h -------------------------------------------------------------------------------- /src/agg/copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/agg/copying -------------------------------------------------------------------------------- /src/ankerl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/ankerl/README.txt -------------------------------------------------------------------------------- /src/avrdude/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/AUTHORS -------------------------------------------------------------------------------- /src/avrdude/BUILD-FROM-SVN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/BUILD-FROM-SVN -------------------------------------------------------------------------------- /src/avrdude/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/CMakeLists.txt -------------------------------------------------------------------------------- /src/avrdude/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/COPYING -------------------------------------------------------------------------------- /src/avrdude/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2001 -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2002 -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2003 -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2007 -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2008 -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2009 -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2010 -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2011 -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2012 -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2013 -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2014 -------------------------------------------------------------------------------- /src/avrdude/ChangeLog-2015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ChangeLog-2015 -------------------------------------------------------------------------------- /src/avrdude/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/Makefile.am -------------------------------------------------------------------------------- /src/avrdude/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/NEWS -------------------------------------------------------------------------------- /src/avrdude/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/README -------------------------------------------------------------------------------- /src/avrdude/ac_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ac_cfg.h -------------------------------------------------------------------------------- /src/avrdude/ac_cfg.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ac_cfg.h.in -------------------------------------------------------------------------------- /src/avrdude/arduino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/arduino.c -------------------------------------------------------------------------------- /src/avrdude/arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/arduino.h -------------------------------------------------------------------------------- /src/avrdude/avr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avr.c -------------------------------------------------------------------------------- /src/avrdude/avr910.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avr910.c -------------------------------------------------------------------------------- /src/avrdude/avr910.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avr910.h -------------------------------------------------------------------------------- /src/avrdude/avrdude.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avrdude.1 -------------------------------------------------------------------------------- /src/avrdude/avrdude.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avrdude.conf -------------------------------------------------------------------------------- /src/avrdude/avrdude.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avrdude.conf.in -------------------------------------------------------------------------------- /src/avrdude/avrdude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avrdude.h -------------------------------------------------------------------------------- /src/avrdude/avrdude.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avrdude.spec.in -------------------------------------------------------------------------------- /src/avrdude/avrftdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avrftdi.c -------------------------------------------------------------------------------- /src/avrdude/avrftdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avrftdi.h -------------------------------------------------------------------------------- /src/avrdude/avrftdi_tpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avrftdi_tpi.c -------------------------------------------------------------------------------- /src/avrdude/avrftdi_tpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avrftdi_tpi.h -------------------------------------------------------------------------------- /src/avrdude/avrpart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/avrpart.c -------------------------------------------------------------------------------- /src/avrdude/bitbang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/bitbang.c -------------------------------------------------------------------------------- /src/avrdude/bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/bitbang.h -------------------------------------------------------------------------------- /src/avrdude/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/bootstrap -------------------------------------------------------------------------------- /src/avrdude/buspirate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/buspirate.c -------------------------------------------------------------------------------- /src/avrdude/buspirate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/buspirate.h -------------------------------------------------------------------------------- /src/avrdude/butterfly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/butterfly.c -------------------------------------------------------------------------------- /src/avrdude/butterfly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/butterfly.h -------------------------------------------------------------------------------- /src/avrdude/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/config.c -------------------------------------------------------------------------------- /src/avrdude/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/config.h -------------------------------------------------------------------------------- /src/avrdude/config_gram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/config_gram.c -------------------------------------------------------------------------------- /src/avrdude/config_gram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/config_gram.h -------------------------------------------------------------------------------- /src/avrdude/config_gram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/config_gram.y -------------------------------------------------------------------------------- /src/avrdude/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/configure.ac -------------------------------------------------------------------------------- /src/avrdude/confwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/confwin.c -------------------------------------------------------------------------------- /src/avrdude/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/crc16.c -------------------------------------------------------------------------------- /src/avrdude/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/crc16.h -------------------------------------------------------------------------------- /src/avrdude/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/dfu.c -------------------------------------------------------------------------------- /src/avrdude/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/dfu.h -------------------------------------------------------------------------------- /src/avrdude/doc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/doc/.cvsignore -------------------------------------------------------------------------------- /src/avrdude/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/doc/Makefile.am -------------------------------------------------------------------------------- /src/avrdude/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/doc/TODO -------------------------------------------------------------------------------- /src/avrdude/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/fileio.c -------------------------------------------------------------------------------- /src/avrdude/flip1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/flip1.c -------------------------------------------------------------------------------- /src/avrdude/flip1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/flip1.h -------------------------------------------------------------------------------- /src/avrdude/flip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/flip2.c -------------------------------------------------------------------------------- /src/avrdude/flip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/flip2.h -------------------------------------------------------------------------------- /src/avrdude/freebsd_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/freebsd_ppi.h -------------------------------------------------------------------------------- /src/avrdude/ft245r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ft245r.c -------------------------------------------------------------------------------- /src/avrdude/ft245r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ft245r.h -------------------------------------------------------------------------------- /src/avrdude/jtag3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/jtag3.c -------------------------------------------------------------------------------- /src/avrdude/jtag3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/jtag3.h -------------------------------------------------------------------------------- /src/avrdude/jtag3_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/jtag3_private.h -------------------------------------------------------------------------------- /src/avrdude/jtagmkI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/jtagmkI.c -------------------------------------------------------------------------------- /src/avrdude/jtagmkI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/jtagmkI.h -------------------------------------------------------------------------------- /src/avrdude/jtagmkII.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/jtagmkII.c -------------------------------------------------------------------------------- /src/avrdude/jtagmkII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/jtagmkII.h -------------------------------------------------------------------------------- /src/avrdude/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/lexer.c -------------------------------------------------------------------------------- /src/avrdude/lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/lexer.l -------------------------------------------------------------------------------- /src/avrdude/libavrdude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/libavrdude.h -------------------------------------------------------------------------------- /src/avrdude/linux_ppdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/linux_ppdev.h -------------------------------------------------------------------------------- /src/avrdude/linuxgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/linuxgpio.c -------------------------------------------------------------------------------- /src/avrdude/linuxgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/linuxgpio.h -------------------------------------------------------------------------------- /src/avrdude/lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/lists.c -------------------------------------------------------------------------------- /src/avrdude/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/main.c -------------------------------------------------------------------------------- /src/avrdude/my_ddk_hidsdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/my_ddk_hidsdi.h -------------------------------------------------------------------------------- /src/avrdude/par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/par.c -------------------------------------------------------------------------------- /src/avrdude/par.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/par.h -------------------------------------------------------------------------------- /src/avrdude/pgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/pgm.c -------------------------------------------------------------------------------- /src/avrdude/pgm_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/pgm_type.c -------------------------------------------------------------------------------- /src/avrdude/pickit2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/pickit2.c -------------------------------------------------------------------------------- /src/avrdude/pickit2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/pickit2.h -------------------------------------------------------------------------------- /src/avrdude/pindefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/pindefs.c -------------------------------------------------------------------------------- /src/avrdude/ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ppi.c -------------------------------------------------------------------------------- /src/avrdude/ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ppi.h -------------------------------------------------------------------------------- /src/avrdude/ppiwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ppiwin.c -------------------------------------------------------------------------------- /src/avrdude/safemode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/safemode.c -------------------------------------------------------------------------------- /src/avrdude/ser_avrdoper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ser_avrdoper.c -------------------------------------------------------------------------------- /src/avrdude/ser_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ser_posix.c -------------------------------------------------------------------------------- /src/avrdude/ser_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/ser_win32.c -------------------------------------------------------------------------------- /src/avrdude/serbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/serbb.h -------------------------------------------------------------------------------- /src/avrdude/serbb_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/serbb_posix.c -------------------------------------------------------------------------------- /src/avrdude/serbb_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/serbb_win32.c -------------------------------------------------------------------------------- /src/avrdude/solaris_ecpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/solaris_ecpp.h -------------------------------------------------------------------------------- /src/avrdude/stk500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/stk500.c -------------------------------------------------------------------------------- /src/avrdude/stk500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/stk500.h -------------------------------------------------------------------------------- /src/avrdude/stk500generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/stk500generic.c -------------------------------------------------------------------------------- /src/avrdude/stk500generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/stk500generic.h -------------------------------------------------------------------------------- /src/avrdude/stk500v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/stk500v2.c -------------------------------------------------------------------------------- /src/avrdude/stk500v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/stk500v2.h -------------------------------------------------------------------------------- /src/avrdude/term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/term.c -------------------------------------------------------------------------------- /src/avrdude/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/term.h -------------------------------------------------------------------------------- /src/avrdude/tpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/tpi.h -------------------------------------------------------------------------------- /src/avrdude/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/update.c -------------------------------------------------------------------------------- /src/avrdude/usb_hidapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/usb_hidapi.c -------------------------------------------------------------------------------- /src/avrdude/usb_libusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/usb_libusb.c -------------------------------------------------------------------------------- /src/avrdude/usbasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/usbasp.c -------------------------------------------------------------------------------- /src/avrdude/usbasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/usbasp.h -------------------------------------------------------------------------------- /src/avrdude/usbdevs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/usbdevs.h -------------------------------------------------------------------------------- /src/avrdude/usbtiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/usbtiny.c -------------------------------------------------------------------------------- /src/avrdude/usbtiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/usbtiny.h -------------------------------------------------------------------------------- /src/avrdude/windows/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/windows/utf8.c -------------------------------------------------------------------------------- /src/avrdude/windows/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/windows/utf8.h -------------------------------------------------------------------------------- /src/avrdude/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/wiring.c -------------------------------------------------------------------------------- /src/avrdude/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/avrdude/wiring.h -------------------------------------------------------------------------------- /src/boost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/boost/CMakeLists.txt -------------------------------------------------------------------------------- /src/boost/nowide/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/boost/nowide/args.hpp -------------------------------------------------------------------------------- /src/boost/nowide/cenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/boost/nowide/cenv.hpp -------------------------------------------------------------------------------- /src/boost/nowide/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/boost/nowide/config.hpp -------------------------------------------------------------------------------- /src/boost/nowide/cstdio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/boost/nowide/cstdio.hpp -------------------------------------------------------------------------------- /src/boost/nowide/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/boost/nowide/system.hpp -------------------------------------------------------------------------------- /src/clipper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/clipper/CMakeLists.txt -------------------------------------------------------------------------------- /src/clipper/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/clipper/clipper.cpp -------------------------------------------------------------------------------- /src/clipper/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/clipper/clipper.hpp -------------------------------------------------------------------------------- /src/clipper/clipper_z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/clipper/clipper_z.cpp -------------------------------------------------------------------------------- /src/clipper/clipper_z.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/clipper/clipper_z.hpp -------------------------------------------------------------------------------- /src/eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/COPYING.README -------------------------------------------------------------------------------- /src/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /src/eigen/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/Core -------------------------------------------------------------------------------- /src/eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/Dense -------------------------------------------------------------------------------- /src/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/Eigen -------------------------------------------------------------------------------- /src/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /src/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/Geometry -------------------------------------------------------------------------------- /src/eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/Householder -------------------------------------------------------------------------------- /src/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /src/eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/LU -------------------------------------------------------------------------------- /src/eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/QR -------------------------------------------------------------------------------- /src/eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/SPQRSupport -------------------------------------------------------------------------------- /src/eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/SVD -------------------------------------------------------------------------------- /src/eigen/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/Sparse -------------------------------------------------------------------------------- /src/eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/SparseCore -------------------------------------------------------------------------------- /src/eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/SparseLU -------------------------------------------------------------------------------- /src/eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/SparseQR -------------------------------------------------------------------------------- /src/eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/StdDeque -------------------------------------------------------------------------------- /src/eigen/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/StdList -------------------------------------------------------------------------------- /src/eigen/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/Eigen/StdVector -------------------------------------------------------------------------------- /src/eigen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/eigen/README.md -------------------------------------------------------------------------------- /src/exif/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/exif/CMakeLists.txt -------------------------------------------------------------------------------- /src/exif/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/exif/COPYING -------------------------------------------------------------------------------- /src/exif/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/exif/README -------------------------------------------------------------------------------- /src/exif/exif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/exif/exif.c -------------------------------------------------------------------------------- /src/exif/exif_testy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/exif/exif_testy.c -------------------------------------------------------------------------------- /src/exif/include/exif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/exif/include/exif.h -------------------------------------------------------------------------------- /src/fast_float/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/fast_float/README.md -------------------------------------------------------------------------------- /src/fast_float/fast_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/fast_float/fast_float.h -------------------------------------------------------------------------------- /src/glu-libtess/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/README -------------------------------------------------------------------------------- /src/glu-libtess/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/README -------------------------------------------------------------------------------- /src/glu-libtess/src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/dict.c -------------------------------------------------------------------------------- /src/glu-libtess/src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/dict.h -------------------------------------------------------------------------------- /src/glu-libtess/src/geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/geom.c -------------------------------------------------------------------------------- /src/glu-libtess/src/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/geom.h -------------------------------------------------------------------------------- /src/glu-libtess/src/gluos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/gluos.h -------------------------------------------------------------------------------- /src/glu-libtess/src/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/mesh.c -------------------------------------------------------------------------------- /src/glu-libtess/src/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/mesh.h -------------------------------------------------------------------------------- /src/glu-libtess/src/sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/sweep.c -------------------------------------------------------------------------------- /src/glu-libtess/src/sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/sweep.h -------------------------------------------------------------------------------- /src/glu-libtess/src/tess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/tess.c -------------------------------------------------------------------------------- /src/glu-libtess/src/tess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/glu-libtess/src/tess.h -------------------------------------------------------------------------------- /src/hidapi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/hidapi/CMakeLists.txt -------------------------------------------------------------------------------- /src/hidapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/hidapi/README.md -------------------------------------------------------------------------------- /src/hidapi/include/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/hidapi/include/hidapi.h -------------------------------------------------------------------------------- /src/hidapi/linux/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/hidapi/linux/hid.c -------------------------------------------------------------------------------- /src/hidapi/mac/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/hidapi/mac/hid.c -------------------------------------------------------------------------------- /src/hidapi/win/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/hidapi/win/hid.c -------------------------------------------------------------------------------- /src/hints/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/hints/CMakeLists.txt -------------------------------------------------------------------------------- /src/hints/HintsToPot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/hints/HintsToPot.cpp -------------------------------------------------------------------------------- /src/imgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/CMakeLists.txt -------------------------------------------------------------------------------- /src/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/LICENSE.txt -------------------------------------------------------------------------------- /src/imgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/README.md -------------------------------------------------------------------------------- /src/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imconfig.h -------------------------------------------------------------------------------- /src/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imgui.cpp -------------------------------------------------------------------------------- /src/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imgui.h -------------------------------------------------------------------------------- /src/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imgui_internal.h -------------------------------------------------------------------------------- /src/imgui/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imgui_stdlib.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imgui_stdlib.h -------------------------------------------------------------------------------- /src/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /src/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /src/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /src/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /src/jpeg-compressor/jpge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/jpeg-compressor/jpge.h -------------------------------------------------------------------------------- /src/libigl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/CMakeLists.txt -------------------------------------------------------------------------------- /src/libigl/igl/AABB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/AABB.cpp -------------------------------------------------------------------------------- /src/libigl/igl/AABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/AABB.h -------------------------------------------------------------------------------- /src/libigl/igl/AtA_cached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/AtA_cached.h -------------------------------------------------------------------------------- /src/libigl/igl/C_STR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/C_STR.h -------------------------------------------------------------------------------- /src/libigl/igl/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/Camera.h -------------------------------------------------------------------------------- /src/libigl/igl/EPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/EPS.cpp -------------------------------------------------------------------------------- /src/libigl/igl/EPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/EPS.h -------------------------------------------------------------------------------- /src/libigl/igl/Hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/Hit.h -------------------------------------------------------------------------------- /src/libigl/igl/IO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/IO -------------------------------------------------------------------------------- /src/libigl/igl/LinSpaced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/LinSpaced.h -------------------------------------------------------------------------------- /src/libigl/igl/NormalType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/NormalType.h -------------------------------------------------------------------------------- /src/libigl/igl/ONE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/ONE.h -------------------------------------------------------------------------------- /src/libigl/igl/PI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/PI.h -------------------------------------------------------------------------------- /src/libigl/igl/REDRUM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/REDRUM.h -------------------------------------------------------------------------------- /src/libigl/igl/STR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/STR.h -------------------------------------------------------------------------------- /src/libigl/igl/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/Timer.h -------------------------------------------------------------------------------- /src/libigl/igl/Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/Viewport.h -------------------------------------------------------------------------------- /src/libigl/igl/ZERO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/ZERO.h -------------------------------------------------------------------------------- /src/libigl/igl/active_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/active_set.h -------------------------------------------------------------------------------- /src/libigl/igl/all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/all.cpp -------------------------------------------------------------------------------- /src/libigl/igl/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/all.h -------------------------------------------------------------------------------- /src/libigl/igl/all_edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/all_edges.h -------------------------------------------------------------------------------- /src/libigl/igl/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/any.cpp -------------------------------------------------------------------------------- /src/libigl/igl/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/any.h -------------------------------------------------------------------------------- /src/libigl/igl/any_of.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/any_of.cpp -------------------------------------------------------------------------------- /src/libigl/igl/any_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/any_of.h -------------------------------------------------------------------------------- /src/libigl/igl/arap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/arap.cpp -------------------------------------------------------------------------------- /src/libigl/igl/arap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/arap.h -------------------------------------------------------------------------------- /src/libigl/igl/arap_dof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/arap_dof.cpp -------------------------------------------------------------------------------- /src/libigl/igl/arap_dof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/arap_dof.h -------------------------------------------------------------------------------- /src/libigl/igl/arap_rhs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/arap_rhs.cpp -------------------------------------------------------------------------------- /src/libigl/igl/arap_rhs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/arap_rhs.h -------------------------------------------------------------------------------- /src/libigl/igl/barycenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/barycenter.h -------------------------------------------------------------------------------- /src/libigl/igl/basename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/basename.cpp -------------------------------------------------------------------------------- /src/libigl/igl/basename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/basename.h -------------------------------------------------------------------------------- /src/libigl/igl/bbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/bbw.cpp -------------------------------------------------------------------------------- /src/libigl/igl/bbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/bbw.h -------------------------------------------------------------------------------- /src/libigl/igl/bfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/bfs.cpp -------------------------------------------------------------------------------- /src/libigl/igl/bfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/bfs.h -------------------------------------------------------------------------------- /src/libigl/igl/bfs_orient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/bfs_orient.h -------------------------------------------------------------------------------- /src/libigl/igl/cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/cat.cpp -------------------------------------------------------------------------------- /src/libigl/igl/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/cat.h -------------------------------------------------------------------------------- /src/libigl/igl/ceil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/ceil.cpp -------------------------------------------------------------------------------- /src/libigl/igl/ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/ceil.h -------------------------------------------------------------------------------- /src/libigl/igl/centroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/centroid.cpp -------------------------------------------------------------------------------- /src/libigl/igl/centroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/centroid.h -------------------------------------------------------------------------------- /src/libigl/igl/colon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/colon.cpp -------------------------------------------------------------------------------- /src/libigl/igl/colon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/colon.h -------------------------------------------------------------------------------- /src/libigl/igl/colormap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/colormap.cpp -------------------------------------------------------------------------------- /src/libigl/igl/colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/colormap.h -------------------------------------------------------------------------------- /src/libigl/igl/columnize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/columnize.h -------------------------------------------------------------------------------- /src/libigl/igl/combine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/combine.cpp -------------------------------------------------------------------------------- /src/libigl/igl/combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/combine.h -------------------------------------------------------------------------------- /src/libigl/igl/components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/components.h -------------------------------------------------------------------------------- /src/libigl/igl/cotmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/cotmatrix.h -------------------------------------------------------------------------------- /src/libigl/igl/count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/count.cpp -------------------------------------------------------------------------------- /src/libigl/igl/count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/count.h -------------------------------------------------------------------------------- /src/libigl/igl/cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/cross.cpp -------------------------------------------------------------------------------- /src/libigl/igl/cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/cross.h -------------------------------------------------------------------------------- /src/libigl/igl/cumsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/cumsum.cpp -------------------------------------------------------------------------------- /src/libigl/igl/cumsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/cumsum.h -------------------------------------------------------------------------------- /src/libigl/igl/cut_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/cut_mesh.cpp -------------------------------------------------------------------------------- /src/libigl/igl/cut_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/cut_mesh.h -------------------------------------------------------------------------------- /src/libigl/igl/cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/cylinder.cpp -------------------------------------------------------------------------------- /src/libigl/igl/cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/cylinder.h -------------------------------------------------------------------------------- /src/libigl/igl/dated_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dated_copy.h -------------------------------------------------------------------------------- /src/libigl/igl/decimate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/decimate.cpp -------------------------------------------------------------------------------- /src/libigl/igl/decimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/decimate.h -------------------------------------------------------------------------------- /src/libigl/igl/deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/deprecated.h -------------------------------------------------------------------------------- /src/libigl/igl/dfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dfs.cpp -------------------------------------------------------------------------------- /src/libigl/igl/dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dfs.h -------------------------------------------------------------------------------- /src/libigl/igl/diag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/diag.cpp -------------------------------------------------------------------------------- /src/libigl/igl/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/diag.h -------------------------------------------------------------------------------- /src/libigl/igl/dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dijkstra.cpp -------------------------------------------------------------------------------- /src/libigl/igl/dijkstra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dijkstra.h -------------------------------------------------------------------------------- /src/libigl/igl/dirname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dirname.cpp -------------------------------------------------------------------------------- /src/libigl/igl/dirname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dirname.h -------------------------------------------------------------------------------- /src/libigl/igl/dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dot.cpp -------------------------------------------------------------------------------- /src/libigl/igl/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dot.h -------------------------------------------------------------------------------- /src/libigl/igl/dot_row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dot_row.cpp -------------------------------------------------------------------------------- /src/libigl/igl/dot_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dot_row.h -------------------------------------------------------------------------------- /src/libigl/igl/doublearea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/doublearea.h -------------------------------------------------------------------------------- /src/libigl/igl/dqs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dqs.cpp -------------------------------------------------------------------------------- /src/libigl/igl/dqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/dqs.h -------------------------------------------------------------------------------- /src/libigl/igl/ears.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/ears.cpp -------------------------------------------------------------------------------- /src/libigl/igl/ears.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/ears.h -------------------------------------------------------------------------------- /src/libigl/igl/edge_flaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/edge_flaps.h -------------------------------------------------------------------------------- /src/libigl/igl/edges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/edges.cpp -------------------------------------------------------------------------------- /src/libigl/igl/edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/edges.h -------------------------------------------------------------------------------- /src/libigl/igl/eigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/eigs.cpp -------------------------------------------------------------------------------- /src/libigl/igl/eigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/eigs.h -------------------------------------------------------------------------------- /src/libigl/igl/face_areas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/face_areas.h -------------------------------------------------------------------------------- /src/libigl/igl/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/find.cpp -------------------------------------------------------------------------------- /src/libigl/igl/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/find.h -------------------------------------------------------------------------------- /src/libigl/igl/find_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/find_zero.h -------------------------------------------------------------------------------- /src/libigl/igl/fit_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/fit_plane.h -------------------------------------------------------------------------------- /src/libigl/igl/flip_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/flip_edge.h -------------------------------------------------------------------------------- /src/libigl/igl/flood_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/flood_fill.h -------------------------------------------------------------------------------- /src/libigl/igl/floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/floor.cpp -------------------------------------------------------------------------------- /src/libigl/igl/floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/floor.h -------------------------------------------------------------------------------- /src/libigl/igl/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/for_each.h -------------------------------------------------------------------------------- /src/libigl/igl/frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/frustum.cpp -------------------------------------------------------------------------------- /src/libigl/igl/frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/frustum.h -------------------------------------------------------------------------------- /src/libigl/igl/grad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/grad.cpp -------------------------------------------------------------------------------- /src/libigl/igl/grad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/grad.h -------------------------------------------------------------------------------- /src/libigl/igl/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/grid.cpp -------------------------------------------------------------------------------- /src/libigl/igl/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/grid.h -------------------------------------------------------------------------------- /src/libigl/igl/harmonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/harmonic.cpp -------------------------------------------------------------------------------- /src/libigl/igl/harmonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/harmonic.h -------------------------------------------------------------------------------- /src/libigl/igl/hausdorff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/hausdorff.h -------------------------------------------------------------------------------- /src/libigl/igl/hessian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/hessian.cpp -------------------------------------------------------------------------------- /src/libigl/igl/hessian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/hessian.h -------------------------------------------------------------------------------- /src/libigl/igl/histc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/histc.cpp -------------------------------------------------------------------------------- /src/libigl/igl/histc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/histc.h -------------------------------------------------------------------------------- /src/libigl/igl/hsv_to_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/hsv_to_rgb.h -------------------------------------------------------------------------------- /src/libigl/igl/igl_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/igl_inline.h -------------------------------------------------------------------------------- /src/libigl/igl/in_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/in_element.h -------------------------------------------------------------------------------- /src/libigl/igl/inradius.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/inradius.cpp -------------------------------------------------------------------------------- /src/libigl/igl/inradius.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/inradius.h -------------------------------------------------------------------------------- /src/libigl/igl/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/intersect.h -------------------------------------------------------------------------------- /src/libigl/igl/is_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/is_dir.cpp -------------------------------------------------------------------------------- /src/libigl/igl/is_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/is_dir.h -------------------------------------------------------------------------------- /src/libigl/igl/is_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/is_file.cpp -------------------------------------------------------------------------------- /src/libigl/igl/is_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/is_file.h -------------------------------------------------------------------------------- /src/libigl/igl/is_planar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/is_planar.h -------------------------------------------------------------------------------- /src/libigl/igl/is_sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/is_sparse.h -------------------------------------------------------------------------------- /src/libigl/igl/is_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/is_stl.cpp -------------------------------------------------------------------------------- /src/libigl/igl/is_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/is_stl.h -------------------------------------------------------------------------------- /src/libigl/igl/isdiag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/isdiag.cpp -------------------------------------------------------------------------------- /src/libigl/igl/isdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/isdiag.h -------------------------------------------------------------------------------- /src/libigl/igl/ismember.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/ismember.cpp -------------------------------------------------------------------------------- /src/libigl/igl/ismember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/ismember.h -------------------------------------------------------------------------------- /src/libigl/igl/isolines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/isolines.cpp -------------------------------------------------------------------------------- /src/libigl/igl/isolines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/isolines.h -------------------------------------------------------------------------------- /src/libigl/igl/jet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/jet.cpp -------------------------------------------------------------------------------- /src/libigl/igl/jet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/jet.h -------------------------------------------------------------------------------- /src/libigl/igl/knn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/knn.cpp -------------------------------------------------------------------------------- /src/libigl/igl/knn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/knn.h -------------------------------------------------------------------------------- /src/libigl/igl/lbs_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/lbs_matrix.h -------------------------------------------------------------------------------- /src/libigl/igl/lim/lim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/lim/lim.cpp -------------------------------------------------------------------------------- /src/libigl/igl/lim/lim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/lim/lim.h -------------------------------------------------------------------------------- /src/libigl/igl/linprog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/linprog.cpp -------------------------------------------------------------------------------- /src/libigl/igl/linprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/linprog.h -------------------------------------------------------------------------------- /src/libigl/igl/look_at.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/look_at.cpp -------------------------------------------------------------------------------- /src/libigl/igl/look_at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/look_at.h -------------------------------------------------------------------------------- /src/libigl/igl/loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/loop.cpp -------------------------------------------------------------------------------- /src/libigl/igl/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/loop.h -------------------------------------------------------------------------------- /src/libigl/igl/lscm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/lscm.cpp -------------------------------------------------------------------------------- /src/libigl/igl/lscm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/lscm.h -------------------------------------------------------------------------------- /src/libigl/igl/massmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/massmatrix.h -------------------------------------------------------------------------------- /src/libigl/igl/mat_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/mat_max.cpp -------------------------------------------------------------------------------- /src/libigl/igl/mat_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/mat_max.h -------------------------------------------------------------------------------- /src/libigl/igl/mat_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/mat_min.cpp -------------------------------------------------------------------------------- /src/libigl/igl/mat_min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/mat_min.h -------------------------------------------------------------------------------- /src/libigl/igl/max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/max.cpp -------------------------------------------------------------------------------- /src/libigl/igl/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/max.h -------------------------------------------------------------------------------- /src/libigl/igl/max_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/max_size.cpp -------------------------------------------------------------------------------- /src/libigl/igl/max_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/max_size.h -------------------------------------------------------------------------------- /src/libigl/igl/median.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/median.cpp -------------------------------------------------------------------------------- /src/libigl/igl/median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/median.h -------------------------------------------------------------------------------- /src/libigl/igl/min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/min.cpp -------------------------------------------------------------------------------- /src/libigl/igl/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/min.h -------------------------------------------------------------------------------- /src/libigl/igl/min_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/min_size.cpp -------------------------------------------------------------------------------- /src/libigl/igl/min_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/min_size.h -------------------------------------------------------------------------------- /src/libigl/igl/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/mod.cpp -------------------------------------------------------------------------------- /src/libigl/igl/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/mod.h -------------------------------------------------------------------------------- /src/libigl/igl/mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/mode.cpp -------------------------------------------------------------------------------- /src/libigl/igl/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/mode.h -------------------------------------------------------------------------------- /src/libigl/igl/mosek/bbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/mosek/bbw.h -------------------------------------------------------------------------------- /src/libigl/igl/mvc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/mvc.cpp -------------------------------------------------------------------------------- /src/libigl/igl/mvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/mvc.h -------------------------------------------------------------------------------- /src/libigl/igl/nchoosek.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/nchoosek.cpp -------------------------------------------------------------------------------- /src/libigl/igl/nchoosek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/nchoosek.h -------------------------------------------------------------------------------- /src/libigl/igl/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/null.cpp -------------------------------------------------------------------------------- /src/libigl/igl/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/null.h -------------------------------------------------------------------------------- /src/libigl/igl/octree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/octree.cpp -------------------------------------------------------------------------------- /src/libigl/igl/octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/octree.h -------------------------------------------------------------------------------- /src/libigl/igl/opengl/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/opengl/gl.h -------------------------------------------------------------------------------- /src/libigl/igl/opengl2/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/opengl2/gl.h -------------------------------------------------------------------------------- /src/libigl/igl/orth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/orth.cpp -------------------------------------------------------------------------------- /src/libigl/igl/orth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/orth.h -------------------------------------------------------------------------------- /src/libigl/igl/ortho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/ortho.cpp -------------------------------------------------------------------------------- /src/libigl/igl/ortho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/ortho.h -------------------------------------------------------------------------------- /src/libigl/igl/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/partition.h -------------------------------------------------------------------------------- /src/libigl/igl/parula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/parula.cpp -------------------------------------------------------------------------------- /src/libigl/igl/parula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/parula.h -------------------------------------------------------------------------------- /src/libigl/igl/pathinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/pathinfo.cpp -------------------------------------------------------------------------------- /src/libigl/igl/pathinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/pathinfo.h -------------------------------------------------------------------------------- /src/libigl/igl/pinv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/pinv.cpp -------------------------------------------------------------------------------- /src/libigl/igl/pinv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/pinv.h -------------------------------------------------------------------------------- /src/libigl/igl/ply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/ply.h -------------------------------------------------------------------------------- /src/libigl/igl/polar_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/polar_dec.h -------------------------------------------------------------------------------- /src/libigl/igl/polar_svd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/polar_svd.h -------------------------------------------------------------------------------- /src/libigl/igl/print_ijv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/print_ijv.h -------------------------------------------------------------------------------- /src/libigl/igl/procrustes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/procrustes.h -------------------------------------------------------------------------------- /src/libigl/igl/project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/project.cpp -------------------------------------------------------------------------------- /src/libigl/igl/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/project.h -------------------------------------------------------------------------------- /src/libigl/igl/pso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/pso.cpp -------------------------------------------------------------------------------- /src/libigl/igl/pso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/pso.h -------------------------------------------------------------------------------- /src/libigl/igl/qslim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/qslim.cpp -------------------------------------------------------------------------------- /src/libigl/igl/qslim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/qslim.h -------------------------------------------------------------------------------- /src/libigl/igl/quat_mult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/quat_mult.h -------------------------------------------------------------------------------- /src/libigl/igl/random_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/random_dir.h -------------------------------------------------------------------------------- /src/libigl/igl/randperm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/randperm.cpp -------------------------------------------------------------------------------- /src/libigl/igl/randperm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/randperm.h -------------------------------------------------------------------------------- /src/libigl/igl/raytri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/raytri.c -------------------------------------------------------------------------------- /src/libigl/igl/readBF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readBF.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readBF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readBF.h -------------------------------------------------------------------------------- /src/libigl/igl/readCSV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readCSV.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readCSV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readCSV.h -------------------------------------------------------------------------------- /src/libigl/igl/readDMAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readDMAT.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readDMAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readDMAT.h -------------------------------------------------------------------------------- /src/libigl/igl/readMESH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readMESH.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readMESH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readMESH.h -------------------------------------------------------------------------------- /src/libigl/igl/readMSH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readMSH.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readMSH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readMSH.h -------------------------------------------------------------------------------- /src/libigl/igl/readNODE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readNODE.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readNODE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readNODE.h -------------------------------------------------------------------------------- /src/libigl/igl/readOBJ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readOBJ.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readOBJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readOBJ.h -------------------------------------------------------------------------------- /src/libigl/igl/readOFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readOFF.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readOFF.h -------------------------------------------------------------------------------- /src/libigl/igl/readPLY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readPLY.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readPLY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readPLY.h -------------------------------------------------------------------------------- /src/libigl/igl/readSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readSTL.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readSTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readSTL.h -------------------------------------------------------------------------------- /src/libigl/igl/readTGF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readTGF.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readTGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readTGF.h -------------------------------------------------------------------------------- /src/libigl/igl/readWRL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readWRL.cpp -------------------------------------------------------------------------------- /src/libigl/igl/readWRL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/readWRL.h -------------------------------------------------------------------------------- /src/libigl/igl/redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/redux.h -------------------------------------------------------------------------------- /src/libigl/igl/reorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/reorder.cpp -------------------------------------------------------------------------------- /src/libigl/igl/reorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/reorder.h -------------------------------------------------------------------------------- /src/libigl/igl/repdiag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/repdiag.cpp -------------------------------------------------------------------------------- /src/libigl/igl/repdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/repdiag.h -------------------------------------------------------------------------------- /src/libigl/igl/repmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/repmat.cpp -------------------------------------------------------------------------------- /src/libigl/igl/repmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/repmat.h -------------------------------------------------------------------------------- /src/libigl/igl/rgb_to_hsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/rgb_to_hsv.h -------------------------------------------------------------------------------- /src/libigl/igl/round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/round.cpp -------------------------------------------------------------------------------- /src/libigl/igl/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/round.h -------------------------------------------------------------------------------- /src/libigl/igl/seam_edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/seam_edges.h -------------------------------------------------------------------------------- /src/libigl/igl/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/serialize.h -------------------------------------------------------------------------------- /src/libigl/igl/setdiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/setdiff.cpp -------------------------------------------------------------------------------- /src/libigl/igl/setdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/setdiff.h -------------------------------------------------------------------------------- /src/libigl/igl/setunion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/setunion.cpp -------------------------------------------------------------------------------- /src/libigl/igl/setunion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/setunion.h -------------------------------------------------------------------------------- /src/libigl/igl/setxor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/setxor.cpp -------------------------------------------------------------------------------- /src/libigl/igl/setxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/setxor.h -------------------------------------------------------------------------------- /src/libigl/igl/shapeup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/shapeup.cpp -------------------------------------------------------------------------------- /src/libigl/igl/shapeup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/shapeup.h -------------------------------------------------------------------------------- /src/libigl/igl/slice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/slice.cpp -------------------------------------------------------------------------------- /src/libigl/igl/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/slice.h -------------------------------------------------------------------------------- /src/libigl/igl/slice_into.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/slice_into.h -------------------------------------------------------------------------------- /src/libigl/igl/slice_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/slice_mask.h -------------------------------------------------------------------------------- /src/libigl/igl/slice_tets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/slice_tets.h -------------------------------------------------------------------------------- /src/libigl/igl/slim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/slim.cpp -------------------------------------------------------------------------------- /src/libigl/igl/slim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/slim.h -------------------------------------------------------------------------------- /src/libigl/igl/sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/sort.cpp -------------------------------------------------------------------------------- /src/libigl/igl/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/sort.h -------------------------------------------------------------------------------- /src/libigl/igl/sortrows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/sortrows.cpp -------------------------------------------------------------------------------- /src/libigl/igl/sortrows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/sortrows.h -------------------------------------------------------------------------------- /src/libigl/igl/sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/sparse.cpp -------------------------------------------------------------------------------- /src/libigl/igl/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/sparse.h -------------------------------------------------------------------------------- /src/libigl/igl/speye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/speye.cpp -------------------------------------------------------------------------------- /src/libigl/igl/speye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/speye.h -------------------------------------------------------------------------------- /src/libigl/igl/sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/sum.cpp -------------------------------------------------------------------------------- /src/libigl/igl/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/sum.h -------------------------------------------------------------------------------- /src/libigl/igl/svd3x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/svd3x3.cpp -------------------------------------------------------------------------------- /src/libigl/igl/svd3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/svd3x3.h -------------------------------------------------------------------------------- /src/libigl/igl/svd3x3_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/svd3x3_avx.h -------------------------------------------------------------------------------- /src/libigl/igl/svd3x3_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/svd3x3_sse.h -------------------------------------------------------------------------------- /src/libigl/igl/trackball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/trackball.h -------------------------------------------------------------------------------- /src/libigl/igl/unique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/unique.cpp -------------------------------------------------------------------------------- /src/libigl/igl/unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/unique.h -------------------------------------------------------------------------------- /src/libigl/igl/unproject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/unproject.h -------------------------------------------------------------------------------- /src/libigl/igl/upsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/upsample.cpp -------------------------------------------------------------------------------- /src/libigl/igl/upsample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/upsample.h -------------------------------------------------------------------------------- /src/libigl/igl/verbose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/verbose.h -------------------------------------------------------------------------------- /src/libigl/igl/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/volume.cpp -------------------------------------------------------------------------------- /src/libigl/igl/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/volume.h -------------------------------------------------------------------------------- /src/libigl/igl/voxel_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/voxel_grid.h -------------------------------------------------------------------------------- /src/libigl/igl/writeBF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeBF.cpp -------------------------------------------------------------------------------- /src/libigl/igl/writeBF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeBF.h -------------------------------------------------------------------------------- /src/libigl/igl/writeDMAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeDMAT.h -------------------------------------------------------------------------------- /src/libigl/igl/writeMESH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeMESH.h -------------------------------------------------------------------------------- /src/libigl/igl/writeOBJ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeOBJ.cpp -------------------------------------------------------------------------------- /src/libigl/igl/writeOBJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeOBJ.h -------------------------------------------------------------------------------- /src/libigl/igl/writeOFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeOFF.cpp -------------------------------------------------------------------------------- /src/libigl/igl/writeOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeOFF.h -------------------------------------------------------------------------------- /src/libigl/igl/writePLY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writePLY.cpp -------------------------------------------------------------------------------- /src/libigl/igl/writePLY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writePLY.h -------------------------------------------------------------------------------- /src/libigl/igl/writeSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeSTL.cpp -------------------------------------------------------------------------------- /src/libigl/igl/writeSTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeSTL.h -------------------------------------------------------------------------------- /src/libigl/igl/writeTGF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeTGF.cpp -------------------------------------------------------------------------------- /src/libigl/igl/writeTGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeTGF.h -------------------------------------------------------------------------------- /src/libigl/igl/writeWRL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeWRL.cpp -------------------------------------------------------------------------------- /src/libigl/igl/writeWRL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libigl/igl/writeWRL.h -------------------------------------------------------------------------------- /src/libnest2d/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libnest2d/LICENSE.txt -------------------------------------------------------------------------------- /src/libslic3r/AABBMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/AABBMesh.cpp -------------------------------------------------------------------------------- /src/libslic3r/AABBMesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/AABBMesh.hpp -------------------------------------------------------------------------------- /src/libslic3r/AStar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/AStar.hpp -------------------------------------------------------------------------------- /src/libslic3r/AnyPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/AnyPtr.hpp -------------------------------------------------------------------------------- /src/libslic3r/AppConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/AppConfig.cpp -------------------------------------------------------------------------------- /src/libslic3r/AppConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/AppConfig.hpp -------------------------------------------------------------------------------- /src/libslic3r/Arrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Arrange.cpp -------------------------------------------------------------------------------- /src/libslic3r/Arrange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Arrange.hpp -------------------------------------------------------------------------------- /src/libslic3r/Brim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Brim.cpp -------------------------------------------------------------------------------- /src/libslic3r/Brim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Brim.hpp -------------------------------------------------------------------------------- /src/libslic3r/Channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Channel.hpp -------------------------------------------------------------------------------- /src/libslic3r/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Color.cpp -------------------------------------------------------------------------------- /src/libslic3r/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Color.hpp -------------------------------------------------------------------------------- /src/libslic3r/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Config.cpp -------------------------------------------------------------------------------- /src/libslic3r/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Config.hpp -------------------------------------------------------------------------------- /src/libslic3r/CutUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/CutUtils.cpp -------------------------------------------------------------------------------- /src/libslic3r/CutUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/CutUtils.hpp -------------------------------------------------------------------------------- /src/libslic3r/EdgeGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/EdgeGrid.cpp -------------------------------------------------------------------------------- /src/libslic3r/EdgeGrid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/EdgeGrid.hpp -------------------------------------------------------------------------------- /src/libslic3r/Emboss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Emboss.cpp -------------------------------------------------------------------------------- /src/libslic3r/Emboss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Emboss.hpp -------------------------------------------------------------------------------- /src/libslic3r/ExPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/ExPolygon.cpp -------------------------------------------------------------------------------- /src/libslic3r/ExPolygon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/ExPolygon.hpp -------------------------------------------------------------------------------- /src/libslic3r/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Exception.hpp -------------------------------------------------------------------------------- /src/libslic3r/Extruder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Extruder.cpp -------------------------------------------------------------------------------- /src/libslic3r/Extruder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Extruder.hpp -------------------------------------------------------------------------------- /src/libslic3r/Fill/Fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Fill/Fill.cpp -------------------------------------------------------------------------------- /src/libslic3r/Flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Flow.cpp -------------------------------------------------------------------------------- /src/libslic3r/Flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Flow.hpp -------------------------------------------------------------------------------- /src/libslic3r/GCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/GCode.cpp -------------------------------------------------------------------------------- /src/libslic3r/GCode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/GCode.hpp -------------------------------------------------------------------------------- /src/libslic3r/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Geometry.cpp -------------------------------------------------------------------------------- /src/libslic3r/Geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Geometry.hpp -------------------------------------------------------------------------------- /src/libslic3r/I18N.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/I18N.hpp -------------------------------------------------------------------------------- /src/libslic3r/Int128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Int128.hpp -------------------------------------------------------------------------------- /src/libslic3r/Layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Layer.cpp -------------------------------------------------------------------------------- /src/libslic3r/Layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Layer.hpp -------------------------------------------------------------------------------- /src/libslic3r/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Line.cpp -------------------------------------------------------------------------------- /src/libslic3r/Line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Line.hpp -------------------------------------------------------------------------------- /src/libslic3r/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Log.cpp -------------------------------------------------------------------------------- /src/libslic3r/Log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Log.hpp -------------------------------------------------------------------------------- /src/libslic3r/MTUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/MTUtils.hpp -------------------------------------------------------------------------------- /src/libslic3r/Measure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Measure.cpp -------------------------------------------------------------------------------- /src/libslic3r/Measure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Measure.hpp -------------------------------------------------------------------------------- /src/libslic3r/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Model.cpp -------------------------------------------------------------------------------- /src/libslic3r/Model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Model.hpp -------------------------------------------------------------------------------- /src/libslic3r/NSVGUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/NSVGUtils.cpp -------------------------------------------------------------------------------- /src/libslic3r/NSVGUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/NSVGUtils.hpp -------------------------------------------------------------------------------- /src/libslic3r/ObjectID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/ObjectID.cpp -------------------------------------------------------------------------------- /src/libslic3r/ObjectID.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/ObjectID.hpp -------------------------------------------------------------------------------- /src/libslic3r/Orient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Orient.cpp -------------------------------------------------------------------------------- /src/libslic3r/Orient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Orient.hpp -------------------------------------------------------------------------------- /src/libslic3r/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Platform.cpp -------------------------------------------------------------------------------- /src/libslic3r/Platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Platform.hpp -------------------------------------------------------------------------------- /src/libslic3r/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Point.cpp -------------------------------------------------------------------------------- /src/libslic3r/Point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Point.hpp -------------------------------------------------------------------------------- /src/libslic3r/PointGrid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/PointGrid.hpp -------------------------------------------------------------------------------- /src/libslic3r/Polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Polygon.cpp -------------------------------------------------------------------------------- /src/libslic3r/Polygon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Polygon.hpp -------------------------------------------------------------------------------- /src/libslic3r/Polyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Polyline.cpp -------------------------------------------------------------------------------- /src/libslic3r/Polyline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Polyline.hpp -------------------------------------------------------------------------------- /src/libslic3r/Preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Preset.cpp -------------------------------------------------------------------------------- /src/libslic3r/Preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Preset.hpp -------------------------------------------------------------------------------- /src/libslic3r/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Print.cpp -------------------------------------------------------------------------------- /src/libslic3r/Print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Print.hpp -------------------------------------------------------------------------------- /src/libslic3r/PrintBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/PrintBase.cpp -------------------------------------------------------------------------------- /src/libslic3r/PrintBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/PrintBase.hpp -------------------------------------------------------------------------------- /src/libslic3r/SLA/Pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/SLA/Pad.cpp -------------------------------------------------------------------------------- /src/libslic3r/SLA/Pad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/SLA/Pad.hpp -------------------------------------------------------------------------------- /src/libslic3r/SLAPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/SLAPrint.cpp -------------------------------------------------------------------------------- /src/libslic3r/SLAPrint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/SLAPrint.hpp -------------------------------------------------------------------------------- /src/libslic3r/SVG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/SVG.cpp -------------------------------------------------------------------------------- /src/libslic3r/SVG.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/SVG.hpp -------------------------------------------------------------------------------- /src/libslic3r/Semver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Semver.cpp -------------------------------------------------------------------------------- /src/libslic3r/Semver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Semver.hpp -------------------------------------------------------------------------------- /src/libslic3r/Slicing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Slicing.cpp -------------------------------------------------------------------------------- /src/libslic3r/Slicing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Slicing.hpp -------------------------------------------------------------------------------- /src/libslic3r/StaticMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/StaticMap.hpp -------------------------------------------------------------------------------- /src/libslic3r/Subdivide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Subdivide.cpp -------------------------------------------------------------------------------- /src/libslic3r/Subdivide.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Subdivide.hpp -------------------------------------------------------------------------------- /src/libslic3r/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Surface.cpp -------------------------------------------------------------------------------- /src/libslic3r/Surface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Surface.hpp -------------------------------------------------------------------------------- /src/libslic3r/Tesselate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Tesselate.cpp -------------------------------------------------------------------------------- /src/libslic3r/Tesselate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Tesselate.hpp -------------------------------------------------------------------------------- /src/libslic3r/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Thread.cpp -------------------------------------------------------------------------------- /src/libslic3r/Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Thread.hpp -------------------------------------------------------------------------------- /src/libslic3r/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Time.cpp -------------------------------------------------------------------------------- /src/libslic3r/Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Time.hpp -------------------------------------------------------------------------------- /src/libslic3r/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Timer.cpp -------------------------------------------------------------------------------- /src/libslic3r/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Timer.hpp -------------------------------------------------------------------------------- /src/libslic3r/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Utils.hpp -------------------------------------------------------------------------------- /src/libslic3r/Zipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Zipper.cpp -------------------------------------------------------------------------------- /src/libslic3r/Zipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/Zipper.hpp -------------------------------------------------------------------------------- /src/libslic3r/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/clipper.cpp -------------------------------------------------------------------------------- /src/libslic3r/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/clipper.hpp -------------------------------------------------------------------------------- /src/libslic3r/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/format.hpp -------------------------------------------------------------------------------- /src/libslic3r/libslic3r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/libslic3r.h -------------------------------------------------------------------------------- /src/libslic3r/pchheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/pchheader.cpp -------------------------------------------------------------------------------- /src/libslic3r/pchheader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/pchheader.hpp -------------------------------------------------------------------------------- /src/libslic3r/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/libslic3r/utils.cpp -------------------------------------------------------------------------------- /src/miniz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/miniz/CMakeLists.txt -------------------------------------------------------------------------------- /src/miniz/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/miniz/ChangeLog.md -------------------------------------------------------------------------------- /src/miniz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/miniz/LICENSE -------------------------------------------------------------------------------- /src/miniz/README-Prusa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/miniz/README-Prusa.txt -------------------------------------------------------------------------------- /src/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/miniz/miniz.c -------------------------------------------------------------------------------- /src/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/miniz/miniz.h -------------------------------------------------------------------------------- /src/miniz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/miniz/readme.md -------------------------------------------------------------------------------- /src/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/nlohmann/json.hpp -------------------------------------------------------------------------------- /src/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /src/qoi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/qoi/CMakeLists.txt -------------------------------------------------------------------------------- /src/qoi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/qoi/README.md -------------------------------------------------------------------------------- /src/qoi/qoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/qoi/qoi.h -------------------------------------------------------------------------------- /src/qoi/qoilib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/qoi/qoilib.c -------------------------------------------------------------------------------- /src/semver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/semver/CMakeLists.txt -------------------------------------------------------------------------------- /src/semver/semver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/semver/semver.c -------------------------------------------------------------------------------- /src/semver/semver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/semver/semver.h -------------------------------------------------------------------------------- /src/slic3r/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/CMakeLists.txt -------------------------------------------------------------------------------- /src/slic3r/GUI/2DBed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/2DBed.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/2DBed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/2DBed.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/3DBed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/3DBed.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/3DBed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/3DBed.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/3DScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/3DScene.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/3DScene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/3DScene.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Camera.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Camera.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Event.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Field.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Field.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GLModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GLModel.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GLModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GLModel.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GLShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GLShader.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GLShader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GLShader.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GUI.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GUI.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GUI_App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GUI_App.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GUI_App.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GUI_App.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GUI_Init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GUI_Init.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GUI_Init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GUI_Init.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GUI_Tags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GUI_Tags.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/GUI_Tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/GUI_Tags.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/I18N.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/I18N.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/I18N.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/I18N.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Jobs/Job.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Jobs/Job.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Notebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Notebook.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Notebook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Notebook.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Plater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Plater.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Plater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Plater.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Search.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Search.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Tab.cpp -------------------------------------------------------------------------------- /src/slic3r/GUI/Tab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/Tab.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/format.hpp -------------------------------------------------------------------------------- /src/slic3r/GUI/wxinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/GUI/wxinit.h -------------------------------------------------------------------------------- /src/slic3r/StackWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/StackWalker.cpp -------------------------------------------------------------------------------- /src/slic3r/StackWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/StackWalker.h -------------------------------------------------------------------------------- /src/slic3r/Utils/Duet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/Utils/Duet.cpp -------------------------------------------------------------------------------- /src/slic3r/Utils/Duet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/Utils/Duet.hpp -------------------------------------------------------------------------------- /src/slic3r/Utils/Http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/Utils/Http.cpp -------------------------------------------------------------------------------- /src/slic3r/Utils/Http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/Utils/Http.hpp -------------------------------------------------------------------------------- /src/slic3r/Utils/MKS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/Utils/MKS.cpp -------------------------------------------------------------------------------- /src/slic3r/Utils/MKS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/Utils/MKS.hpp -------------------------------------------------------------------------------- /src/slic3r/Utils/MPMDv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/Utils/MPMDv2.cpp -------------------------------------------------------------------------------- /src/slic3r/Utils/MPMDv2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/Utils/MPMDv2.hpp -------------------------------------------------------------------------------- /src/slic3r/Utils/Serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/Utils/Serial.cpp -------------------------------------------------------------------------------- /src/slic3r/Utils/Serial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/Utils/Serial.hpp -------------------------------------------------------------------------------- /src/slic3r/pchheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/pchheader.cpp -------------------------------------------------------------------------------- /src/slic3r/pchheader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/slic3r/pchheader.hpp -------------------------------------------------------------------------------- /src/stb_dxt/stb_dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/stb_dxt/stb_dxt.h -------------------------------------------------------------------------------- /src/tcbspan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/tcbspan/README.md -------------------------------------------------------------------------------- /src/tcbspan/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/src/tcbspan/span.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/arrange/arrange_tests_main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tests/catch_main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/catch_main.hpp -------------------------------------------------------------------------------- /tests/cpp17/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/cpp17/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cpp17/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/cpp17/main.cpp -------------------------------------------------------------------------------- /tests/data/20mm_cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/20mm_cube.obj -------------------------------------------------------------------------------- /tests/data/2x20x10.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/2x20x10.obj -------------------------------------------------------------------------------- /tests/data/A.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/A.obj -------------------------------------------------------------------------------- /tests/data/A_upsidedown.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/A_upsidedown.obj -------------------------------------------------------------------------------- /tests/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/README.md -------------------------------------------------------------------------------- /tests/data/U_overhang.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/U_overhang.obj -------------------------------------------------------------------------------- /tests/data/V.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/V.obj -------------------------------------------------------------------------------- /tests/data/V_standing.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/V_standing.obj -------------------------------------------------------------------------------- /tests/data/bridge.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/bridge.obj -------------------------------------------------------------------------------- /tests/data/default_fff.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/default_fff.ini -------------------------------------------------------------------------------- /tests/data/frog_legs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/frog_legs.obj -------------------------------------------------------------------------------- /tests/data/ipadstand.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/ipadstand.obj -------------------------------------------------------------------------------- /tests/data/overhang.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/overhang.obj -------------------------------------------------------------------------------- /tests/data/prusaparts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/prusaparts.cpp -------------------------------------------------------------------------------- /tests/data/prusaparts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/prusaparts.hpp -------------------------------------------------------------------------------- /tests/data/pyramid.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/pyramid.obj -------------------------------------------------------------------------------- /tests/data/sloping_hole.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/sloping_hole.obj -------------------------------------------------------------------------------- /tests/data/small_dorito.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/data/small_dorito.obj -------------------------------------------------------------------------------- /tests/data/test_config/new_from_ini.ini: -------------------------------------------------------------------------------- 1 | filament_colour = #ABCD 2 | -------------------------------------------------------------------------------- /tests/sla_print/sla_print_tests_main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tests/test_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/tests/test_utils.hpp -------------------------------------------------------------------------------- /tests/thumbnails/thumbnails_tests_main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermerill/SuperSlicer/HEAD/version.inc --------------------------------------------------------------------------------