├── .github ├── CI_OVERVIEW.md └── workflows │ ├── ci_linux_arch.yml │ ├── ci_linux_fedora.yml │ ├── ci_linux_ubuntu.yml │ ├── ci_linux_ubuntu_armv7.yml │ ├── ci_macos.yml │ ├── ci_macos_conda.yml │ └── ci_windows.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── cmake └── OpenCascadeWin.cmake ├── doc ├── 3rdparty_licenses.md ├── screencast_1.gif ├── screencast_cli.gif ├── screenshot_1.png ├── screenshot_2.png ├── screenshot_3.png ├── screenshot_4.png ├── screenshot_5.png ├── screenshot_6.png ├── screenshot_mayoconv_linux.png ├── screenshot_ubuntu_1.png ├── screenshot_ubuntu_2.png ├── screenshot_ubuntu_3.png ├── screenshot_ubuntu_4.png ├── screenshot_ubuntu_5.png ├── screenshot_ubuntu_main.png ├── src_modules.odg ├── src_modules.png ├── win_cmake_01.png ├── win_cmake_02.png ├── win_cmake_03.png ├── win_cmake_04.png ├── win_cmake_05.png ├── win_cmake_06.png └── win_msvc_mp.png ├── i18n ├── i18n.pro ├── mayo.qrc ├── mayo_en.qm ├── mayo_en.ts ├── mayo_fr.qm ├── mayo_fr.ts ├── mayo_zh.qm ├── mayo_zh.ts ├── messages.cpp ├── qt5base.qrc ├── qt5base_en.qm ├── qt5base_fr.qm ├── qt5base_zh.qm ├── qt6base.qrc ├── qt6base_en.qm ├── qt6base_fr.qm └── qt6base_zh.qm ├── images ├── appicon.icns ├── appicon.ico ├── appicon.rc ├── appicon.svg ├── appicon_128.png ├── appicon_16.png ├── appicon_24.png ├── appicon_256.png ├── appicon_32.png ├── appicon_64.png ├── credits.txt ├── graphics │ └── opencascade_hatch_1.png ├── mayo.qrc ├── themes │ ├── classic │ │ ├── add-file.svg │ │ ├── back-square.svg │ │ ├── back.svg │ │ ├── camera.svg │ │ ├── clip-plane.svg │ │ ├── cross.svg │ │ ├── edit.svg │ │ ├── expand.svg │ │ ├── export.svg │ │ ├── file.svg │ │ ├── gear.svg │ │ ├── grid.svg │ │ ├── import.svg │ │ ├── indicator-down-disabled_8.png │ │ ├── indicator-down_8.png │ │ ├── item-mesh.svg │ │ ├── item-xde.svg │ │ ├── left-sidebar.svg │ │ ├── link.svg │ │ ├── measure.svg │ │ ├── multiple.svg │ │ ├── next.svg │ │ ├── open-files.svg │ │ ├── reload.svg │ │ ├── stop.svg │ │ ├── turn-ccw.svg │ │ ├── turn-cw.svg │ │ ├── view-back.svg │ │ ├── view-bottom.svg │ │ ├── view-front.svg │ │ ├── view-iso.svg │ │ ├── view-left.svg │ │ ├── view-right.svg │ │ ├── view-top.svg │ │ ├── visibility-hide-selection.svg │ │ ├── visibility-menu.svg │ │ ├── visibility-show-all.svg │ │ ├── visibility-show-selection-only.svg │ │ ├── visibility-show-selection.svg │ │ ├── xde-assembly.svg │ │ ├── xde-simple-shape.svg │ │ ├── zoom-in.svg │ │ └── zoom-out.svg │ └── dark │ │ ├── back-square.svg │ │ ├── back.svg │ │ ├── camera.svg │ │ ├── clip-plane.svg │ │ ├── cross.svg │ │ ├── edit.svg │ │ ├── expand.svg │ │ ├── export.svg │ │ ├── file.svg │ │ ├── gear.svg │ │ ├── grid.svg │ │ ├── import.svg │ │ ├── indicator-down-disabled_8.png │ │ ├── indicator-down_8.png │ │ ├── item-mesh.svg │ │ ├── item-xde.svg │ │ ├── left-sidebar.svg │ │ ├── link.svg │ │ ├── measure.svg │ │ ├── multiple.svg │ │ ├── next.svg │ │ ├── reload.svg │ │ ├── stop.svg │ │ ├── turn-ccw.svg │ │ ├── turn-cw.svg │ │ ├── view-back.svg │ │ ├── view-bottom.svg │ │ ├── view-front.svg │ │ ├── view-iso.svg │ │ ├── view-left.svg │ │ ├── view-right.svg │ │ ├── view-top.svg │ │ ├── visibility-hide-selection.svg │ │ ├── visibility-menu.svg │ │ ├── visibility-show-all.svg │ │ ├── visibility-show-selection-only.svg │ │ ├── visibility-show-selection.svg │ │ ├── xde-assembly.svg │ │ ├── xde-simple-shape.svg │ │ ├── zoom-in.svg │ │ └── zoom-out.svg ├── widget_pseudo_fold.png └── xde_reference_16.png ├── scripts ├── bump-version.rb ├── gen-cmake-opencascade-vars.bat ├── release-i18n.bat └── update-i18n.bat ├── src ├── 3rdparty │ ├── commit_fast_float.txt │ ├── commit_fmt.txt │ ├── commit_gsl.txt │ ├── commit_kdbindings.txt │ ├── commit_magic_enum.txt │ ├── fast_float │ │ └── fast_float.h │ ├── fmt │ │ ├── args.h │ │ ├── base.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ ├── src │ │ │ ├── fmt.cc │ │ │ ├── format.cc │ │ │ └── os.cc │ │ ├── std.h │ │ └── xchar.h │ ├── gsl │ │ ├── algorithm │ │ ├── assert │ │ ├── byte │ │ ├── gsl │ │ ├── gsl_algorithm │ │ ├── gsl_assert │ │ ├── gsl_byte │ │ ├── gsl_narrow │ │ ├── gsl_util │ │ ├── narrow │ │ ├── pointers │ │ ├── span │ │ ├── span_ext │ │ ├── string_span │ │ └── util │ ├── kdbindings │ │ ├── genindex_array.h │ │ ├── signal.h │ │ └── utils.h │ └── magic_enum │ │ └── magic_enum.hpp ├── app │ ├── app_context.cpp │ ├── app_context.h │ ├── app_module.cpp │ ├── app_module.h │ ├── app_module_properties.cpp │ ├── app_module_properties.h │ ├── app_ui_state.cpp │ ├── app_ui_state.h │ ├── button_flat.cpp │ ├── button_flat.h │ ├── command_system_information.cpp │ ├── command_system_information_occopengl.cpp │ ├── command_system_information_occopengl.h │ ├── commands_api.cpp │ ├── commands_api.h │ ├── commands_display.cpp │ ├── commands_display.h │ ├── commands_file.cpp │ ├── commands_file.h │ ├── commands_help.cpp │ ├── commands_help.h │ ├── commands_tools.cpp │ ├── commands_tools.h │ ├── commands_window.cpp │ ├── commands_window.h │ ├── dialog_about.cpp │ ├── dialog_about.h │ ├── dialog_about.ui │ ├── dialog_inspect_xde.cpp │ ├── dialog_inspect_xde.h │ ├── dialog_inspect_xde.ui │ ├── dialog_options.cpp │ ├── dialog_options.h │ ├── dialog_options.ui │ ├── dialog_save_image_view.cpp │ ├── dialog_save_image_view.h │ ├── dialog_save_image_view.ui │ ├── dialog_task_manager.cpp │ ├── dialog_task_manager.h │ ├── dialog_task_manager.ui │ ├── document_files_watcher.cpp │ ├── document_files_watcher.h │ ├── document_property_group.cpp │ ├── document_property_group.h │ ├── document_tree_node_properties_providers.cpp │ ├── document_tree_node_properties_providers.h │ ├── grid_helper.cpp │ ├── grid_helper.h │ ├── gui_document_list_model.cpp │ ├── gui_document_list_model.h │ ├── item_view_buttons.cpp │ ├── item_view_buttons.h │ ├── iwidget_main_page.h │ ├── library_info.h │ ├── list_helper.cpp │ ├── list_helper.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── occt_window.cpp │ ├── occt_window.h │ ├── property_editor_factory.cpp │ ├── property_editor_factory.h │ ├── property_item_delegate.cpp │ ├── property_item_delegate.h │ ├── proxy_styled_item_delegate.cpp │ ├── proxy_styled_item_delegate.h │ ├── qmeta_property.h │ ├── qmeta_tdf_label.h │ ├── qstring_utils.cpp │ ├── qstring_utils.h │ ├── qtgui_utils.cpp │ ├── qtgui_utils.h │ ├── qtwidgets_utils.cpp │ ├── qtwidgets_utils.h │ ├── recent_files.cpp │ ├── recent_files.h │ ├── theme.cpp │ ├── theme.h │ ├── view3d_navigation_style.h │ ├── widget_clip_planes.cpp │ ├── widget_clip_planes.h │ ├── widget_clip_planes.ui │ ├── widget_explode_assembly.cpp │ ├── widget_explode_assembly.h │ ├── widget_explode_assembly.ui │ ├── widget_file_system.cpp │ ├── widget_file_system.h │ ├── widget_grid.cpp │ ├── widget_grid.h │ ├── widget_grid.ui │ ├── widget_gui_document.cpp │ ├── widget_gui_document.h │ ├── widget_home_files.cpp │ ├── widget_home_files.h │ ├── widget_main_control.cpp │ ├── widget_main_control.h │ ├── widget_main_control.ui │ ├── widget_main_home.cpp │ ├── widget_main_home.h │ ├── widget_main_home.ui │ ├── widget_measure.cpp │ ├── widget_measure.h │ ├── widget_measure.ui │ ├── widget_message_indicator.cpp │ ├── widget_message_indicator.h │ ├── widget_model_tree.cpp │ ├── widget_model_tree.h │ ├── widget_model_tree.ui │ ├── widget_model_tree_builder.cpp │ ├── widget_model_tree_builder.h │ ├── widget_model_tree_builder_mesh.cpp │ ├── widget_model_tree_builder_mesh.h │ ├── widget_model_tree_builder_xde.cpp │ ├── widget_model_tree_builder_xde.h │ ├── widget_occ_view.cpp │ ├── widget_occ_view.h │ ├── widget_occ_view_controller.cpp │ ├── widget_occ_view_controller.h │ ├── widget_occ_view_impl.cpp │ ├── widget_properties_editor.cpp │ ├── widget_properties_editor.h │ ├── widget_properties_editor.ui │ └── windows │ │ ├── win_taskbar_global_progress.cpp │ │ └── win_taskbar_global_progress.h ├── base │ ├── application.cpp │ ├── application.h │ ├── application_item.cpp │ ├── application_item.h │ ├── application_item_selection_model.cpp │ ├── application_item_selection_model.h │ ├── application_ptr.h │ ├── bnd_utils.cpp │ ├── bnd_utils.h │ ├── brep_utils.cpp │ ├── brep_utils.h │ ├── caf_utils.cpp │ ├── caf_utils.h │ ├── cpp_utils.h │ ├── document.cpp │ ├── document.h │ ├── document_ptr.h │ ├── document_tree_node.cpp │ ├── document_tree_node.h │ ├── enumeration.cpp │ ├── enumeration.h │ ├── enumeration_fromenum.h │ ├── filepath.h │ ├── filepath_conv.h │ ├── geom_utils.cpp │ ├── geom_utils.h │ ├── global.h │ ├── io_format.cpp │ ├── io_format.h │ ├── io_parameters_provider.h │ ├── io_reader.cpp │ ├── io_reader.h │ ├── io_single_format_factory.h │ ├── io_system.cpp │ ├── io_system.h │ ├── io_writer.cpp │ ├── io_writer.h │ ├── label_data.cpp │ ├── label_data.h │ ├── libtree.h │ ├── math_utils.cpp │ ├── math_utils.h │ ├── mesh_access.cpp │ ├── mesh_access.h │ ├── mesh_utils.cpp │ ├── mesh_utils.h │ ├── messenger.cpp │ ├── messenger.h │ ├── messenger_client.cpp │ ├── messenger_client.h │ ├── meta_enum.h │ ├── occ_brep_mesh_parameters.h │ ├── occ_handle.h │ ├── occ_progress_indicator.cpp │ ├── occ_progress_indicator.h │ ├── occ_static_variables_rollback.cpp │ ├── occ_static_variables_rollback.h │ ├── occt_enums.cpp │ ├── occt_enums.h │ ├── point_cloud_data.cpp │ ├── point_cloud_data.h │ ├── property.cpp │ ├── property.h │ ├── property_builtins.cpp │ ├── property_builtins.h │ ├── property_enumeration.cpp │ ├── property_enumeration.h │ ├── property_value_conversion.cpp │ ├── property_value_conversion.h │ ├── quantity.cpp │ ├── quantity.h │ ├── settings.cpp │ ├── settings.h │ ├── settings_index.h │ ├── signal.cpp │ ├── signal.h │ ├── span.h │ ├── string_conv.cpp │ ├── string_conv.h │ ├── task_common.h │ ├── task_manager.cpp │ ├── task_manager.h │ ├── task_progress.cpp │ ├── task_progress.h │ ├── text_id.cpp │ ├── text_id.h │ ├── tkernel_utils.cpp │ ├── tkernel_utils.h │ ├── triangulation_annex_data.cpp │ ├── triangulation_annex_data.h │ ├── typed_scalar.h │ ├── unit.cpp │ ├── unit.h │ ├── unit_system.cpp │ ├── unit_system.h │ ├── xcaf.cpp │ └── xcaf.h ├── cli │ ├── cli_export.cpp │ ├── cli_export.h │ ├── console.cpp │ ├── console.h │ └── main.cpp ├── graphics │ ├── ais_text.cpp │ ├── ais_text.h │ ├── graphics_create_driver.cpp │ ├── graphics_create_virtual_window.cpp │ ├── graphics_mesh_data_source.cpp │ ├── graphics_mesh_data_source.h │ ├── graphics_mesh_object_driver.cpp │ ├── graphics_mesh_object_driver.h │ ├── graphics_object_driver.cpp │ ├── graphics_object_driver.h │ ├── graphics_object_ptr.h │ ├── graphics_owner_ptr.h │ ├── graphics_point_cloud_object_driver.cpp │ ├── graphics_point_cloud_object_driver.h │ ├── graphics_scene.cpp │ ├── graphics_scene.h │ ├── graphics_shape_object_driver.cpp │ ├── graphics_shape_object_driver.h │ ├── graphics_texture2d.h │ ├── graphics_utils.cpp │ ├── graphics_utils.h │ └── graphics_view_ptr.h ├── gui │ ├── gui_application.cpp │ ├── gui_application.h │ ├── gui_document.cpp │ ├── gui_document.h │ ├── gui_vkey_mouse.h │ ├── v3d_view_camera_animation.cpp │ ├── v3d_view_camera_animation.h │ ├── v3d_view_controller.cpp │ └── v3d_view_controller.h ├── io_assimp │ ├── io_assimp.cpp │ ├── io_assimp.h │ ├── io_assimp_reader.cpp │ └── io_assimp_reader.h ├── io_dxf │ ├── aci_table.h │ ├── dxf.cpp │ ├── dxf.h │ ├── freecad.h │ ├── io_dxf.cpp │ └── io_dxf.h ├── io_gmio │ ├── io_gmio.cpp │ ├── io_gmio.h │ ├── io_gmio_amf_writer.cpp │ └── io_gmio_amf_writer.h ├── io_image │ ├── io_image.cpp │ └── io_image.h ├── io_occ │ ├── io_occ.cpp │ ├── io_occ.h │ ├── io_occ_base_mesh.cpp │ ├── io_occ_base_mesh.h │ ├── io_occ_brep.cpp │ ├── io_occ_brep.h │ ├── io_occ_caf.cpp │ ├── io_occ_caf.h │ ├── io_occ_common.cpp │ ├── io_occ_common.h │ ├── io_occ_gltf_reader.cpp │ ├── io_occ_gltf_reader.h │ ├── io_occ_gltf_writer.cpp │ ├── io_occ_gltf_writer.h │ ├── io_occ_iges.cpp │ ├── io_occ_iges.h │ ├── io_occ_obj_reader.cpp │ ├── io_occ_obj_reader.h │ ├── io_occ_obj_writer.cpp │ ├── io_occ_obj_writer.h │ ├── io_occ_step.cpp │ ├── io_occ_step.h │ ├── io_occ_stl.cpp │ ├── io_occ_stl.h │ ├── io_occ_vrml_reader.cpp │ ├── io_occ_vrml_reader.h │ ├── io_occ_vrml_writer.cpp │ └── io_occ_vrml_writer.h ├── io_off │ ├── io_off_reader.cpp │ ├── io_off_reader.h │ ├── io_off_writer.cpp │ └── io_off_writer.h ├── io_ply │ ├── commit_miniply.txt │ ├── io_ply_reader.cpp │ ├── io_ply_reader.h │ ├── io_ply_writer.cpp │ ├── io_ply_writer.h │ ├── miniply.cpp │ └── miniply.h ├── mayo_config.h.cmake ├── mayo_version.h.cmake ├── measure │ ├── measure_display.cpp │ ├── measure_display.h │ ├── measure_tool.cpp │ ├── measure_tool.h │ ├── measure_tool_brep.cpp │ ├── measure_tool_brep.h │ └── measure_type.h ├── qtbackend │ ├── qsettings_storage.cpp │ ├── qsettings_storage.h │ ├── qt_animation_backend.cpp │ ├── qt_animation_backend.h │ ├── qt_app_translator.cpp │ ├── qt_app_translator.h │ ├── qt_signal_thread_helper.cpp │ └── qt_signal_thread_helper.h └── qtcommon │ ├── filepath_conv.h │ ├── log_message_handler.cpp │ ├── log_message_handler.h │ ├── qstring_conv.cpp │ ├── qstring_conv.h │ ├── qtcore_hfuncs.h │ ├── qtcore_utils.cpp │ └── qtcore_utils.h └── tests ├── inputs ├── #258_cube.off ├── #332_file.stp ├── cube.bin ├── cube.brep ├── cube.gltf ├── cube.iges ├── cube.mtl ├── cube.obj ├── cube.off ├── cube.ply ├── cube.step ├── cube.stla ├── cube.stlb ├── cube.wrl ├── face_trsf_scale_almost_1.stl └── mayo_bezier_curve.brep ├── main.cpp ├── qttest_utils.h ├── test_app.cpp ├── test_app.h ├── test_base.cpp ├── test_base.h ├── test_io.cpp ├── test_io.h ├── test_measure.cpp └── test_measure.h /.github/CI_OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/.github/CI_OVERVIEW.md -------------------------------------------------------------------------------- /.github/workflows/ci_linux_arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/.github/workflows/ci_linux_arch.yml -------------------------------------------------------------------------------- /.github/workflows/ci_linux_fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/.github/workflows/ci_linux_fedora.yml -------------------------------------------------------------------------------- /.github/workflows/ci_linux_ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/.github/workflows/ci_linux_ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/ci_linux_ubuntu_armv7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/.github/workflows/ci_linux_ubuntu_armv7.yml -------------------------------------------------------------------------------- /.github/workflows/ci_macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/.github/workflows/ci_macos.yml -------------------------------------------------------------------------------- /.github/workflows/ci_macos_conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/.github/workflows/ci_macos_conda.yml -------------------------------------------------------------------------------- /.github/workflows/ci_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/.github/workflows/ci_windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/README.md -------------------------------------------------------------------------------- /cmake/OpenCascadeWin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/cmake/OpenCascadeWin.cmake -------------------------------------------------------------------------------- /doc/3rdparty_licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/3rdparty_licenses.md -------------------------------------------------------------------------------- /doc/screencast_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screencast_1.gif -------------------------------------------------------------------------------- /doc/screencast_cli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screencast_cli.gif -------------------------------------------------------------------------------- /doc/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_1.png -------------------------------------------------------------------------------- /doc/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_2.png -------------------------------------------------------------------------------- /doc/screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_3.png -------------------------------------------------------------------------------- /doc/screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_4.png -------------------------------------------------------------------------------- /doc/screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_5.png -------------------------------------------------------------------------------- /doc/screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_6.png -------------------------------------------------------------------------------- /doc/screenshot_mayoconv_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_mayoconv_linux.png -------------------------------------------------------------------------------- /doc/screenshot_ubuntu_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_ubuntu_1.png -------------------------------------------------------------------------------- /doc/screenshot_ubuntu_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_ubuntu_2.png -------------------------------------------------------------------------------- /doc/screenshot_ubuntu_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_ubuntu_3.png -------------------------------------------------------------------------------- /doc/screenshot_ubuntu_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_ubuntu_4.png -------------------------------------------------------------------------------- /doc/screenshot_ubuntu_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_ubuntu_5.png -------------------------------------------------------------------------------- /doc/screenshot_ubuntu_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/screenshot_ubuntu_main.png -------------------------------------------------------------------------------- /doc/src_modules.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/src_modules.odg -------------------------------------------------------------------------------- /doc/src_modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/src_modules.png -------------------------------------------------------------------------------- /doc/win_cmake_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/win_cmake_01.png -------------------------------------------------------------------------------- /doc/win_cmake_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/win_cmake_02.png -------------------------------------------------------------------------------- /doc/win_cmake_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/win_cmake_03.png -------------------------------------------------------------------------------- /doc/win_cmake_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/win_cmake_04.png -------------------------------------------------------------------------------- /doc/win_cmake_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/win_cmake_05.png -------------------------------------------------------------------------------- /doc/win_cmake_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/win_cmake_06.png -------------------------------------------------------------------------------- /doc/win_msvc_mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/doc/win_msvc_mp.png -------------------------------------------------------------------------------- /i18n/i18n.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/i18n.pro -------------------------------------------------------------------------------- /i18n/mayo.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/mayo.qrc -------------------------------------------------------------------------------- /i18n/mayo_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/mayo_en.qm -------------------------------------------------------------------------------- /i18n/mayo_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/mayo_en.ts -------------------------------------------------------------------------------- /i18n/mayo_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/mayo_fr.qm -------------------------------------------------------------------------------- /i18n/mayo_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/mayo_fr.ts -------------------------------------------------------------------------------- /i18n/mayo_zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/mayo_zh.qm -------------------------------------------------------------------------------- /i18n/mayo_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/mayo_zh.ts -------------------------------------------------------------------------------- /i18n/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/messages.cpp -------------------------------------------------------------------------------- /i18n/qt5base.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/qt5base.qrc -------------------------------------------------------------------------------- /i18n/qt5base_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/qt5base_en.qm -------------------------------------------------------------------------------- /i18n/qt5base_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/qt5base_fr.qm -------------------------------------------------------------------------------- /i18n/qt5base_zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/qt5base_zh.qm -------------------------------------------------------------------------------- /i18n/qt6base.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/qt6base.qrc -------------------------------------------------------------------------------- /i18n/qt6base_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/qt6base_en.qm -------------------------------------------------------------------------------- /i18n/qt6base_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/qt6base_fr.qm -------------------------------------------------------------------------------- /i18n/qt6base_zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/i18n/qt6base_zh.qm -------------------------------------------------------------------------------- /images/appicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/appicon.icns -------------------------------------------------------------------------------- /images/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/appicon.ico -------------------------------------------------------------------------------- /images/appicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/appicon.rc -------------------------------------------------------------------------------- /images/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/appicon.svg -------------------------------------------------------------------------------- /images/appicon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/appicon_128.png -------------------------------------------------------------------------------- /images/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/appicon_16.png -------------------------------------------------------------------------------- /images/appicon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/appicon_24.png -------------------------------------------------------------------------------- /images/appicon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/appicon_256.png -------------------------------------------------------------------------------- /images/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/appicon_32.png -------------------------------------------------------------------------------- /images/appicon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/appicon_64.png -------------------------------------------------------------------------------- /images/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/credits.txt -------------------------------------------------------------------------------- /images/graphics/opencascade_hatch_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/graphics/opencascade_hatch_1.png -------------------------------------------------------------------------------- /images/mayo.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/mayo.qrc -------------------------------------------------------------------------------- /images/themes/classic/add-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/add-file.svg -------------------------------------------------------------------------------- /images/themes/classic/back-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/back-square.svg -------------------------------------------------------------------------------- /images/themes/classic/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/back.svg -------------------------------------------------------------------------------- /images/themes/classic/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/camera.svg -------------------------------------------------------------------------------- /images/themes/classic/clip-plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/clip-plane.svg -------------------------------------------------------------------------------- /images/themes/classic/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/cross.svg -------------------------------------------------------------------------------- /images/themes/classic/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/edit.svg -------------------------------------------------------------------------------- /images/themes/classic/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/expand.svg -------------------------------------------------------------------------------- /images/themes/classic/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/export.svg -------------------------------------------------------------------------------- /images/themes/classic/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/file.svg -------------------------------------------------------------------------------- /images/themes/classic/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/gear.svg -------------------------------------------------------------------------------- /images/themes/classic/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/grid.svg -------------------------------------------------------------------------------- /images/themes/classic/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/import.svg -------------------------------------------------------------------------------- /images/themes/classic/indicator-down-disabled_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/indicator-down-disabled_8.png -------------------------------------------------------------------------------- /images/themes/classic/indicator-down_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/indicator-down_8.png -------------------------------------------------------------------------------- /images/themes/classic/item-mesh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/item-mesh.svg -------------------------------------------------------------------------------- /images/themes/classic/item-xde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/item-xde.svg -------------------------------------------------------------------------------- /images/themes/classic/left-sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/left-sidebar.svg -------------------------------------------------------------------------------- /images/themes/classic/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/link.svg -------------------------------------------------------------------------------- /images/themes/classic/measure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/measure.svg -------------------------------------------------------------------------------- /images/themes/classic/multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/multiple.svg -------------------------------------------------------------------------------- /images/themes/classic/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/next.svg -------------------------------------------------------------------------------- /images/themes/classic/open-files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/open-files.svg -------------------------------------------------------------------------------- /images/themes/classic/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/reload.svg -------------------------------------------------------------------------------- /images/themes/classic/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/stop.svg -------------------------------------------------------------------------------- /images/themes/classic/turn-ccw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/turn-ccw.svg -------------------------------------------------------------------------------- /images/themes/classic/turn-cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/turn-cw.svg -------------------------------------------------------------------------------- /images/themes/classic/view-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/view-back.svg -------------------------------------------------------------------------------- /images/themes/classic/view-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/view-bottom.svg -------------------------------------------------------------------------------- /images/themes/classic/view-front.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/view-front.svg -------------------------------------------------------------------------------- /images/themes/classic/view-iso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/view-iso.svg -------------------------------------------------------------------------------- /images/themes/classic/view-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/view-left.svg -------------------------------------------------------------------------------- /images/themes/classic/view-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/view-right.svg -------------------------------------------------------------------------------- /images/themes/classic/view-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/view-top.svg -------------------------------------------------------------------------------- /images/themes/classic/visibility-hide-selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/visibility-hide-selection.svg -------------------------------------------------------------------------------- /images/themes/classic/visibility-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/visibility-menu.svg -------------------------------------------------------------------------------- /images/themes/classic/visibility-show-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/visibility-show-all.svg -------------------------------------------------------------------------------- /images/themes/classic/visibility-show-selection-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/visibility-show-selection-only.svg -------------------------------------------------------------------------------- /images/themes/classic/visibility-show-selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/visibility-show-selection.svg -------------------------------------------------------------------------------- /images/themes/classic/xde-assembly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/xde-assembly.svg -------------------------------------------------------------------------------- /images/themes/classic/xde-simple-shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/xde-simple-shape.svg -------------------------------------------------------------------------------- /images/themes/classic/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/zoom-in.svg -------------------------------------------------------------------------------- /images/themes/classic/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/classic/zoom-out.svg -------------------------------------------------------------------------------- /images/themes/dark/back-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/back-square.svg -------------------------------------------------------------------------------- /images/themes/dark/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/back.svg -------------------------------------------------------------------------------- /images/themes/dark/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/camera.svg -------------------------------------------------------------------------------- /images/themes/dark/clip-plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/clip-plane.svg -------------------------------------------------------------------------------- /images/themes/dark/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/cross.svg -------------------------------------------------------------------------------- /images/themes/dark/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/edit.svg -------------------------------------------------------------------------------- /images/themes/dark/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/expand.svg -------------------------------------------------------------------------------- /images/themes/dark/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/export.svg -------------------------------------------------------------------------------- /images/themes/dark/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/file.svg -------------------------------------------------------------------------------- /images/themes/dark/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/gear.svg -------------------------------------------------------------------------------- /images/themes/dark/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/grid.svg -------------------------------------------------------------------------------- /images/themes/dark/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/import.svg -------------------------------------------------------------------------------- /images/themes/dark/indicator-down-disabled_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/indicator-down-disabled_8.png -------------------------------------------------------------------------------- /images/themes/dark/indicator-down_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/indicator-down_8.png -------------------------------------------------------------------------------- /images/themes/dark/item-mesh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/item-mesh.svg -------------------------------------------------------------------------------- /images/themes/dark/item-xde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/item-xde.svg -------------------------------------------------------------------------------- /images/themes/dark/left-sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/left-sidebar.svg -------------------------------------------------------------------------------- /images/themes/dark/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/link.svg -------------------------------------------------------------------------------- /images/themes/dark/measure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/measure.svg -------------------------------------------------------------------------------- /images/themes/dark/multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/multiple.svg -------------------------------------------------------------------------------- /images/themes/dark/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/next.svg -------------------------------------------------------------------------------- /images/themes/dark/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/reload.svg -------------------------------------------------------------------------------- /images/themes/dark/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/stop.svg -------------------------------------------------------------------------------- /images/themes/dark/turn-ccw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/turn-ccw.svg -------------------------------------------------------------------------------- /images/themes/dark/turn-cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/turn-cw.svg -------------------------------------------------------------------------------- /images/themes/dark/view-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/view-back.svg -------------------------------------------------------------------------------- /images/themes/dark/view-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/view-bottom.svg -------------------------------------------------------------------------------- /images/themes/dark/view-front.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/view-front.svg -------------------------------------------------------------------------------- /images/themes/dark/view-iso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/view-iso.svg -------------------------------------------------------------------------------- /images/themes/dark/view-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/view-left.svg -------------------------------------------------------------------------------- /images/themes/dark/view-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/view-right.svg -------------------------------------------------------------------------------- /images/themes/dark/view-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/view-top.svg -------------------------------------------------------------------------------- /images/themes/dark/visibility-hide-selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/visibility-hide-selection.svg -------------------------------------------------------------------------------- /images/themes/dark/visibility-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/visibility-menu.svg -------------------------------------------------------------------------------- /images/themes/dark/visibility-show-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/visibility-show-all.svg -------------------------------------------------------------------------------- /images/themes/dark/visibility-show-selection-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/visibility-show-selection-only.svg -------------------------------------------------------------------------------- /images/themes/dark/visibility-show-selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/visibility-show-selection.svg -------------------------------------------------------------------------------- /images/themes/dark/xde-assembly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/xde-assembly.svg -------------------------------------------------------------------------------- /images/themes/dark/xde-simple-shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/xde-simple-shape.svg -------------------------------------------------------------------------------- /images/themes/dark/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/zoom-in.svg -------------------------------------------------------------------------------- /images/themes/dark/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/themes/dark/zoom-out.svg -------------------------------------------------------------------------------- /images/widget_pseudo_fold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/widget_pseudo_fold.png -------------------------------------------------------------------------------- /images/xde_reference_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/images/xde_reference_16.png -------------------------------------------------------------------------------- /scripts/bump-version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/scripts/bump-version.rb -------------------------------------------------------------------------------- /scripts/gen-cmake-opencascade-vars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/scripts/gen-cmake-opencascade-vars.bat -------------------------------------------------------------------------------- /scripts/release-i18n.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/scripts/release-i18n.bat -------------------------------------------------------------------------------- /scripts/update-i18n.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/scripts/update-i18n.bat -------------------------------------------------------------------------------- /src/3rdparty/commit_fast_float.txt: -------------------------------------------------------------------------------- 1 | 50a80a7 2 | tag v8.0.2 3 | 4 | single-header version of the library 5 | -------------------------------------------------------------------------------- /src/3rdparty/commit_fmt.txt: -------------------------------------------------------------------------------- 1 | 18a325f370ffd5ec1eda0087d2efc3dc9b3faf56 2 | -------------------------------------------------------------------------------- /src/3rdparty/commit_gsl.txt: -------------------------------------------------------------------------------- 1 | ef0ffefe525a6219ff245d19a832ce06f3fd3504 2 | -------------------------------------------------------------------------------- /src/3rdparty/commit_kdbindings.txt: -------------------------------------------------------------------------------- 1 | 055b3fa320e98516555e68f36d8529e24ee9d60e 2 | Branch main -------------------------------------------------------------------------------- /src/3rdparty/commit_magic_enum.txt: -------------------------------------------------------------------------------- 1 | ec11ae0c285773e691a1e8372e4984189a6bed1e 2 | -------------------------------------------------------------------------------- /src/3rdparty/fast_float/fast_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fast_float/fast_float.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/args.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/base.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/chrono.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/color.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/compile.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/core.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/format-inl.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/format.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/os.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/ostream.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/printf.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/ranges.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/src/fmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/src/fmt.cc -------------------------------------------------------------------------------- /src/3rdparty/fmt/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/src/format.cc -------------------------------------------------------------------------------- /src/3rdparty/fmt/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/src/os.cc -------------------------------------------------------------------------------- /src/3rdparty/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/std.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/fmt/xchar.h -------------------------------------------------------------------------------- /src/3rdparty/gsl/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/algorithm -------------------------------------------------------------------------------- /src/3rdparty/gsl/assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/assert -------------------------------------------------------------------------------- /src/3rdparty/gsl/byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/byte -------------------------------------------------------------------------------- /src/3rdparty/gsl/gsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/gsl -------------------------------------------------------------------------------- /src/3rdparty/gsl/gsl_algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/gsl_algorithm -------------------------------------------------------------------------------- /src/3rdparty/gsl/gsl_assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/gsl_assert -------------------------------------------------------------------------------- /src/3rdparty/gsl/gsl_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/gsl_byte -------------------------------------------------------------------------------- /src/3rdparty/gsl/gsl_narrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/gsl_narrow -------------------------------------------------------------------------------- /src/3rdparty/gsl/gsl_util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/gsl_util -------------------------------------------------------------------------------- /src/3rdparty/gsl/narrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/narrow -------------------------------------------------------------------------------- /src/3rdparty/gsl/pointers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/pointers -------------------------------------------------------------------------------- /src/3rdparty/gsl/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/span -------------------------------------------------------------------------------- /src/3rdparty/gsl/span_ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/span_ext -------------------------------------------------------------------------------- /src/3rdparty/gsl/string_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/string_span -------------------------------------------------------------------------------- /src/3rdparty/gsl/util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/gsl/util -------------------------------------------------------------------------------- /src/3rdparty/kdbindings/genindex_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/kdbindings/genindex_array.h -------------------------------------------------------------------------------- /src/3rdparty/kdbindings/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/kdbindings/signal.h -------------------------------------------------------------------------------- /src/3rdparty/kdbindings/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/kdbindings/utils.h -------------------------------------------------------------------------------- /src/3rdparty/magic_enum/magic_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/3rdparty/magic_enum/magic_enum.hpp -------------------------------------------------------------------------------- /src/app/app_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/app_context.cpp -------------------------------------------------------------------------------- /src/app/app_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/app_context.h -------------------------------------------------------------------------------- /src/app/app_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/app_module.cpp -------------------------------------------------------------------------------- /src/app/app_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/app_module.h -------------------------------------------------------------------------------- /src/app/app_module_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/app_module_properties.cpp -------------------------------------------------------------------------------- /src/app/app_module_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/app_module_properties.h -------------------------------------------------------------------------------- /src/app/app_ui_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/app_ui_state.cpp -------------------------------------------------------------------------------- /src/app/app_ui_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/app_ui_state.h -------------------------------------------------------------------------------- /src/app/button_flat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/button_flat.cpp -------------------------------------------------------------------------------- /src/app/button_flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/button_flat.h -------------------------------------------------------------------------------- /src/app/command_system_information.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/command_system_information.cpp -------------------------------------------------------------------------------- /src/app/command_system_information_occopengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/command_system_information_occopengl.cpp -------------------------------------------------------------------------------- /src/app/command_system_information_occopengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/command_system_information_occopengl.h -------------------------------------------------------------------------------- /src/app/commands_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_api.cpp -------------------------------------------------------------------------------- /src/app/commands_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_api.h -------------------------------------------------------------------------------- /src/app/commands_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_display.cpp -------------------------------------------------------------------------------- /src/app/commands_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_display.h -------------------------------------------------------------------------------- /src/app/commands_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_file.cpp -------------------------------------------------------------------------------- /src/app/commands_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_file.h -------------------------------------------------------------------------------- /src/app/commands_help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_help.cpp -------------------------------------------------------------------------------- /src/app/commands_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_help.h -------------------------------------------------------------------------------- /src/app/commands_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_tools.cpp -------------------------------------------------------------------------------- /src/app/commands_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_tools.h -------------------------------------------------------------------------------- /src/app/commands_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_window.cpp -------------------------------------------------------------------------------- /src/app/commands_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/commands_window.h -------------------------------------------------------------------------------- /src/app/dialog_about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_about.cpp -------------------------------------------------------------------------------- /src/app/dialog_about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_about.h -------------------------------------------------------------------------------- /src/app/dialog_about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_about.ui -------------------------------------------------------------------------------- /src/app/dialog_inspect_xde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_inspect_xde.cpp -------------------------------------------------------------------------------- /src/app/dialog_inspect_xde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_inspect_xde.h -------------------------------------------------------------------------------- /src/app/dialog_inspect_xde.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_inspect_xde.ui -------------------------------------------------------------------------------- /src/app/dialog_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_options.cpp -------------------------------------------------------------------------------- /src/app/dialog_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_options.h -------------------------------------------------------------------------------- /src/app/dialog_options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_options.ui -------------------------------------------------------------------------------- /src/app/dialog_save_image_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_save_image_view.cpp -------------------------------------------------------------------------------- /src/app/dialog_save_image_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_save_image_view.h -------------------------------------------------------------------------------- /src/app/dialog_save_image_view.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_save_image_view.ui -------------------------------------------------------------------------------- /src/app/dialog_task_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_task_manager.cpp -------------------------------------------------------------------------------- /src/app/dialog_task_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_task_manager.h -------------------------------------------------------------------------------- /src/app/dialog_task_manager.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/dialog_task_manager.ui -------------------------------------------------------------------------------- /src/app/document_files_watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/document_files_watcher.cpp -------------------------------------------------------------------------------- /src/app/document_files_watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/document_files_watcher.h -------------------------------------------------------------------------------- /src/app/document_property_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/document_property_group.cpp -------------------------------------------------------------------------------- /src/app/document_property_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/document_property_group.h -------------------------------------------------------------------------------- /src/app/document_tree_node_properties_providers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/document_tree_node_properties_providers.cpp -------------------------------------------------------------------------------- /src/app/document_tree_node_properties_providers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/document_tree_node_properties_providers.h -------------------------------------------------------------------------------- /src/app/grid_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/grid_helper.cpp -------------------------------------------------------------------------------- /src/app/grid_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/grid_helper.h -------------------------------------------------------------------------------- /src/app/gui_document_list_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/gui_document_list_model.cpp -------------------------------------------------------------------------------- /src/app/gui_document_list_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/gui_document_list_model.h -------------------------------------------------------------------------------- /src/app/item_view_buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/item_view_buttons.cpp -------------------------------------------------------------------------------- /src/app/item_view_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/item_view_buttons.h -------------------------------------------------------------------------------- /src/app/iwidget_main_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/iwidget_main_page.h -------------------------------------------------------------------------------- /src/app/library_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/library_info.h -------------------------------------------------------------------------------- /src/app/list_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/list_helper.cpp -------------------------------------------------------------------------------- /src/app/list_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/list_helper.h -------------------------------------------------------------------------------- /src/app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/main.cpp -------------------------------------------------------------------------------- /src/app/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/mainwindow.cpp -------------------------------------------------------------------------------- /src/app/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/mainwindow.h -------------------------------------------------------------------------------- /src/app/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/mainwindow.ui -------------------------------------------------------------------------------- /src/app/occt_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/occt_window.cpp -------------------------------------------------------------------------------- /src/app/occt_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/occt_window.h -------------------------------------------------------------------------------- /src/app/property_editor_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/property_editor_factory.cpp -------------------------------------------------------------------------------- /src/app/property_editor_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/property_editor_factory.h -------------------------------------------------------------------------------- /src/app/property_item_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/property_item_delegate.cpp -------------------------------------------------------------------------------- /src/app/property_item_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/property_item_delegate.h -------------------------------------------------------------------------------- /src/app/proxy_styled_item_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/proxy_styled_item_delegate.cpp -------------------------------------------------------------------------------- /src/app/proxy_styled_item_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/proxy_styled_item_delegate.h -------------------------------------------------------------------------------- /src/app/qmeta_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/qmeta_property.h -------------------------------------------------------------------------------- /src/app/qmeta_tdf_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/qmeta_tdf_label.h -------------------------------------------------------------------------------- /src/app/qstring_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/qstring_utils.cpp -------------------------------------------------------------------------------- /src/app/qstring_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/qstring_utils.h -------------------------------------------------------------------------------- /src/app/qtgui_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/qtgui_utils.cpp -------------------------------------------------------------------------------- /src/app/qtgui_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/qtgui_utils.h -------------------------------------------------------------------------------- /src/app/qtwidgets_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/qtwidgets_utils.cpp -------------------------------------------------------------------------------- /src/app/qtwidgets_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/qtwidgets_utils.h -------------------------------------------------------------------------------- /src/app/recent_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/recent_files.cpp -------------------------------------------------------------------------------- /src/app/recent_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/recent_files.h -------------------------------------------------------------------------------- /src/app/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/theme.cpp -------------------------------------------------------------------------------- /src/app/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/theme.h -------------------------------------------------------------------------------- /src/app/view3d_navigation_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/view3d_navigation_style.h -------------------------------------------------------------------------------- /src/app/widget_clip_planes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_clip_planes.cpp -------------------------------------------------------------------------------- /src/app/widget_clip_planes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_clip_planes.h -------------------------------------------------------------------------------- /src/app/widget_clip_planes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_clip_planes.ui -------------------------------------------------------------------------------- /src/app/widget_explode_assembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_explode_assembly.cpp -------------------------------------------------------------------------------- /src/app/widget_explode_assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_explode_assembly.h -------------------------------------------------------------------------------- /src/app/widget_explode_assembly.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_explode_assembly.ui -------------------------------------------------------------------------------- /src/app/widget_file_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_file_system.cpp -------------------------------------------------------------------------------- /src/app/widget_file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_file_system.h -------------------------------------------------------------------------------- /src/app/widget_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_grid.cpp -------------------------------------------------------------------------------- /src/app/widget_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_grid.h -------------------------------------------------------------------------------- /src/app/widget_grid.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_grid.ui -------------------------------------------------------------------------------- /src/app/widget_gui_document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_gui_document.cpp -------------------------------------------------------------------------------- /src/app/widget_gui_document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_gui_document.h -------------------------------------------------------------------------------- /src/app/widget_home_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_home_files.cpp -------------------------------------------------------------------------------- /src/app/widget_home_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_home_files.h -------------------------------------------------------------------------------- /src/app/widget_main_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_main_control.cpp -------------------------------------------------------------------------------- /src/app/widget_main_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_main_control.h -------------------------------------------------------------------------------- /src/app/widget_main_control.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_main_control.ui -------------------------------------------------------------------------------- /src/app/widget_main_home.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_main_home.cpp -------------------------------------------------------------------------------- /src/app/widget_main_home.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_main_home.h -------------------------------------------------------------------------------- /src/app/widget_main_home.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_main_home.ui -------------------------------------------------------------------------------- /src/app/widget_measure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_measure.cpp -------------------------------------------------------------------------------- /src/app/widget_measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_measure.h -------------------------------------------------------------------------------- /src/app/widget_measure.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_measure.ui -------------------------------------------------------------------------------- /src/app/widget_message_indicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_message_indicator.cpp -------------------------------------------------------------------------------- /src/app/widget_message_indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_message_indicator.h -------------------------------------------------------------------------------- /src/app/widget_model_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_model_tree.cpp -------------------------------------------------------------------------------- /src/app/widget_model_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_model_tree.h -------------------------------------------------------------------------------- /src/app/widget_model_tree.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_model_tree.ui -------------------------------------------------------------------------------- /src/app/widget_model_tree_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_model_tree_builder.cpp -------------------------------------------------------------------------------- /src/app/widget_model_tree_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_model_tree_builder.h -------------------------------------------------------------------------------- /src/app/widget_model_tree_builder_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_model_tree_builder_mesh.cpp -------------------------------------------------------------------------------- /src/app/widget_model_tree_builder_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_model_tree_builder_mesh.h -------------------------------------------------------------------------------- /src/app/widget_model_tree_builder_xde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_model_tree_builder_xde.cpp -------------------------------------------------------------------------------- /src/app/widget_model_tree_builder_xde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_model_tree_builder_xde.h -------------------------------------------------------------------------------- /src/app/widget_occ_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_occ_view.cpp -------------------------------------------------------------------------------- /src/app/widget_occ_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_occ_view.h -------------------------------------------------------------------------------- /src/app/widget_occ_view_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_occ_view_controller.cpp -------------------------------------------------------------------------------- /src/app/widget_occ_view_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_occ_view_controller.h -------------------------------------------------------------------------------- /src/app/widget_occ_view_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_occ_view_impl.cpp -------------------------------------------------------------------------------- /src/app/widget_properties_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_properties_editor.cpp -------------------------------------------------------------------------------- /src/app/widget_properties_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_properties_editor.h -------------------------------------------------------------------------------- /src/app/widget_properties_editor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/widget_properties_editor.ui -------------------------------------------------------------------------------- /src/app/windows/win_taskbar_global_progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/windows/win_taskbar_global_progress.cpp -------------------------------------------------------------------------------- /src/app/windows/win_taskbar_global_progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/app/windows/win_taskbar_global_progress.h -------------------------------------------------------------------------------- /src/base/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/application.cpp -------------------------------------------------------------------------------- /src/base/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/application.h -------------------------------------------------------------------------------- /src/base/application_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/application_item.cpp -------------------------------------------------------------------------------- /src/base/application_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/application_item.h -------------------------------------------------------------------------------- /src/base/application_item_selection_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/application_item_selection_model.cpp -------------------------------------------------------------------------------- /src/base/application_item_selection_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/application_item_selection_model.h -------------------------------------------------------------------------------- /src/base/application_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/application_ptr.h -------------------------------------------------------------------------------- /src/base/bnd_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/bnd_utils.cpp -------------------------------------------------------------------------------- /src/base/bnd_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/bnd_utils.h -------------------------------------------------------------------------------- /src/base/brep_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/brep_utils.cpp -------------------------------------------------------------------------------- /src/base/brep_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/brep_utils.h -------------------------------------------------------------------------------- /src/base/caf_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/caf_utils.cpp -------------------------------------------------------------------------------- /src/base/caf_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/caf_utils.h -------------------------------------------------------------------------------- /src/base/cpp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/cpp_utils.h -------------------------------------------------------------------------------- /src/base/document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/document.cpp -------------------------------------------------------------------------------- /src/base/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/document.h -------------------------------------------------------------------------------- /src/base/document_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/document_ptr.h -------------------------------------------------------------------------------- /src/base/document_tree_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/document_tree_node.cpp -------------------------------------------------------------------------------- /src/base/document_tree_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/document_tree_node.h -------------------------------------------------------------------------------- /src/base/enumeration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/enumeration.cpp -------------------------------------------------------------------------------- /src/base/enumeration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/enumeration.h -------------------------------------------------------------------------------- /src/base/enumeration_fromenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/enumeration_fromenum.h -------------------------------------------------------------------------------- /src/base/filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/filepath.h -------------------------------------------------------------------------------- /src/base/filepath_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/filepath_conv.h -------------------------------------------------------------------------------- /src/base/geom_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/geom_utils.cpp -------------------------------------------------------------------------------- /src/base/geom_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/geom_utils.h -------------------------------------------------------------------------------- /src/base/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/global.h -------------------------------------------------------------------------------- /src/base/io_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/io_format.cpp -------------------------------------------------------------------------------- /src/base/io_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/io_format.h -------------------------------------------------------------------------------- /src/base/io_parameters_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/io_parameters_provider.h -------------------------------------------------------------------------------- /src/base/io_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/io_reader.cpp -------------------------------------------------------------------------------- /src/base/io_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/io_reader.h -------------------------------------------------------------------------------- /src/base/io_single_format_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/io_single_format_factory.h -------------------------------------------------------------------------------- /src/base/io_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/io_system.cpp -------------------------------------------------------------------------------- /src/base/io_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/io_system.h -------------------------------------------------------------------------------- /src/base/io_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/io_writer.cpp -------------------------------------------------------------------------------- /src/base/io_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/io_writer.h -------------------------------------------------------------------------------- /src/base/label_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/label_data.cpp -------------------------------------------------------------------------------- /src/base/label_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/label_data.h -------------------------------------------------------------------------------- /src/base/libtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/libtree.h -------------------------------------------------------------------------------- /src/base/math_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/math_utils.cpp -------------------------------------------------------------------------------- /src/base/math_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/math_utils.h -------------------------------------------------------------------------------- /src/base/mesh_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/mesh_access.cpp -------------------------------------------------------------------------------- /src/base/mesh_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/mesh_access.h -------------------------------------------------------------------------------- /src/base/mesh_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/mesh_utils.cpp -------------------------------------------------------------------------------- /src/base/mesh_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/mesh_utils.h -------------------------------------------------------------------------------- /src/base/messenger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/messenger.cpp -------------------------------------------------------------------------------- /src/base/messenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/messenger.h -------------------------------------------------------------------------------- /src/base/messenger_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/messenger_client.cpp -------------------------------------------------------------------------------- /src/base/messenger_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/messenger_client.h -------------------------------------------------------------------------------- /src/base/meta_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/meta_enum.h -------------------------------------------------------------------------------- /src/base/occ_brep_mesh_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/occ_brep_mesh_parameters.h -------------------------------------------------------------------------------- /src/base/occ_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/occ_handle.h -------------------------------------------------------------------------------- /src/base/occ_progress_indicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/occ_progress_indicator.cpp -------------------------------------------------------------------------------- /src/base/occ_progress_indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/occ_progress_indicator.h -------------------------------------------------------------------------------- /src/base/occ_static_variables_rollback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/occ_static_variables_rollback.cpp -------------------------------------------------------------------------------- /src/base/occ_static_variables_rollback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/occ_static_variables_rollback.h -------------------------------------------------------------------------------- /src/base/occt_enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/occt_enums.cpp -------------------------------------------------------------------------------- /src/base/occt_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/occt_enums.h -------------------------------------------------------------------------------- /src/base/point_cloud_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/point_cloud_data.cpp -------------------------------------------------------------------------------- /src/base/point_cloud_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/point_cloud_data.h -------------------------------------------------------------------------------- /src/base/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/property.cpp -------------------------------------------------------------------------------- /src/base/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/property.h -------------------------------------------------------------------------------- /src/base/property_builtins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/property_builtins.cpp -------------------------------------------------------------------------------- /src/base/property_builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/property_builtins.h -------------------------------------------------------------------------------- /src/base/property_enumeration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/property_enumeration.cpp -------------------------------------------------------------------------------- /src/base/property_enumeration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/property_enumeration.h -------------------------------------------------------------------------------- /src/base/property_value_conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/property_value_conversion.cpp -------------------------------------------------------------------------------- /src/base/property_value_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/property_value_conversion.h -------------------------------------------------------------------------------- /src/base/quantity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/quantity.cpp -------------------------------------------------------------------------------- /src/base/quantity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/quantity.h -------------------------------------------------------------------------------- /src/base/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/settings.cpp -------------------------------------------------------------------------------- /src/base/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/settings.h -------------------------------------------------------------------------------- /src/base/settings_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/settings_index.h -------------------------------------------------------------------------------- /src/base/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/signal.cpp -------------------------------------------------------------------------------- /src/base/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/signal.h -------------------------------------------------------------------------------- /src/base/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/span.h -------------------------------------------------------------------------------- /src/base/string_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/string_conv.cpp -------------------------------------------------------------------------------- /src/base/string_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/string_conv.h -------------------------------------------------------------------------------- /src/base/task_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/task_common.h -------------------------------------------------------------------------------- /src/base/task_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/task_manager.cpp -------------------------------------------------------------------------------- /src/base/task_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/task_manager.h -------------------------------------------------------------------------------- /src/base/task_progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/task_progress.cpp -------------------------------------------------------------------------------- /src/base/task_progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/task_progress.h -------------------------------------------------------------------------------- /src/base/text_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/text_id.cpp -------------------------------------------------------------------------------- /src/base/text_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/text_id.h -------------------------------------------------------------------------------- /src/base/tkernel_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/tkernel_utils.cpp -------------------------------------------------------------------------------- /src/base/tkernel_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/tkernel_utils.h -------------------------------------------------------------------------------- /src/base/triangulation_annex_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/triangulation_annex_data.cpp -------------------------------------------------------------------------------- /src/base/triangulation_annex_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/triangulation_annex_data.h -------------------------------------------------------------------------------- /src/base/typed_scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/typed_scalar.h -------------------------------------------------------------------------------- /src/base/unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/unit.cpp -------------------------------------------------------------------------------- /src/base/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/unit.h -------------------------------------------------------------------------------- /src/base/unit_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/unit_system.cpp -------------------------------------------------------------------------------- /src/base/unit_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/unit_system.h -------------------------------------------------------------------------------- /src/base/xcaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/xcaf.cpp -------------------------------------------------------------------------------- /src/base/xcaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/base/xcaf.h -------------------------------------------------------------------------------- /src/cli/cli_export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/cli/cli_export.cpp -------------------------------------------------------------------------------- /src/cli/cli_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/cli/cli_export.h -------------------------------------------------------------------------------- /src/cli/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/cli/console.cpp -------------------------------------------------------------------------------- /src/cli/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/cli/console.h -------------------------------------------------------------------------------- /src/cli/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/cli/main.cpp -------------------------------------------------------------------------------- /src/graphics/ais_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/ais_text.cpp -------------------------------------------------------------------------------- /src/graphics/ais_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/ais_text.h -------------------------------------------------------------------------------- /src/graphics/graphics_create_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_create_driver.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_create_virtual_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_create_virtual_window.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_mesh_data_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_mesh_data_source.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_mesh_data_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_mesh_data_source.h -------------------------------------------------------------------------------- /src/graphics/graphics_mesh_object_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_mesh_object_driver.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_mesh_object_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_mesh_object_driver.h -------------------------------------------------------------------------------- /src/graphics/graphics_object_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_object_driver.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_object_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_object_driver.h -------------------------------------------------------------------------------- /src/graphics/graphics_object_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_object_ptr.h -------------------------------------------------------------------------------- /src/graphics/graphics_owner_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_owner_ptr.h -------------------------------------------------------------------------------- /src/graphics/graphics_point_cloud_object_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_point_cloud_object_driver.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_point_cloud_object_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_point_cloud_object_driver.h -------------------------------------------------------------------------------- /src/graphics/graphics_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_scene.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_scene.h -------------------------------------------------------------------------------- /src/graphics/graphics_shape_object_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_shape_object_driver.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_shape_object_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_shape_object_driver.h -------------------------------------------------------------------------------- /src/graphics/graphics_texture2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_texture2d.h -------------------------------------------------------------------------------- /src/graphics/graphics_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_utils.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_utils.h -------------------------------------------------------------------------------- /src/graphics/graphics_view_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/graphics/graphics_view_ptr.h -------------------------------------------------------------------------------- /src/gui/gui_application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/gui/gui_application.cpp -------------------------------------------------------------------------------- /src/gui/gui_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/gui/gui_application.h -------------------------------------------------------------------------------- /src/gui/gui_document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/gui/gui_document.cpp -------------------------------------------------------------------------------- /src/gui/gui_document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/gui/gui_document.h -------------------------------------------------------------------------------- /src/gui/gui_vkey_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/gui/gui_vkey_mouse.h -------------------------------------------------------------------------------- /src/gui/v3d_view_camera_animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/gui/v3d_view_camera_animation.cpp -------------------------------------------------------------------------------- /src/gui/v3d_view_camera_animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/gui/v3d_view_camera_animation.h -------------------------------------------------------------------------------- /src/gui/v3d_view_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/gui/v3d_view_controller.cpp -------------------------------------------------------------------------------- /src/gui/v3d_view_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/gui/v3d_view_controller.h -------------------------------------------------------------------------------- /src/io_assimp/io_assimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_assimp/io_assimp.cpp -------------------------------------------------------------------------------- /src/io_assimp/io_assimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_assimp/io_assimp.h -------------------------------------------------------------------------------- /src/io_assimp/io_assimp_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_assimp/io_assimp_reader.cpp -------------------------------------------------------------------------------- /src/io_assimp/io_assimp_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_assimp/io_assimp_reader.h -------------------------------------------------------------------------------- /src/io_dxf/aci_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_dxf/aci_table.h -------------------------------------------------------------------------------- /src/io_dxf/dxf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_dxf/dxf.cpp -------------------------------------------------------------------------------- /src/io_dxf/dxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_dxf/dxf.h -------------------------------------------------------------------------------- /src/io_dxf/freecad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_dxf/freecad.h -------------------------------------------------------------------------------- /src/io_dxf/io_dxf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_dxf/io_dxf.cpp -------------------------------------------------------------------------------- /src/io_dxf/io_dxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_dxf/io_dxf.h -------------------------------------------------------------------------------- /src/io_gmio/io_gmio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_gmio/io_gmio.cpp -------------------------------------------------------------------------------- /src/io_gmio/io_gmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_gmio/io_gmio.h -------------------------------------------------------------------------------- /src/io_gmio/io_gmio_amf_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_gmio/io_gmio_amf_writer.cpp -------------------------------------------------------------------------------- /src/io_gmio/io_gmio_amf_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_gmio/io_gmio_amf_writer.h -------------------------------------------------------------------------------- /src/io_image/io_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_image/io_image.cpp -------------------------------------------------------------------------------- /src/io_image/io_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_image/io_image.h -------------------------------------------------------------------------------- /src/io_occ/io_occ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_base_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_base_mesh.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_base_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_base_mesh.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_brep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_brep.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_brep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_brep.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_caf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_caf.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_caf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_caf.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_common.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_common.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_gltf_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_gltf_reader.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_gltf_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_gltf_reader.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_gltf_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_gltf_writer.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_gltf_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_gltf_writer.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_iges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_iges.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_iges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_iges.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_obj_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_obj_reader.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_obj_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_obj_reader.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_obj_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_obj_writer.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_obj_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_obj_writer.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_step.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_step.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_step.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_stl.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_stl.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_vrml_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_vrml_reader.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_vrml_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_vrml_reader.h -------------------------------------------------------------------------------- /src/io_occ/io_occ_vrml_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_vrml_writer.cpp -------------------------------------------------------------------------------- /src/io_occ/io_occ_vrml_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_occ/io_occ_vrml_writer.h -------------------------------------------------------------------------------- /src/io_off/io_off_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_off/io_off_reader.cpp -------------------------------------------------------------------------------- /src/io_off/io_off_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_off/io_off_reader.h -------------------------------------------------------------------------------- /src/io_off/io_off_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_off/io_off_writer.cpp -------------------------------------------------------------------------------- /src/io_off/io_off_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_off/io_off_writer.h -------------------------------------------------------------------------------- /src/io_ply/commit_miniply.txt: -------------------------------------------------------------------------------- 1 | 1a235c70390fadf789695c9ccbf285ae712416b3 2 | -------------------------------------------------------------------------------- /src/io_ply/io_ply_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_ply/io_ply_reader.cpp -------------------------------------------------------------------------------- /src/io_ply/io_ply_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_ply/io_ply_reader.h -------------------------------------------------------------------------------- /src/io_ply/io_ply_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_ply/io_ply_writer.cpp -------------------------------------------------------------------------------- /src/io_ply/io_ply_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_ply/io_ply_writer.h -------------------------------------------------------------------------------- /src/io_ply/miniply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_ply/miniply.cpp -------------------------------------------------------------------------------- /src/io_ply/miniply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/io_ply/miniply.h -------------------------------------------------------------------------------- /src/mayo_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/mayo_config.h.cmake -------------------------------------------------------------------------------- /src/mayo_version.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/mayo_version.h.cmake -------------------------------------------------------------------------------- /src/measure/measure_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/measure/measure_display.cpp -------------------------------------------------------------------------------- /src/measure/measure_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/measure/measure_display.h -------------------------------------------------------------------------------- /src/measure/measure_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/measure/measure_tool.cpp -------------------------------------------------------------------------------- /src/measure/measure_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/measure/measure_tool.h -------------------------------------------------------------------------------- /src/measure/measure_tool_brep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/measure/measure_tool_brep.cpp -------------------------------------------------------------------------------- /src/measure/measure_tool_brep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/measure/measure_tool_brep.h -------------------------------------------------------------------------------- /src/measure/measure_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/measure/measure_type.h -------------------------------------------------------------------------------- /src/qtbackend/qsettings_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtbackend/qsettings_storage.cpp -------------------------------------------------------------------------------- /src/qtbackend/qsettings_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtbackend/qsettings_storage.h -------------------------------------------------------------------------------- /src/qtbackend/qt_animation_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtbackend/qt_animation_backend.cpp -------------------------------------------------------------------------------- /src/qtbackend/qt_animation_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtbackend/qt_animation_backend.h -------------------------------------------------------------------------------- /src/qtbackend/qt_app_translator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtbackend/qt_app_translator.cpp -------------------------------------------------------------------------------- /src/qtbackend/qt_app_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtbackend/qt_app_translator.h -------------------------------------------------------------------------------- /src/qtbackend/qt_signal_thread_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtbackend/qt_signal_thread_helper.cpp -------------------------------------------------------------------------------- /src/qtbackend/qt_signal_thread_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtbackend/qt_signal_thread_helper.h -------------------------------------------------------------------------------- /src/qtcommon/filepath_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtcommon/filepath_conv.h -------------------------------------------------------------------------------- /src/qtcommon/log_message_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtcommon/log_message_handler.cpp -------------------------------------------------------------------------------- /src/qtcommon/log_message_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtcommon/log_message_handler.h -------------------------------------------------------------------------------- /src/qtcommon/qstring_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtcommon/qstring_conv.cpp -------------------------------------------------------------------------------- /src/qtcommon/qstring_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtcommon/qstring_conv.h -------------------------------------------------------------------------------- /src/qtcommon/qtcore_hfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtcommon/qtcore_hfuncs.h -------------------------------------------------------------------------------- /src/qtcommon/qtcore_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtcommon/qtcore_utils.cpp -------------------------------------------------------------------------------- /src/qtcommon/qtcore_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/src/qtcommon/qtcore_utils.h -------------------------------------------------------------------------------- /tests/inputs/#258_cube.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/#258_cube.off -------------------------------------------------------------------------------- /tests/inputs/#332_file.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/#332_file.stp -------------------------------------------------------------------------------- /tests/inputs/cube.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.bin -------------------------------------------------------------------------------- /tests/inputs/cube.brep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.brep -------------------------------------------------------------------------------- /tests/inputs/cube.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.gltf -------------------------------------------------------------------------------- /tests/inputs/cube.iges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.iges -------------------------------------------------------------------------------- /tests/inputs/cube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.mtl -------------------------------------------------------------------------------- /tests/inputs/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.obj -------------------------------------------------------------------------------- /tests/inputs/cube.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.off -------------------------------------------------------------------------------- /tests/inputs/cube.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.ply -------------------------------------------------------------------------------- /tests/inputs/cube.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.step -------------------------------------------------------------------------------- /tests/inputs/cube.stla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.stla -------------------------------------------------------------------------------- /tests/inputs/cube.stlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.stlb -------------------------------------------------------------------------------- /tests/inputs/cube.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/cube.wrl -------------------------------------------------------------------------------- /tests/inputs/face_trsf_scale_almost_1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/face_trsf_scale_almost_1.stl -------------------------------------------------------------------------------- /tests/inputs/mayo_bezier_curve.brep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/inputs/mayo_bezier_curve.brep -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/qttest_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/qttest_utils.h -------------------------------------------------------------------------------- /tests/test_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/test_app.cpp -------------------------------------------------------------------------------- /tests/test_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/test_app.h -------------------------------------------------------------------------------- /tests/test_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/test_base.cpp -------------------------------------------------------------------------------- /tests/test_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/test_base.h -------------------------------------------------------------------------------- /tests/test_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/test_io.cpp -------------------------------------------------------------------------------- /tests/test_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/test_io.h -------------------------------------------------------------------------------- /tests/test_measure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/test_measure.cpp -------------------------------------------------------------------------------- /tests/test_measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fougue/mayo/HEAD/tests/test_measure.h --------------------------------------------------------------------------------