├── CMakeLists.txt ├── COPYING ├── CTestTestfileInstall.cmake.in ├── README ├── SMESH_version.h.in ├── SalomeSMESHConfig.cmake.in ├── adm_local ├── CMakeLists.txt └── unix │ ├── CMakeLists.txt │ └── config_files │ ├── CMakeLists.txt │ ├── check_Platform.m4 │ ├── check_SMESH.m4 │ ├── check_cgal.m4 │ ├── check_cgns.m4 │ ├── check_f77.m4 │ ├── check_padder.m4 │ └── check_qwt.m4 ├── bin ├── CMakeLists.txt ├── VERSION.in ├── smesh_setenv.py ├── smesh_test.py └── smesh_wget.py ├── doc ├── CMakeLists.txt ├── examples │ ├── 0README │ ├── CMakeLists.txt │ ├── CTestTestfileInstall.cmake │ ├── a3DmeshOnModified2Dmesh.py │ ├── cartesian_algo.py │ ├── create_dual_mesh.py │ ├── creating_meshes_ex01.py │ ├── creating_meshes_ex02.py │ ├── creating_meshes_ex03.py │ ├── creating_meshes_ex04.py │ ├── creating_meshes_ex05.py │ ├── creating_meshes_ex06.py │ ├── creating_meshes_ex07.py │ ├── creating_meshes_ex08.py │ ├── creating_parallel_2D_mesh.py │ ├── creating_parallel_gmsh_mesh.py │ ├── creating_parallel_mesh.py │ ├── data │ │ ├── test_01.med │ │ ├── test_02.med │ │ ├── test_02_bg.med │ │ ├── test_04.med │ │ ├── test_06.med │ │ ├── test_07.med │ │ ├── test_08.med │ │ ├── test_08_bg.med │ │ ├── test_10.med │ │ ├── test_11.med │ │ ├── test_13.med │ │ ├── test_homard_adapt.med │ │ ├── tutorial_4.00.med │ │ ├── tutorial_4.xao │ │ ├── tutorial_5.00.med │ │ └── tutorial_5.fr.med │ ├── defining_hypotheses_adaptive1d.py │ ├── defining_hypotheses_ex01.py │ ├── defining_hypotheses_ex02.py │ ├── defining_hypotheses_ex03.py │ ├── defining_hypotheses_ex04.py │ ├── defining_hypotheses_ex05.py │ ├── defining_hypotheses_ex06.py │ ├── defining_hypotheses_ex07.py │ ├── defining_hypotheses_ex08.py │ ├── defining_hypotheses_ex09.py │ ├── defining_hypotheses_ex10.py │ ├── defining_hypotheses_ex11.py │ ├── defining_hypotheses_ex12.py │ ├── defining_hypotheses_ex13.py │ ├── defining_hypotheses_ex14.py │ ├── defining_hypotheses_ex15.py │ ├── defining_hypotheses_ex16.py │ ├── defining_hypotheses_ex17.py │ ├── defining_hypotheses_len_near_vertex.py │ ├── defining_hypotheses_vlapi_ex17.py │ ├── filters_belong2group.py │ ├── filters_ex01.py │ ├── filters_ex02.py │ ├── filters_ex03.py │ ├── filters_ex04.py │ ├── filters_ex05.py │ ├── filters_ex06.py │ ├── filters_ex07.py │ ├── filters_ex08.py │ ├── filters_ex09.py │ ├── filters_ex10.py │ ├── filters_ex11.py │ ├── filters_ex12.py │ ├── filters_ex13.py │ ├── filters_ex14.py │ ├── filters_ex15.py │ ├── filters_ex16.py │ ├── filters_ex17.py │ ├── filters_ex18.py │ ├── filters_ex19.py │ ├── filters_ex20.py │ ├── filters_ex21.py │ ├── filters_ex22.py │ ├── filters_ex23.py │ ├── filters_ex24.py │ ├── filters_ex25.py │ ├── filters_ex26.py │ ├── filters_ex27.py │ ├── filters_ex28.py │ ├── filters_ex29.py │ ├── filters_ex30.py │ ├── filters_ex31.py │ ├── filters_ex32.py │ ├── filters_ex33.py │ ├── filters_ex34.py │ ├── filters_ex35.py │ ├── filters_ex36.py │ ├── filters_ex37.py │ ├── filters_ex38.py │ ├── filters_ex39.py │ ├── filters_ex40.py │ ├── filters_ex41.py │ ├── filters_node_nb_conn.py │ ├── generate_flat_elements.py │ ├── grouping_elements_ex01.py │ ├── grouping_elements_ex02.py │ ├── grouping_elements_ex03.py │ ├── grouping_elements_ex04.py │ ├── grouping_elements_ex05.py │ ├── grouping_elements_ex06.py │ ├── grouping_elements_ex07.py │ ├── grouping_elements_ex08.py │ ├── grouping_elements_ex09.py │ ├── measurements_ex01.py │ ├── measurements_ex02.py │ ├── measurements_ex03.py │ ├── measurements_ex04.py │ ├── mechanic.py │ ├── mesh_3d.py │ ├── modifying_meshes_cut_triangles.py │ ├── modifying_meshes_ex01.py │ ├── modifying_meshes_ex02.py │ ├── modifying_meshes_ex03.py │ ├── modifying_meshes_ex04.py │ ├── modifying_meshes_ex05.py │ ├── modifying_meshes_ex06.py │ ├── modifying_meshes_ex07.py │ ├── modifying_meshes_ex08.py │ ├── modifying_meshes_ex09.py │ ├── modifying_meshes_ex10.py │ ├── modifying_meshes_ex11.py │ ├── modifying_meshes_ex12.py │ ├── modifying_meshes_ex13.py │ ├── modifying_meshes_ex15.py │ ├── modifying_meshes_ex16.py │ ├── modifying_meshes_ex17.py │ ├── modifying_meshes_ex18.py │ ├── modifying_meshes_ex19.py │ ├── modifying_meshes_ex20.py │ ├── modifying_meshes_ex21.py │ ├── modifying_meshes_ex22.py │ ├── modifying_meshes_ex23.py │ ├── modifying_meshes_ex24.py │ ├── modifying_meshes_ex25.py │ ├── modifying_meshes_ex26.py │ ├── modifying_meshes_split_vol.py │ ├── notebook_smesh.py │ ├── prism_3d_algo.py │ ├── quad_medial_axis_algo.py │ ├── quality_controls_defl.py │ ├── quality_controls_ex01.py │ ├── quality_controls_ex02.py │ ├── quality_controls_ex03.py │ ├── quality_controls_ex04.py │ ├── quality_controls_ex05.py │ ├── quality_controls_ex06.py │ ├── quality_controls_ex07.py │ ├── quality_controls_ex08.py │ ├── quality_controls_ex09.py │ ├── quality_controls_ex10.py │ ├── quality_controls_ex11.py │ ├── quality_controls_ex12.py │ ├── quality_controls_ex13.py │ ├── quality_controls_ex14.py │ ├── quality_controls_ex15.py │ ├── quality_controls_ex16.py │ ├── quality_controls_ex17.py │ ├── quality_controls_ex18.py │ ├── quality_controls_ex19.py │ ├── quality_controls_ex20.py │ ├── quality_controls_ex21.py │ ├── quality_controls_ex22.py │ ├── quality_controls_ex23.py │ ├── quality_controls_ex24.py │ ├── radial_prism_3d_algo.py │ ├── split_biquad.py │ ├── test_homard_adapt.py │ ├── test_uniform_refinement.py │ ├── tests.set │ ├── transforming_meshes_ex01.py │ ├── transforming_meshes_ex02.py │ ├── transforming_meshes_ex03.py │ ├── transforming_meshes_ex04.py │ ├── transforming_meshes_ex05.py │ ├── transforming_meshes_ex06.py │ ├── transforming_meshes_ex07.py │ ├── transforming_meshes_ex08.py │ ├── transforming_meshes_ex09.py │ ├── transforming_meshes_ex10.py │ ├── transforming_meshes_ex11.py │ ├── transforming_meshes_ex12.py │ ├── transforming_meshes_ex13.py │ ├── transforming_meshes_ex14.py │ ├── transforming_meshes_ex15.py │ ├── use_existing_faces.py │ ├── viewing_meshes_ex01.py │ ├── viewing_meshes_ex02.py │ └── viewing_meshes_ex03.py ├── gui │ ├── CMakeLists.txt │ ├── collect_mesh_methods.py │ ├── conf.py.in │ ├── images │ │ ├── 2d_from_3d_dlg.png │ │ ├── 2d_from_3d_example.png │ │ ├── 2d_from_3d_ico.png │ │ ├── 2d_from_3d_menu.png │ │ ├── 2d_mesh_from_3d_elements.jpg │ │ ├── 2d_mesh_from_3d_elements_dlg.png │ │ ├── 2d_mesh_from_3d_elements_icon.png │ │ ├── Clipping_Absolute.png │ │ ├── Clipping_Relative.png │ │ ├── Nut_sharp_edges.png │ │ ├── a-arithmetic1d.png │ │ ├── a-averagelength.png │ │ ├── a-clipping2.png │ │ ├── a-creategroup.png │ │ ├── a-createpolyhedralvolume.png │ │ ├── a-cuttingofquadrangles.png │ │ ├── a-deflection1d.png │ │ ├── a-filteronfaces.png │ │ ├── a-geometric1d.png │ │ ├── a-maxelarea.png │ │ ├── a-maxelvolume.png │ │ ├── a-maxsize1d.png │ │ ├── a-nbsegments1.png │ │ ├── a-nbsegments2.png │ │ ├── a-patterntype.png │ │ ├── a-patterntype1.png │ │ ├── a-standmeshinfo.png │ │ ├── a-startendlength.png │ │ ├── a-transparency.png │ │ ├── a-unionoftriangles.png │ │ ├── a-viewgeneral.png │ │ ├── adaptation_01.png │ │ ├── adaptation_02.png │ │ ├── adaptation_with_homard_advanced.png │ │ ├── adaptation_with_homard_arguments.png │ │ ├── adaptation_with_homard_boundary_analytical.png │ │ ├── adaptation_with_homard_boundary_cao.png │ │ ├── adaptation_with_homard_boundary_discrete.png │ │ ├── adaptation_with_homard_boundary_groups.png │ │ ├── adaptive1d.png │ │ ├── adaptive1d_sample_mesh.png │ │ ├── add.gif │ │ ├── add.png │ │ ├── add0delement.png │ │ ├── add_0delement.png │ │ ├── add_ball.png │ │ ├── add_edge.png │ │ ├── add_node.png │ │ ├── add_node_on_face-dlg.png │ │ ├── add_node_on_face.png │ │ ├── add_node_on_segment-dlg.png │ │ ├── add_node_on_segment.png │ │ ├── add_polygone.png │ │ ├── add_polyhedron.png │ │ ├── add_quadrangle.png │ │ ├── add_triangle.png │ │ ├── addball.png │ │ ├── addedge.png │ │ ├── addhexahedron.png │ │ ├── addinfo_group.png │ │ ├── addinfo_mesh.png │ │ ├── addinfo_submesh.png │ │ ├── addnode.png │ │ ├── addnode_notebook.png │ │ ├── addpolygon.png │ │ ├── addquadrangle.png │ │ ├── addtetrahedron.png │ │ ├── addtriangle.png │ │ ├── advanced_mesh_infos.png │ │ ├── analyticdensity.png │ │ ├── angle_measure.png │ │ ├── aqt.png │ │ ├── automaticlength.png │ │ ├── b-art_end_length.png │ │ ├── b-erage_length.png │ │ ├── b-flection1d.png │ │ ├── b-ithmetic1d.png │ │ ├── b-mberofsegments.png │ │ ├── b-mesh_infos.png │ │ ├── bare_border_faces_smpl.png │ │ ├── bare_border_volumes_smpl.png │ │ ├── basic_props.png │ │ ├── before_clipping.png │ │ ├── before_clipping_preview.png │ │ ├── block_renumber_hyp.png │ │ ├── bnd_box.png │ │ ├── bnd_box_preview.png │ │ ├── buildcompound.png │ │ ├── buildcompound_groups.png │ │ ├── cartesian3D_hyp.png │ │ ├── cartesian3D_sphere.png │ │ ├── cartesian_implement_edge.png │ │ ├── choose_geom_selection_way.png │ │ ├── circle_angles_after.png │ │ ├── circle_simple_after.png │ │ ├── circle_simple_before.png │ │ ├── colors_size.png │ │ ├── connectivity_edge.png │ │ ├── connectivity_hex_prism.png │ │ ├── connectivity_hexa.png │ │ ├── connectivity_penta.png │ │ ├── connectivity_polygon.png │ │ ├── connectivity_polyhedron.png │ │ ├── connectivity_pyramid.png │ │ ├── connectivity_quad.png │ │ ├── connectivity_tetra.png │ │ ├── connectivity_tria.png │ │ ├── controls_popup.png │ │ ├── convert.png │ │ ├── copy_mesh_dlg.png │ │ ├── copy_mesh_icon.png │ │ ├── crack_emulation_double_nodes.png │ │ ├── crack_emulation_double_nodes_with_elems.png │ │ ├── create_boundary_1.png │ │ ├── create_boundary_an_1.png │ │ ├── create_boundary_an_2.png │ │ ├── create_boundary_an_3.png │ │ ├── create_boundary_an_4.png │ │ ├── create_boundary_an_co_1.png │ │ ├── create_boundary_an_co_2.png │ │ ├── create_boundary_an_cy.png │ │ ├── create_boundary_an_sp.png │ │ ├── create_boundary_an_to.png │ │ ├── create_boundary_cao_1.png │ │ ├── create_boundary_cao_2.png │ │ ├── create_boundary_di_1.png │ │ ├── create_boundary_di_2.png │ │ ├── create_boundary_di_3.png │ │ ├── create_dual_mesh_dlg.png │ │ ├── create_dual_mesh_icon.png │ │ ├── create_group.png │ │ ├── create_groups_from_geometry.png │ │ ├── creategroup.png │ │ ├── creategroup_on_filter.png │ │ ├── createmesh-inv.png │ │ ├── createmesh-inv2.png │ │ ├── createmesh-inv3.png │ │ ├── ctrlinfo.png │ │ ├── curvi_angles_after.png │ │ ├── curvi_simple_after.png │ │ ├── curvi_simple_before.png │ │ ├── custom_point_marker.png │ │ ├── cut_groups1.png │ │ ├── cutgroups.png │ │ ├── dataset_clipping.png │ │ ├── deflection_2d.png │ │ ├── deletegroups.png │ │ ├── diagonalinversion.png │ │ ├── diagram_parallel_mesh.png │ │ ├── dialog.png │ │ ├── dimgroup_0d.png │ │ ├── dimgroup_1d.png │ │ ├── dimgroup_2d.png │ │ ├── dimgroup_dlg.png │ │ ├── dimgroup_src.png │ │ ├── dimgroup_tui1.png │ │ ├── display_entity_choose_item.png │ │ ├── display_entity_dlg.png │ │ ├── distribution_of_layers.png │ │ ├── distributionwithanalyticdensity.png │ │ ├── distributionwithtabledensity.png │ │ ├── dlg_0D_on_all_nodes.png │ │ ├── double_faces.png │ │ ├── double_nodes.png │ │ ├── duplicate01.png │ │ ├── duplicate02.png │ │ ├── duplicate03.png │ │ ├── duplicate04.png │ │ ├── duplicate_nodes.png │ │ ├── edge_wire_3d_after.png │ │ ├── edge_wire_3d_before.png │ │ ├── edge_wire_after.png │ │ ├── edge_wire_before.png │ │ ├── edit_mesh1.png │ │ ├── edit_mesh_change_value_hyp.png │ │ ├── edit_mesh_remove_hyp.png │ │ ├── editgroup.png │ │ ├── editgroup_on_filter.png │ │ ├── editgroup_on_geom.png │ │ ├── editing_groups1.png │ │ ├── elem_info.png │ │ ├── eleminfo1.png │ │ ├── eleminfo2.png │ │ ├── extr_along_wire_after.png │ │ ├── extr_along_wire_before.png │ │ ├── extru_rib_segs.png │ │ ├── extrusion_along_path_dlg.png │ │ ├── extrusion_box.png │ │ ├── extrusion_groups.png │ │ ├── extrusion_groups_res.png │ │ ├── extrusionalongaline1.png │ │ ├── extrusionalongaline2.png │ │ ├── extrusionalongaline3.png │ │ ├── extrusionbynormal_alongavgnorm.png │ │ ├── extrusionbynormal_useonly.png │ │ ├── failed_computation.png │ │ ├── find_geom_by_mesh_elem.png │ │ ├── findelement1.png │ │ ├── findelement2.png │ │ ├── findelement3.png │ │ ├── formula1.png │ │ ├── formula2.png │ │ ├── formula4.png │ │ ├── formula5.png │ │ ├── free_borders1.png │ │ ├── free_edges.png │ │ ├── free_faces.png │ │ ├── free_nodes.png │ │ ├── ghs3dprl_parameters_basic.png │ │ ├── groups_by_sharp_edges_dlg.png │ │ ├── groups_in_OB.png │ │ ├── hexa_ijk_mesh.png │ │ ├── hyp_source_edges.png │ │ ├── hyp_source_faces.png │ │ ├── hypo_fixedpnt_dlg.png │ │ ├── hypo_quad_params_1.png │ │ ├── hypo_quad_params_2.png │ │ ├── hypo_quad_params_dialog.png │ │ ├── hypo_quad_params_dialog_corners.png │ │ ├── hypo_quad_params_dialog_enf.png │ │ ├── hypo_quad_params_dialog_vert.png │ │ ├── hypo_quad_params_enfnodes_algo1.png │ │ ├── hypo_quad_params_enfnodes_algo2.png │ │ ├── hypo_quad_params_enfnodes_algo3.png │ │ ├── hypo_quad_params_res.png │ │ ├── hypo_quad_params_res_2.png │ │ ├── hypo_radquad_dlg.png │ │ ├── hypo_sets.png │ │ ├── image10.jpg │ │ ├── image101.png │ │ ├── image105.gif │ │ ├── image106.gif │ │ ├── image120.png │ │ ├── image121.png │ │ ├── image122.png │ │ ├── image123.gif │ │ ├── image124.gif │ │ ├── image125.gif │ │ ├── image126.gif │ │ ├── image127.gif │ │ ├── image130.gif │ │ ├── image131.gif │ │ ├── image132.gif │ │ ├── image133.gif │ │ ├── image134.gif │ │ ├── image135.gif │ │ ├── image136.gif │ │ ├── image137.gif │ │ ├── image138.gif │ │ ├── image143.gif │ │ ├── image144.png │ │ ├── image145.png │ │ ├── image146.png │ │ ├── image147.gif │ │ ├── image148.gif │ │ ├── image15.jpg │ │ ├── image151.gif │ │ ├── image152.png │ │ ├── image154.png │ │ ├── image155.gif │ │ ├── image156.gif │ │ ├── image157.gif │ │ ├── image160.gif │ │ ├── image161.png │ │ ├── image22.jpg │ │ ├── image23.jpg │ │ ├── image24.gif │ │ ├── image25.jpg │ │ ├── image25.png │ │ ├── image27.jpg │ │ ├── image28.png │ │ ├── image30.jpg │ │ ├── image31.jpg │ │ ├── image32.jpg │ │ ├── image32.png │ │ ├── image33.gif │ │ ├── image34.png │ │ ├── image35.png │ │ ├── image36.jpg │ │ ├── image36.png │ │ ├── image37.jpg │ │ ├── image37.png │ │ ├── image38.jpg │ │ ├── image38.png │ │ ├── image39.png │ │ ├── image40.png │ │ ├── image41.gif │ │ ├── image42.png │ │ ├── image43.png │ │ ├── image46.gif │ │ ├── image49.png │ │ ├── image5.jpg │ │ ├── image50.gif │ │ ├── image51.jpg │ │ ├── image52.jpg │ │ ├── image53.gif │ │ ├── image55.gif │ │ ├── image56.gif │ │ ├── image56.jpg │ │ ├── image58.png │ │ ├── image59.png │ │ ├── image63.png │ │ ├── image64.png │ │ ├── image67.png │ │ ├── image7.jpg │ │ ├── image70.jpg │ │ ├── image70.png │ │ ├── image71.jpg │ │ ├── image71.png │ │ ├── image74.gif │ │ ├── image75.jpg │ │ ├── image76.jpg │ │ ├── image77.jpg │ │ ├── image78.jpg │ │ ├── image79.jpg │ │ ├── image79.png │ │ ├── image80.png │ │ ├── image81.png │ │ ├── image82.png │ │ ├── image83.gif │ │ ├── image84.png │ │ ├── image86.jpg │ │ ├── image88.jpg │ │ ├── image89.jpg │ │ ├── image90.jpg │ │ ├── image91.png │ │ ├── image92.jpg │ │ ├── image92.png │ │ ├── image93.jpg │ │ ├── image94.gif │ │ ├── image94.jpg │ │ ├── image95.gif │ │ ├── image95.jpg │ │ ├── image96.gif │ │ ├── image96.jpg │ │ ├── image97.gif │ │ ├── image97.jpg │ │ ├── image98.png │ │ ├── image99.gif │ │ ├── image_octa12.png │ │ ├── image_warping3D.jpg │ │ ├── intersect_groups1.png │ │ ├── intersectgroups.png │ │ ├── length-crit.png │ │ ├── length2d.png │ │ ├── lengthnearvertex.png │ │ ├── max_el_area.png │ │ ├── max_element_length_2d.png │ │ ├── max_element_length_3d.png │ │ ├── mergeelems.png │ │ ├── mergeelems_auto.png │ │ ├── mergeelems_ico.png │ │ ├── mergenodes.png │ │ ├── mergenodes_auto.png │ │ ├── mergenodes_ico.png │ │ ├── merging_nodes1.png │ │ ├── merging_nodes2.png │ │ ├── mesh_clear.png │ │ ├── mesh_cylinder_hexa.png │ │ ├── mesh_deflection.png │ │ ├── mesh_evaluation_succeed.png │ │ ├── mesh_fixedpnt.png │ │ ├── mesh_for_extr_along_path.png │ │ ├── mesh_node_to_point.png │ │ ├── mesh_order_123.png │ │ ├── mesh_order_123_res.png │ │ ├── mesh_order_213.png │ │ ├── mesh_order_213_res.png │ │ ├── mesh_order_321.png │ │ ├── mesh_order_321_res.png │ │ ├── mesh_order_no_concurrent.png │ │ ├── mesh_order_preview.png │ │ ├── mesh_precompute.png │ │ ├── mesh_radquad_01.png │ │ ├── mesh_radquad_02.png │ │ ├── mesh_split_diag_interactive.png │ │ ├── mesh_split_face_interactive.png │ │ ├── meshcomputationfail.png │ │ ├── meshcomputationsucceed.png │ │ ├── meshcut_plugin.png │ │ ├── meshexportgroupwarning.png │ │ ├── meshexportmesh.png │ │ ├── meshimportmesh.png │ │ ├── meshtopass1.png │ │ ├── meshtopass2.png │ │ ├── meshtopass3.png │ │ ├── meshtrianglemergeelem1.png │ │ ├── min_distance.png │ │ ├── min_distance_preview.png │ │ ├── movenodes.png │ │ ├── moving_nodes1.png │ │ ├── moving_nodes2.png │ │ ├── nbsegment_beta_law_formula.png │ │ ├── nbsegments_beta_law_dlg.png │ │ ├── nbsegments_beta_law_example.png │ │ ├── number_of_layers.png │ │ ├── offset_filter_for_faces_gui.png │ │ ├── offset_mesh.png │ │ ├── offset_mesh_from_filter.png │ │ ├── opengl_clipping.png │ │ ├── orientaation1.png │ │ ├── over_constrained_faces.png │ │ ├── over_constrained_volumes.png │ │ ├── pattern2d.png │ │ ├── patternmapping1.png │ │ ├── patternmapping2.png │ │ ├── point_marker_widget1.png │ │ ├── point_marker_widget2.png │ │ ├── pref21.png │ │ ├── pref22.png │ │ ├── pref23.png │ │ ├── pref24.png │ │ ├── preview_mesh_1D.png │ │ ├── preview_mesh_2D.png │ │ ├── preview_tmp_data.png │ │ ├── prism_mesh.png │ │ ├── prism_needs_hyps.png │ │ ├── prism_ok_ko.png │ │ ├── prism_stack.png │ │ ├── prism_tui_sample.png │ │ ├── projection_1d.png │ │ ├── projection_2d.png │ │ ├── projection_3d.png │ │ ├── propagation_chain.png │ │ ├── quad_from_ma_medial_axis.png │ │ ├── quad_from_ma_mesh.png │ │ ├── quad_from_ma_ring_mesh.png │ │ ├── quad_mesh_invalid.png │ │ ├── quad_meshes.png │ │ ├── radial_prism_mesh.png │ │ ├── reduce_three_to_one.png │ │ ├── reload_mesh_modif_mesh.png │ │ ├── reload_mesh_modif_mesh_props.png │ │ ├── reload_mesh_orig_mesh.png │ │ ├── reload_mesh_result.png │ │ ├── remove.gif │ │ ├── remove.png │ │ ├── remove_elements1.png │ │ ├── remove_elements2.png │ │ ├── remove_elements_icon.png │ │ ├── remove_node_reconnection.png │ │ ├── remove_node_reconnection_dlg.png │ │ ├── remove_node_reconnection_icon.png │ │ ├── remove_nodes1.png │ │ ├── remove_nodes2.png │ │ ├── remove_nodes_icon.png │ │ ├── remove_orphan_nodes_icon.png │ │ ├── removeelements.png │ │ ├── removenodes.png │ │ ├── removeorphannodes.png │ │ ├── renumberelements.png │ │ ├── renumbernodes.png │ │ ├── reorient_2d_face.png │ │ ├── reorient_2d_point.png │ │ ├── reorient_2d_refgroup.png │ │ ├── reorient_2d_volume.png │ │ ├── reorient_faces_face.png │ │ ├── reorient_faces_point.png │ │ ├── reorient_faces_ref_groups.png │ │ ├── reorient_faces_volume.png │ │ ├── rev_edges_helper_dlg.png │ │ ├── revolution1.png │ │ ├── revolutionsn1.png │ │ ├── revolutionsn2.png │ │ ├── rotation.png │ │ ├── rotation1.png │ │ ├── rotation2.png │ │ ├── rotation_ico.png │ │ ├── scalar_bar_dlg.png │ │ ├── scale01.png │ │ ├── scale02.png │ │ ├── scale03.png │ │ ├── scale04.png │ │ ├── scale06.png │ │ ├── scale07.png │ │ ├── scale09.png │ │ ├── scaled_jacobian.png │ │ ├── scaled_jacobian_hexa.png │ │ ├── scaled_jacobian_mesh_hexa.png │ │ ├── scaled_jacobian_tetra.png │ │ ├── scaleinit01.png │ │ ├── scaleinit02.png │ │ ├── scaleres03.png │ │ ├── scaleres04.png │ │ ├── scaleres06.png │ │ ├── scaleres07.png │ │ ├── scaleres09.png │ │ ├── selectionfilterlibrary.png │ │ ├── sew_after_merge.png │ │ ├── sew_using_merge.png │ │ ├── sewing.png │ │ ├── sewing1.png │ │ ├── sewing2.png │ │ ├── sewing3.png │ │ ├── sewing4.png │ │ ├── sewing_auto.png │ │ ├── sewing_manual.png │ │ ├── show_bad_mesh.png │ │ ├── smesh_sort.png │ │ ├── smesh_sort_groups.png │ │ ├── smoothing.png │ │ ├── smoothing1.png │ │ ├── smoothing2.png │ │ ├── sort.gif │ │ ├── sort.png │ │ ├── split_biquad_to_linear_dlg.png │ │ ├── split_biquad_to_linear_icon.png │ │ ├── split_biquad_to_linear_mesh.png │ │ ├── split_into_prisms.png │ │ ├── split_into_tetra.png │ │ ├── split_into_tetra_icon.png │ │ ├── std_point_marker.png │ │ ├── straight_after.png │ │ ├── straight_before.png │ │ ├── swap.png │ │ ├── symmetry.png │ │ ├── symmetry1.png │ │ ├── symmetry2.png │ │ ├── symmetry3.png │ │ ├── topo_equality.png │ │ ├── translation.png │ │ ├── translation1.png │ │ ├── translation2.png │ │ ├── union_groups1.png │ │ ├── uniongroups.png │ │ ├── unionoftwotriangles.png │ │ ├── uniting_a_set_of_triangles1.png │ │ ├── uniting_a_set_of_triangles2.png │ │ ├── uniting_two_triangles1.png │ │ ├── uniting_two_triangles2.png │ │ ├── use_existing_face_sample_mesh.png │ │ ├── using_notebook_smesh.png │ │ ├── viscous_layers_2d_hyp.png │ │ ├── viscous_layers_extrusion_method.png │ │ ├── viscous_layers_hyp.png │ │ ├── viscous_layers_mesh.png │ │ └── viscous_layers_on_submesh.png │ ├── input │ │ ├── 1d_meshing_hypo.rst │ │ ├── 2d_meshing_hypo.rst │ │ ├── 3d_meshing_hypo.rst │ │ ├── StdMeshersBuilder.rst │ │ ├── about_filters.rst │ │ ├── about_hypo.rst │ │ ├── about_meshes.rst │ │ ├── about_quality_controls.rst │ │ ├── adaptation.rst │ │ ├── add_node_on_face.rst │ │ ├── add_node_on_segment.rst │ │ ├── adding_nodes_and_elements.rst │ │ ├── adding_quadratic_elements.rst │ │ ├── additional_hypo.rst │ │ ├── area.rst │ │ ├── aspect_ratio.rst │ │ ├── aspect_ratio_3d.rst │ │ ├── bare_border_face.rst │ │ ├── bare_border_volumes.rst │ │ ├── basic_meshing_algos.rst │ │ ├── borders_at_multi_connection.rst │ │ ├── borders_at_multi_connection_2d.rst │ │ ├── building_compounds.rst │ │ ├── cartesian_algo.rst │ │ ├── changing_orientation_of_elements.rst │ │ ├── clipping.rst │ │ ├── colors_size.rst │ │ ├── connectivity.rst │ │ ├── constructing_meshes.rst │ │ ├── constructing_submeshes.rst │ │ ├── convert_to_from_quadratic_mesh.rst │ │ ├── copy_mesh.rst │ │ ├── create_dual_mesh.rst │ │ ├── create_groups_from_geometry.rst │ │ ├── creating_groups.rst │ │ ├── cut_mesh_by_plane.rst │ │ ├── cutting_quadrangles.rst │ │ ├── define_mesh_by_script.rst │ │ ├── deflection_2d.rst │ │ ├── deleting_groups.rst │ │ ├── diagonal_inversion_of_elements.rst │ │ ├── display_entity.rst │ │ ├── display_mode.rst │ │ ├── double_elements_control.rst │ │ ├── double_nodes_control.rst │ │ ├── double_nodes_page.rst │ │ ├── editing_groups.rst │ │ ├── editing_meshes.rst │ │ ├── extrusion.rst │ │ ├── extrusion_along_path.rst │ │ ├── face_groups_by_sharp_edges.rst │ │ ├── find_element_by_point.rst │ │ ├── free_borders.rst │ │ ├── free_edges.rst │ │ ├── free_faces.rst │ │ ├── free_nodes.rst │ │ ├── generate_flat_elements.rst │ │ ├── group_of_underlying_elements.rst │ │ ├── grouping_elements.rst │ │ ├── homard_create_boundary.rst │ │ ├── importing_exporting_meshes.rst │ │ ├── index.rst │ │ ├── length.rst │ │ ├── length_2d.rst │ │ ├── make_2dmesh_from_3d.rst │ │ ├── make_2dmesh_from_3d_elements.rst │ │ ├── max_element_length_2d.rst │ │ ├── max_element_length_3d.rst │ │ ├── measurements.rst │ │ ├── merging_elements.rst │ │ ├── merging_nodes.rst │ │ ├── mesh_infos.rst │ │ ├── mesh_preferences.rst │ │ ├── mesh_through_point.rst │ │ ├── minimum_angle.rst │ │ ├── modifying_meshes.rst │ │ ├── modules.rst │ │ ├── numbering.rst │ │ ├── offset_elements.rst │ │ ├── over_constrained_faces.rst │ │ ├── over_constrained_volumes.rst │ │ ├── parallel_compute.rst │ │ ├── pattern_mapping.rst │ │ ├── point_marker.rst │ │ ├── prism_3d_algo.rst │ │ ├── projection_algos.rst │ │ ├── quad_from_ma_algo.rst │ │ ├── quad_ijk_algo.rst │ │ ├── radial_prism_algo.rst │ │ ├── radial_quadrangle_1D2D_algo.rst │ │ ├── reload_mesh_from_file.rst │ │ ├── removing_nodes_and_elements.rst │ │ ├── reorient_faces.rst │ │ ├── revolution.rst │ │ ├── rotation.rst │ │ ├── scalar_bar.rst │ │ ├── scale.rst │ │ ├── scaled_jacobian.rst │ │ ├── segments_around_vertex_algo.rst │ │ ├── selection_filter_library.rst │ │ ├── sewing_meshes.rst │ │ ├── skew.rst │ │ ├── smeshBuilder.rst │ │ ├── smesh_migration.rst │ │ ├── smesh_module.rst │ │ ├── smeshpy_interface.rst │ │ ├── smeshstudytools.rst │ │ ├── smoothing.rst │ │ ├── split_biquad_to_linear.rst │ │ ├── split_to_tetra.rst │ │ ├── symmetry.rst │ │ ├── taper.rst │ │ ├── tools.rst │ │ ├── translation.rst │ │ ├── transparency.rst │ │ ├── tui_adaptation.rst │ │ ├── tui_creating_meshes.rst │ │ ├── tui_defining_hypotheses.rst │ │ ├── tui_filters.rst │ │ ├── tui_grouping_elements.rst │ │ ├── tui_measurements.rst │ │ ├── tui_modifying_meshes.rst │ │ ├── tui_notebook_smesh.rst │ │ ├── tui_quality_controls.rst │ │ ├── tui_transforming_meshes.rst │ │ ├── tui_viewing_meshes.rst │ │ ├── tui_work_on_objects_from_gui.rst │ │ ├── uniting_set_of_triangles.rst │ │ ├── uniting_two_triangles.rst │ │ ├── use_existing_algos.rst │ │ ├── using_notebook_smesh_page.rst │ │ ├── using_operations_on_groups.rst │ │ ├── viewing_meshes_overview.rst │ │ ├── volume.rst │ │ ├── warping.rst │ │ └── warping_3d.rst │ ├── locale │ │ └── fr │ │ │ └── LC_MESSAGES │ │ │ ├── 1d_meshing_hypo.po │ │ │ ├── 2d_meshing_hypo.po │ │ │ ├── about_filters.po │ │ │ ├── about_hypo.po │ │ │ ├── about_meshes.po │ │ │ ├── about_quality_controls.po │ │ │ ├── adding_nodes_and_elements.po │ │ │ ├── adding_quadratic_elements.po │ │ │ ├── additional_hypo.po │ │ │ ├── area.po │ │ │ ├── aspect_ratio.po │ │ │ ├── aspect_ratio_3d.po │ │ │ ├── bare_border_face.po │ │ │ ├── bare_border_volumes.po │ │ │ ├── basic_meshing_algos.po │ │ │ ├── borders_at_multi_connection.po │ │ │ ├── borders_at_multi_connection_2d.po │ │ │ ├── building_compounds.po │ │ │ ├── cartesian_algo.po │ │ │ ├── changing_orientation_of_elements.po │ │ │ ├── clipping.po │ │ │ ├── colors_size.po │ │ │ ├── connectivity.po │ │ │ ├── constructing_meshes.po │ │ │ ├── constructing_submeshes.po │ │ │ ├── convert_to_from_quadratic_mesh.po │ │ │ ├── copy_mesh.po │ │ │ ├── create_groups_from_geometry.po │ │ │ ├── creating_groups.po │ │ │ ├── cut_mesh_by_plane.po │ │ │ ├── cutting_quadrangles.po │ │ │ ├── define_mesh_by_script.po │ │ │ ├── deleting_groups.po │ │ │ ├── diagonal_inversion_of_elements.po │ │ │ ├── display_entity.po │ │ │ ├── display_mode.po │ │ │ ├── double_elements_control.po │ │ │ ├── double_nodes_control.po │ │ │ ├── double_nodes_page.po │ │ │ ├── editing_groups.po │ │ │ ├── editing_meshes.po │ │ │ ├── extrusion.po │ │ │ ├── extrusion_along_path.po │ │ │ ├── find_element_by_point.po │ │ │ ├── free_borders.po │ │ │ ├── free_edges.po │ │ │ ├── free_faces.po │ │ │ ├── free_nodes.po │ │ │ ├── generate_flat_elements.po │ │ │ ├── group_of_underlying_elements.po │ │ │ ├── grouping_elements.po │ │ │ ├── importing_exporting_meshes.po │ │ │ ├── index.po │ │ │ ├── introduction.po │ │ │ ├── length.po │ │ │ ├── length_2d.po │ │ │ ├── make_2dmesh_from_3d.po │ │ │ ├── max_element_length_2d.po │ │ │ ├── max_element_length_3d.po │ │ │ ├── max_element_volume_hypo.po │ │ │ ├── measurements.po │ │ │ ├── merging_elements.po │ │ │ ├── merging_nodes.po │ │ │ ├── mesh_infos.po │ │ │ ├── mesh_preferences.po │ │ │ ├── mesh_through_point.po │ │ │ ├── minimum_angle.po │ │ │ ├── modifying_meshes.po │ │ │ ├── modules.po │ │ │ ├── numbering.po │ │ │ ├── over_constrained_faces.po │ │ │ ├── over_constrained_volumes.po │ │ │ ├── pattern_mapping.po │ │ │ ├── point_marker.po │ │ │ ├── prism_3d_algo.po │ │ │ ├── projection_algos.po │ │ │ ├── python_api.po │ │ │ ├── quad_from_ma_algo.po │ │ │ ├── quad_ijk_algo.po │ │ │ ├── radial_prism_algo.po │ │ │ ├── radial_quadrangle_1D2D_algo.po │ │ │ ├── removing_nodes_and_elements.po │ │ │ ├── reorient_faces.po │ │ │ ├── revolution.po │ │ │ ├── rotation.po │ │ │ ├── scalar_bar.po │ │ │ ├── scale.po │ │ │ ├── segments_around_vertex_algo.po │ │ │ ├── selection_filter_library.po │ │ │ ├── sewing_meshes.po │ │ │ ├── skew.po │ │ │ ├── smesh_migration.po │ │ │ ├── smeshpy_interface.po │ │ │ ├── smoothing.po │ │ │ ├── split_biquad_to_linear.po │ │ │ ├── split_to_tetra.po │ │ │ ├── symmetry.po │ │ │ ├── taper.po │ │ │ ├── tools.po │ │ │ ├── translation.po │ │ │ ├── transparency.po │ │ │ ├── tui_cartesian_algo.po │ │ │ ├── tui_creating_meshes.po │ │ │ ├── tui_defining_hypotheses.po │ │ │ ├── tui_filters.po │ │ │ ├── tui_generate_flat_elements.po │ │ │ ├── tui_grouping_elements.po │ │ │ ├── tui_measurements.po │ │ │ ├── tui_modifying_meshes.po │ │ │ ├── tui_notebook_smesh.po │ │ │ ├── tui_prism_3d_algo.po │ │ │ ├── tui_quality_controls.po │ │ │ ├── tui_transforming_meshes.po │ │ │ ├── tui_use_existing_faces.po │ │ │ ├── tui_viewing_meshes.po │ │ │ ├── tui_work_on_objects_from_gui.po │ │ │ ├── uniting_set_of_triangles.po │ │ │ ├── uniting_two_triangles.po │ │ │ ├── use_existing_algos.po │ │ │ ├── using_notebook_smesh_page.po │ │ │ ├── using_operations_on_groups.po │ │ │ ├── viewing_meshes_overview.po │ │ │ ├── volume.po │ │ │ └── warping.po │ ├── merge_mesh_class.py │ ├── static │ │ └── switchers.js.in │ └── templates │ │ └── layout.html └── tui │ ├── CMakeLists.txt │ ├── doxyfile.in │ ├── images │ ├── application.gif │ ├── head.png │ ├── logocorp.gif │ └── smeshscreen.png │ ├── input │ └── index.doc │ └── static │ ├── footer.html │ ├── header.html.in │ └── salome_extra.css ├── idl ├── CMakeLists.txt ├── MG_ADAPT.idl ├── SMESH_BasicHypothesis.idl ├── SMESH_Filter.idl ├── SMESH_Gen.idl ├── SMESH_Group.idl ├── SMESH_Homard.idl ├── SMESH_Hypothesis.idl ├── SMESH_Measurements.idl ├── SMESH_Mesh.idl ├── SMESH_MeshEditor.idl ├── SMESH_Pattern.idl └── SMESH_smIdType.idl.in ├── resources ├── CMakeLists.txt ├── ModuleMesh.png ├── SMESHCatalog.xml.in ├── SalomeApp.xml.in ├── StdMeshers.xml.in ├── adapt_homard.png ├── adapt_mg_adapt.png ├── advanced_mesh_info.png ├── bare_border_face.png ├── bare_border_volume.png ├── copy_mesh.png ├── copy_mesh_with_geom.png ├── delete.png ├── mesh.png ├── mesh_0D_elem.png ├── mesh_0D_on_all_nodes.png ├── mesh_2d_from_3d.png ├── mesh_2d_from_3d_elements.png ├── mesh_add.png ├── mesh_add_sub.png ├── mesh_algo_hexa.png ├── mesh_algo_quad.png ├── mesh_algo_regular.png ├── mesh_algo_tetra.png ├── mesh_algo_tri.png ├── mesh_angle.png ├── mesh_angle_measure.png ├── mesh_area.png ├── mesh_aspect.png ├── mesh_aspect_3d.png ├── mesh_auto_colors.png ├── mesh_ball.png ├── mesh_biquad_quadrangle.png ├── mesh_biquad_triangle.png ├── mesh_bounding_box.png ├── mesh_build_compound.png ├── mesh_choose.png ├── mesh_choose_all.png ├── mesh_clear.png ├── mesh_compute.png ├── mesh_compute_error.png ├── mesh_conv_to_quad.png ├── mesh_create_dual_mesh.png ├── mesh_cutGroups.png ├── mesh_cutquad.png ├── mesh_deflection.png ├── mesh_deleteGroups.png ├── mesh_diagonal.png ├── mesh_duplicate_elem_only.png ├── mesh_duplicate_group_boundary.png ├── mesh_duplicate_nodes.png ├── mesh_duplicate_nodes_with_elem.png ├── mesh_edit.png ├── mesh_edit_group.png ├── mesh_elem_info.png ├── mesh_equal_edge.png ├── mesh_equal_face.png ├── mesh_equal_node.png ├── mesh_equal_volume.png ├── mesh_evaluate.png ├── mesh_export.png ├── mesh_extmeth_face_offset.png ├── mesh_extmeth_node_offset.png ├── mesh_extmeth_surf_offset_smooth.png ├── mesh_extractGroup.png ├── mesh_extrusion.png ├── mesh_extrusionpath.png ├── mesh_face_groups_by_edges.png ├── mesh_find_elem_by_point.png ├── mesh_free_edges.png ├── mesh_free_edges_2d.png ├── mesh_free_faces.png ├── mesh_free_nodes.png ├── mesh_group.png ├── mesh_groups_from_gemetry.png ├── mesh_hexa.png ├── mesh_hide.png ├── mesh_hypo_area.png ├── mesh_hypo_edit.png ├── mesh_hypo_layer_distribution.png ├── mesh_hypo_length.png ├── mesh_hypo_segment.png ├── mesh_hypo_source_3d.png ├── mesh_hypo_source_edge.png ├── mesh_hypo_source_face.png ├── mesh_hypo_viscous_layers.png ├── mesh_hypo_volume.png ├── mesh_info.png ├── mesh_init.png ├── mesh_intersectGroups.png ├── mesh_length.png ├── mesh_length_2d.png ├── mesh_line.png ├── mesh_line_n.png ├── mesh_make_group.png ├── mesh_max_element_length_2d.png ├── mesh_max_element_length_3d.png ├── mesh_measure_area.png ├── mesh_measure_basic_props.png ├── mesh_measure_length.png ├── mesh_measure_volume.png ├── mesh_merge_elements.png ├── mesh_merge_nodes.png ├── mesh_min_dist.png ├── mesh_minus.png ├── mesh_move_node.png ├── mesh_move_node_interactive.png ├── mesh_move_without_node.png ├── mesh_multi_edges.png ├── mesh_multi_edges_2d.png ├── mesh_node_to_point.png ├── mesh_octahedron.png ├── mesh_offset.png ├── mesh_order.png ├── mesh_orientation.png ├── mesh_pattern.png ├── mesh_pentahedron.png ├── mesh_plugins_meshcut.png ├── mesh_plus.png ├── mesh_points.png ├── mesh_polygon.png ├── mesh_polyhedron.png ├── mesh_precompute.png ├── mesh_pyramid.png ├── mesh_pyramid_n.png ├── mesh_quad.png ├── mesh_quad_edge.png ├── mesh_quad_hexahedron.png ├── mesh_quad_n.png ├── mesh_quad_pentahedron.png ├── mesh_quad_polygon.png ├── mesh_quad_pyramid.png ├── mesh_quad_quadrangle.png ├── mesh_quad_tetrahedron.png ├── mesh_quad_triangle.png ├── mesh_quadrangle_quadpref.png ├── mesh_quadrangle_quadpref_reversed.png ├── mesh_quadrangle_reduced.png ├── mesh_quadrangle_standard.png ├── mesh_quadrangle_triapref.png ├── mesh_quality.png ├── mesh_rem_element.png ├── mesh_rem_node.png ├── mesh_rem_node_recon.png ├── mesh_rem_orphan_nodes.png ├── mesh_remove.png ├── mesh_renumbering_elements.png ├── mesh_renumbering_nodes.png ├── mesh_revolution.png ├── mesh_rotation.png ├── mesh_scaled_jacobian.png ├── mesh_sew_bordertoside.png ├── mesh_sew_conform_freeborders.png ├── mesh_sew_freeborders.png ├── mesh_sew_sideelements.png ├── mesh_shading.png ├── mesh_show.png ├── mesh_shrink.png ├── mesh_skew.png ├── mesh_smoothing.png ├── mesh_split_diag_interactive.png ├── mesh_split_face_interactive.png ├── mesh_symmetry_axis.png ├── mesh_symmetry_plane.png ├── mesh_symmetry_point.png ├── mesh_taper.png ├── mesh_tetra.png ├── mesh_translation_points.png ├── mesh_translation_vector.png ├── mesh_tree_algo.png ├── mesh_tree_algo_0D.png ├── mesh_tree_algo_existing_2D.png ├── mesh_tree_algo_hexa.png ├── mesh_tree_algo_polygon.png ├── mesh_tree_algo_prism.png ├── mesh_tree_algo_projection_2d.png ├── mesh_tree_algo_quad.png ├── mesh_tree_algo_radial_prism.png ├── mesh_tree_algo_radial_quadrangle_1D2D.png ├── mesh_tree_algo_regular.png ├── mesh_tree_algo_tetra.png ├── mesh_tree_algo_tri.png ├── mesh_tree_group.png ├── mesh_tree_group_on_filter.png ├── mesh_tree_hypo.png ├── mesh_tree_hypo_area.png ├── mesh_tree_hypo_cartesian.png ├── mesh_tree_hypo_import_source_1d.png ├── mesh_tree_hypo_import_source_2d.png ├── mesh_tree_hypo_layers_distribution.png ├── mesh_tree_hypo_layers_distribution_2d.png ├── mesh_tree_hypo_length.png ├── mesh_tree_hypo_projection_2d.png ├── mesh_tree_hypo_projection_3d.png ├── mesh_tree_hypo_quadratic.png ├── mesh_tree_hypo_renumber.png ├── mesh_tree_hypo_segment.png ├── mesh_tree_hypo_source_3d_shape.png ├── mesh_tree_hypo_source_edge.png ├── mesh_tree_hypo_source_face.png ├── mesh_tree_hypo_viscous_layers.png ├── mesh_tree_hypo_volume.png ├── mesh_tree_importedmesh.png ├── mesh_tree_mesh.png ├── mesh_tree_mesh_geom_modif.png ├── mesh_tree_mesh_partial.png ├── mesh_tree_mesh_warn.png ├── mesh_triangle.png ├── mesh_triangle_n.png ├── mesh_triquad_hexahedron.png ├── mesh_union2tri.png ├── mesh_unionGroups.png ├── mesh_uniontri.png ├── mesh_update.png ├── mesh_vertex.png ├── mesh_vertex_n.png ├── mesh_volume_3d.png ├── mesh_whatis.png ├── mesh_wireframe.png ├── mesh_wrap.png ├── open.png ├── over_constrained_face.png ├── over_constrained_volume.png ├── pattern_sample_2d.png ├── pattern_sample_3D.png ├── reorient_faces_face.png ├── reorient_faces_point.png ├── reorient_faces_ref_groups.png ├── reorient_faces_volume.png ├── scale.png ├── scale_along_axes.png ├── select1.png ├── split_biquad.png ├── split_into_tetra.png └── standard_mesh_info.png ├── src ├── CMakeLists.txt ├── Controls │ ├── CMakeLists.txt │ ├── SMESH_Controls.cxx │ ├── SMESH_ControlsClassifier.cxx │ ├── SMESH_ControlsClassifier.hxx │ └── SMESH_ControlsDef.hxx ├── Driver │ ├── CMakeLists.txt │ ├── Driver_Mesh.cxx │ ├── Driver_Mesh.h │ ├── Driver_SMDS_Mesh.cxx │ ├── Driver_SMDS_Mesh.h │ ├── Driver_SMESHDS_Mesh.cxx │ └── Driver_SMESHDS_Mesh.h ├── DriverCGNS │ ├── CMakeLists.txt │ ├── DriverCGNS_Read.cxx │ ├── DriverCGNS_Read.hxx │ ├── DriverCGNS_Write.cxx │ ├── DriverCGNS_Write.hxx │ ├── DriverStructuredCGNS_Write.cxx │ ├── DriverStructuredCGNS_Write.hxx │ └── SMESH_DriverCGNS.hxx ├── DriverDAT │ ├── CMakeLists.txt │ ├── DriverDAT_R_SMDS_Mesh.cxx │ ├── DriverDAT_R_SMDS_Mesh.h │ ├── DriverDAT_W_SMDS_Mesh.cxx │ ├── DriverDAT_W_SMDS_Mesh.h │ └── SMESH_DriverDAT.hxx ├── DriverGMF │ ├── CMakeLists.txt │ ├── DriverGMF.cxx │ ├── DriverGMF.hxx │ ├── DriverGMF_Read.cxx │ ├── DriverGMF_Read.hxx │ ├── DriverGMF_Write.cxx │ ├── DriverGMF_Write.hxx │ ├── SMESH_DriverGMF.hxx │ ├── libmesh5.c │ └── libmesh5.h ├── DriverMED │ ├── CMakeLists.txt │ ├── DriverMED.hxx │ ├── DriverMED_Family.cxx │ ├── DriverMED_Family.h │ ├── DriverMED_R_SMESHDS_Mesh.cxx │ ├── DriverMED_R_SMESHDS_Mesh.h │ ├── DriverMED_W_Field.cxx │ ├── DriverMED_W_Field.h │ ├── DriverMED_W_SMESHDS_Mesh.cxx │ ├── DriverMED_W_SMESHDS_Mesh.h │ └── SMESH_DriverMED.hxx ├── DriverSTL │ ├── CMakeLists.txt │ ├── DriverSTL_R_SMDS_Mesh.cxx │ ├── DriverSTL_R_SMDS_Mesh.h │ ├── DriverSTL_W_SMDS_Mesh.cxx │ ├── DriverSTL_W_SMDS_Mesh.h │ └── SMESH_DriverSTL.hxx ├── DriverUNV │ ├── CMakeLists.txt │ ├── DriverUNV_R_SMDS_Mesh.cxx │ ├── DriverUNV_R_SMDS_Mesh.h │ ├── DriverUNV_W_SMDS_Mesh.cxx │ ├── DriverUNV_W_SMDS_Mesh.h │ ├── SMESH_DriverUNV.hxx │ ├── UNV164_Structure.cxx │ ├── UNV164_Structure.hxx │ ├── UNV2411_Structure.cxx │ ├── UNV2411_Structure.hxx │ ├── UNV2412_Structure.cxx │ ├── UNV2412_Structure.hxx │ ├── UNV2417_Structure.cxx │ ├── UNV2417_Structure.hxx │ ├── UNV2420_Structure.cxx │ ├── UNV2420_Structure.hxx │ ├── UNV_Utilities.cxx │ └── UNV_Utilities.hxx ├── MEDWrapper │ ├── CMakeLists.txt │ ├── MED_Algorithm.cxx │ ├── MED_Algorithm.hxx │ ├── MED_Common.cxx │ ├── MED_Common.hxx │ ├── MED_CoordUtils.cxx │ ├── MED_CoordUtils.hxx │ ├── MED_Factory.cxx │ ├── MED_Factory.hxx │ ├── MED_GaussDef.cxx │ ├── MED_GaussDef.hxx │ ├── MED_GaussUtils.cxx │ ├── MED_GaussUtils.hxx │ ├── MED_SharedPtr.hxx │ ├── MED_SliceArray.hxx │ ├── MED_Structures.cxx │ ├── MED_Structures.hxx │ ├── MED_TFile.hxx │ ├── MED_TStructures.hxx │ ├── MED_Utilities.cxx │ ├── MED_Utilities.hxx │ ├── MED_Vector.hxx │ ├── MED_Wrapper.cxx │ ├── MED_Wrapper.hxx │ ├── MED_WrapperDef.hxx │ └── mprint_version.cxx ├── OBJECT │ ├── CMakeLists.txt │ ├── SMESH_Actor.cxx │ ├── SMESH_Actor.h │ ├── SMESH_ActorDef.h │ ├── SMESH_ActorProps.cxx │ ├── SMESH_ActorProps.h │ ├── SMESH_ActorUtils.cxx │ ├── SMESH_ActorUtils.h │ ├── SMESH_CellLabelActor.cxx │ ├── SMESH_CellLabelActor.h │ ├── SMESH_DeviceActor.cxx │ ├── SMESH_DeviceActor.h │ ├── SMESH_ExtractGeometry.cxx │ ├── SMESH_ExtractGeometry.h │ ├── SMESH_FaceOrientationFilter.cxx │ ├── SMESH_FaceOrientationFilter.h │ ├── SMESH_NodeLabelActor.cxx │ ├── SMESH_NodeLabelActor.h │ ├── SMESH_Object.cxx │ ├── SMESH_Object.h │ ├── SMESH_ObjectDef.h │ ├── SMESH_PreviewActorsCollection.cxx │ ├── SMESH_PreviewActorsCollection.h │ ├── SMESH_SVTKActor.cxx │ ├── SMESH_SVTKActor.h │ ├── SMESH_ScalarBarActor.cxx │ └── SMESH_ScalarBarActor.h ├── PluginUtils │ ├── CMakeLists.txt │ ├── GeomSelectionTools.cxx │ ├── GeomSelectionTools.h │ ├── SMESH_AdvOptionsWdg.cxx │ ├── SMESH_AdvOptionsWdg.h │ └── SMESH_PluginUtils.h ├── SMDS │ ├── CMakeLists.txt │ ├── ObjectPool.hxx │ ├── SMDSAbs_ElementType.hxx │ ├── SMDS_BallElement.cxx │ ├── SMDS_BallElement.hxx │ ├── SMDS_CellOfNodes.cxx │ ├── SMDS_CellOfNodes.hxx │ ├── SMDS_Downward.cxx │ ├── SMDS_Downward.hxx │ ├── SMDS_EdgePosition.hxx │ ├── SMDS_ElemIterator.hxx │ ├── SMDS_ElementFactory.cxx │ ├── SMDS_ElementFactory.hxx │ ├── SMDS_ElementHolder.cxx │ ├── SMDS_ElementHolder.hxx │ ├── SMDS_FaceOfNodes.cxx │ ├── SMDS_FaceOfNodes.hxx │ ├── SMDS_FacePosition.cxx │ ├── SMDS_FacePosition.hxx │ ├── SMDS_Iterator.hxx │ ├── SMDS_IteratorOnIterators.hxx │ ├── SMDS_LinearEdge.cxx │ ├── SMDS_LinearEdge.hxx │ ├── SMDS_MemoryLimit.cxx │ ├── SMDS_Mesh.cxx │ ├── SMDS_Mesh.hxx │ ├── SMDS_Mesh0DElement.hxx │ ├── SMDS_MeshCell.cxx │ ├── SMDS_MeshCell.hxx │ ├── SMDS_MeshEdge.hxx │ ├── SMDS_MeshElement.cxx │ ├── SMDS_MeshElement.hxx │ ├── SMDS_MeshFace.hxx │ ├── SMDS_MeshGroup.cxx │ ├── SMDS_MeshGroup.hxx │ ├── SMDS_MeshInfo.hxx │ ├── SMDS_MeshNode.cxx │ ├── SMDS_MeshNode.hxx │ ├── SMDS_MeshObject.cxx │ ├── SMDS_MeshObject.hxx │ ├── SMDS_MeshVolume.cxx │ ├── SMDS_MeshVolume.hxx │ ├── SMDS_PolygonalFaceOfNodes.cxx │ ├── SMDS_PolygonalFaceOfNodes.hxx │ ├── SMDS_Position.hxx │ ├── SMDS_SetIterator.hxx │ ├── SMDS_SpacePosition.cxx │ ├── SMDS_SpacePosition.hxx │ ├── SMDS_StdIterator.hxx │ ├── SMDS_TypeOfPosition.hxx │ ├── SMDS_UnstructuredGrid.cxx │ ├── SMDS_UnstructuredGrid.hxx │ ├── SMDS_VertexPosition.hxx │ ├── SMDS_VolumeOfNodes.cxx │ ├── SMDS_VolumeOfNodes.hxx │ ├── SMDS_VolumeTool.cxx │ ├── SMDS_VolumeTool.hxx │ ├── SMDS_VtkCellIterator.cxx │ ├── SMDS_VtkCellIterator.hxx │ ├── SMESH_SMDS.hxx │ ├── chrono.cxx │ └── chrono.hxx ├── SMESH │ ├── CMakeLists.txt │ ├── MG_ADAPT.cxx │ ├── MG_ADAPT.hxx │ ├── SMESH_Algo.cxx │ ├── SMESH_Algo.hxx │ ├── SMESH_DriverMesh.cxx │ ├── SMESH_DriverMesh.hxx │ ├── SMESH_DriverShape.cxx │ ├── SMESH_DriverShape.hxx │ ├── SMESH_Gen.cxx │ ├── SMESH_Gen.hxx │ ├── SMESH_Group.cxx │ ├── SMESH_Group.hxx │ ├── SMESH_Homard.cxx │ ├── SMESH_Homard.hxx │ ├── SMESH_HypoFilter.cxx │ ├── SMESH_HypoFilter.hxx │ ├── SMESH_Hypothesis.cxx │ ├── SMESH_Hypothesis.hxx │ ├── SMESH_Mesh.cxx │ ├── SMESH_Mesh.hxx │ ├── SMESH_MeshEditor.cxx │ ├── SMESH_MeshEditor.hxx │ ├── SMESH_MeshLocker.cxx │ ├── SMESH_MeshLocker.hxx │ ├── SMESH_MesherHelper.cxx │ ├── SMESH_MesherHelper.hxx │ ├── SMESH_ParallelMesh.cxx │ ├── SMESH_ParallelMesh.hxx │ ├── SMESH_Pattern.cxx │ ├── SMESH_Pattern.hxx │ ├── SMESH_ProxyMesh.cxx │ ├── SMESH_ProxyMesh.hxx │ ├── SMESH_SMESH.hxx │ ├── SMESH_SequentialMesh.cxx │ ├── SMESH_SequentialMesh.hxx │ ├── SMESH_subMesh.cxx │ ├── SMESH_subMesh.hxx │ ├── SMESH_subMeshEventListener.hxx │ └── memoire.h ├── SMESHClient │ ├── CMakeLists.txt │ ├── SMESHClientBin.cxx │ ├── SMESH_Client.cxx │ └── SMESH_Client.hxx ├── SMESHDS │ ├── CMakeLists.txt │ ├── SMESHDS_Command.cxx │ ├── SMESHDS_Command.hxx │ ├── SMESHDS_CommandType.hxx │ ├── SMESHDS_DataMapOfShape.hxx │ ├── SMESHDS_Document.cxx │ ├── SMESHDS_Document.hxx │ ├── SMESHDS_Group.cxx │ ├── SMESHDS_Group.hxx │ ├── SMESHDS_GroupBase.cxx │ ├── SMESHDS_GroupBase.hxx │ ├── SMESHDS_GroupOnFilter.cxx │ ├── SMESHDS_GroupOnFilter.hxx │ ├── SMESHDS_GroupOnGeom.cxx │ ├── SMESHDS_GroupOnGeom.hxx │ ├── SMESHDS_Hypothesis.cxx │ ├── SMESHDS_Hypothesis.hxx │ ├── SMESHDS_Mesh.cxx │ ├── SMESHDS_Mesh.hxx │ ├── SMESHDS_Script.cxx │ ├── SMESHDS_Script.hxx │ ├── SMESHDS_SubMesh.cxx │ ├── SMESHDS_SubMesh.hxx │ ├── SMESHDS_TSubMeshHolder.hxx │ ├── SMESH_Controls.hxx │ └── SMESH_SMESHDS.hxx ├── SMESHFiltersSelection │ ├── CMakeLists.txt │ ├── SMESH_LogicalFilter.cxx │ ├── SMESH_LogicalFilter.hxx │ ├── SMESH_NumberFilter.cxx │ ├── SMESH_NumberFilter.hxx │ ├── SMESH_Type.h │ ├── SMESH_TypeFilter.cxx │ └── SMESH_TypeFilter.hxx ├── SMESHGUI │ ├── CMakeLists.txt │ ├── SMESHGUI.cxx │ ├── SMESHGUI.h │ ├── SMESHGUI_Add0DElemsOnAllNodesDlg.cxx │ ├── SMESHGUI_Add0DElemsOnAllNodesDlg.h │ ├── SMESHGUI_AddMeshElementDlg.cxx │ ├── SMESHGUI_AddMeshElementDlg.h │ ├── SMESHGUI_AddNodeOnFaceDlg.cxx │ ├── SMESHGUI_AddNodeOnFaceDlg.h │ ├── SMESHGUI_AddNodeOnSegmentDlg.cxx │ ├── SMESHGUI_AddNodeOnSegmentDlg.h │ ├── SMESHGUI_AddQuadraticElementDlg.cxx │ ├── SMESHGUI_AddQuadraticElementDlg.h │ ├── SMESHGUI_BuildCompoundDlg.cxx │ ├── SMESHGUI_BuildCompoundDlg.h │ ├── SMESHGUI_ClippingDlg.cxx │ ├── SMESHGUI_ClippingDlg.h │ ├── SMESHGUI_ComputeDlg.cxx │ ├── SMESHGUI_ComputeDlg.h │ ├── SMESHGUI_ConvToQuadDlg.cxx │ ├── SMESHGUI_ConvToQuadDlg.h │ ├── SMESHGUI_ConvToQuadOp.cxx │ ├── SMESHGUI_ConvToQuadOp.h │ ├── SMESHGUI_CopyMeshDlg.cxx │ ├── SMESHGUI_CopyMeshDlg.h │ ├── SMESHGUI_CreateDualMeshDlg.cxx │ ├── SMESHGUI_CreateDualMeshDlg.h │ ├── SMESHGUI_CreateDualMeshOp.cxx │ ├── SMESHGUI_CreateDualMeshOp.h │ ├── SMESHGUI_CreatePatternDlg.cxx │ ├── SMESHGUI_CreatePatternDlg.h │ ├── SMESHGUI_CreatePolyhedralVolumeDlg.cxx │ ├── SMESHGUI_CreatePolyhedralVolumeDlg.h │ ├── SMESHGUI_DeleteGroupDlg.cxx │ ├── SMESHGUI_DeleteGroupDlg.h │ ├── SMESHGUI_Dialog.cxx │ ├── SMESHGUI_Dialog.h │ ├── SMESHGUI_DisplayEntitiesDlg.cxx │ ├── SMESHGUI_DisplayEntitiesDlg.h │ ├── SMESHGUI_Displayer.cxx │ ├── SMESHGUI_Displayer.h │ ├── SMESHGUI_DuplicateNodesDlg.cxx │ ├── SMESHGUI_DuplicateNodesDlg.h │ ├── SMESHGUI_ExtrusionAlongPathDlg.cxx │ ├── SMESHGUI_ExtrusionAlongPathDlg.h │ ├── SMESHGUI_ExtrusionDlg.cxx │ ├── SMESHGUI_ExtrusionDlg.h │ ├── SMESHGUI_FaceGroupsSeparatedByEdgesDlg.cxx │ ├── SMESHGUI_FaceGroupsSeparatedByEdgesDlg.h │ ├── SMESHGUI_FieldSelectorWdg.cxx │ ├── SMESHGUI_FieldSelectorWdg.h │ ├── SMESHGUI_FileInfoDlg.cxx │ ├── SMESHGUI_FileInfoDlg.h │ ├── SMESHGUI_FileValidator.cxx │ ├── SMESHGUI_FileValidator.h │ ├── SMESHGUI_Filter.cxx │ ├── SMESHGUI_Filter.h │ ├── SMESHGUI_FilterDlg.cxx │ ├── SMESHGUI_FilterDlg.h │ ├── SMESHGUI_FilterLibraryDlg.cxx │ ├── SMESHGUI_FilterLibraryDlg.h │ ├── SMESHGUI_FilterUtils.cxx │ ├── SMESHGUI_FilterUtils.h │ ├── SMESHGUI_FindElemByPointDlg.cxx │ ├── SMESHGUI_FindElemByPointDlg.h │ ├── SMESHGUI_GEOMGenUtils.cxx │ ├── SMESHGUI_GEOMGenUtils.h │ ├── SMESHGUI_GroupDlg.cxx │ ├── SMESHGUI_GroupDlg.h │ ├── SMESHGUI_GroupOnShapeDlg.cxx │ ├── SMESHGUI_GroupOnShapeDlg.h │ ├── SMESHGUI_GroupOpDlg.cxx │ ├── SMESHGUI_GroupOpDlg.h │ ├── SMESHGUI_GroupUtils.cxx │ ├── SMESHGUI_GroupUtils.h │ ├── SMESHGUI_HomardAdaptDlg.cxx │ ├── SMESHGUI_HomardAdaptDlg.h │ ├── SMESHGUI_HomardBoundaryDlg.cxx │ ├── SMESHGUI_HomardBoundaryDlg.h │ ├── SMESHGUI_HomardListGroup.cxx │ ├── SMESHGUI_HomardListGroup.h │ ├── SMESHGUI_HomardUtils.cxx │ ├── SMESHGUI_HomardUtils.h │ ├── SMESHGUI_Homard_msg_en.ts │ ├── SMESHGUI_Homard_msg_fr.ts │ ├── SMESHGUI_Homard_msg_ja.ts │ ├── SMESHGUI_Hypotheses.cxx │ ├── SMESHGUI_Hypotheses.h │ ├── SMESHGUI_HypothesesUtils.cxx │ ├── SMESHGUI_HypothesesUtils.h │ ├── SMESHGUI_IdPreview.cxx │ ├── SMESHGUI_IdPreview.h │ ├── SMESHGUI_IdValidator.h │ ├── SMESHGUI_InteractiveOp.cxx │ ├── SMESHGUI_InteractiveOp.h │ ├── SMESHGUI_MG_ADAPTDRIVER.cxx │ ├── SMESHGUI_MG_ADAPTDRIVER.h │ ├── SMESHGUI_Make2DFrom3DOp.cxx │ ├── SMESHGUI_Make2DFrom3DOp.h │ ├── SMESHGUI_MakeFull2DFrom3DOp.cxx │ ├── SMESHGUI_MakeFull2DFrom3DOp.h │ ├── SMESHGUI_MakeNodeAtPointDlg.cxx │ ├── SMESHGUI_MakeNodeAtPointDlg.h │ ├── SMESHGUI_Measurements.cxx │ ├── SMESHGUI_Measurements.h │ ├── SMESHGUI_MergeDlg.cxx │ ├── SMESHGUI_MergeDlg.h │ ├── SMESHGUI_MeshDlg.cxx │ ├── SMESHGUI_MeshDlg.h │ ├── SMESHGUI_MeshEditPreview.cxx │ ├── SMESHGUI_MeshEditPreview.h │ ├── SMESHGUI_MeshInfo.cxx │ ├── SMESHGUI_MeshInfo.h │ ├── SMESHGUI_MeshInfosBox.cxx │ ├── SMESHGUI_MeshInfosBox.h │ ├── SMESHGUI_MeshOp.cxx │ ├── SMESHGUI_MeshOp.h │ ├── SMESHGUI_MeshOrderDlg.cxx │ ├── SMESHGUI_MeshOrderDlg.h │ ├── SMESHGUI_MeshOrderOp.cxx │ ├── SMESHGUI_MeshOrderOp.h │ ├── SMESHGUI_MeshPatternDlg.cxx │ ├── SMESHGUI_MeshPatternDlg.h │ ├── SMESHGUI_MeshUtils.cxx │ ├── SMESHGUI_MeshUtils.h │ ├── SMESHGUI_Meshio.cxx │ ├── SMESHGUI_Meshio.h │ ├── SMESHGUI_MgAdaptDlg.cxx │ ├── SMESHGUI_MgAdaptDlg.h │ ├── SMESHGUI_MultiEditDlg.cxx │ ├── SMESHGUI_MultiEditDlg.h │ ├── SMESHGUI_NodesDlg.cxx │ ├── SMESHGUI_NodesDlg.h │ ├── SMESHGUI_OffsetDlg.cxx │ ├── SMESHGUI_OffsetDlg.h │ ├── SMESHGUI_Operation.cxx │ ├── SMESHGUI_Operation.h │ ├── SMESHGUI_Operations.h │ ├── SMESHGUI_PatternUtils.cxx │ ├── SMESHGUI_PatternUtils.h │ ├── SMESHGUI_PatternWidget.cxx │ ├── SMESHGUI_PatternWidget.h │ ├── SMESHGUI_PreVisualObj.cxx │ ├── SMESHGUI_PreVisualObj.h │ ├── SMESHGUI_Preferences_ScalarBarDlg.cxx │ ├── SMESHGUI_Preferences_ScalarBarDlg.h │ ├── SMESHGUI_PreviewDlg.cxx │ ├── SMESHGUI_PreviewDlg.h │ ├── SMESHGUI_PropertiesDlg.cxx │ ├── SMESHGUI_PropertiesDlg.h │ ├── SMESHGUI_RemoveElementsDlg.cxx │ ├── SMESHGUI_RemoveElementsDlg.h │ ├── SMESHGUI_RemoveNodeReconnectionDlg.cxx │ ├── SMESHGUI_RemoveNodeReconnectionDlg.h │ ├── SMESHGUI_RemoveNodesDlg.cxx │ ├── SMESHGUI_RemoveNodesDlg.h │ ├── SMESHGUI_RenumberingDlg.cxx │ ├── SMESHGUI_RenumberingDlg.h │ ├── SMESHGUI_ReorientFacesDlg.cxx │ ├── SMESHGUI_ReorientFacesDlg.h │ ├── SMESHGUI_RevolutionDlg.cxx │ ├── SMESHGUI_RevolutionDlg.h │ ├── SMESHGUI_RotationDlg.cxx │ ├── SMESHGUI_RotationDlg.h │ ├── SMESHGUI_ScaleDlg.cxx │ ├── SMESHGUI_ScaleDlg.h │ ├── SMESHGUI_Selection.cxx │ ├── SMESHGUI_Selection.h │ ├── SMESHGUI_SelectionOp.cxx │ ├── SMESHGUI_SelectionOp.h │ ├── SMESHGUI_SelectionProxy.cxx │ ├── SMESHGUI_SelectionProxy.h │ ├── SMESHGUI_SewingDlg.cxx │ ├── SMESHGUI_SewingDlg.h │ ├── SMESHGUI_ShapeByMeshDlg.cxx │ ├── SMESHGUI_ShapeByMeshDlg.h │ ├── SMESHGUI_SingleEditDlg.cxx │ ├── SMESHGUI_SingleEditDlg.h │ ├── SMESHGUI_SmoothingDlg.cxx │ ├── SMESHGUI_SmoothingDlg.h │ ├── SMESHGUI_SpinBox.cxx │ ├── SMESHGUI_SpinBox.h │ ├── SMESHGUI_SpinBoxForbiddendRange.cxx │ ├── SMESHGUI_SpinBoxForbiddendRange.h │ ├── SMESHGUI_SplitBiQuad.cxx │ ├── SMESHGUI_SplitBiQuad.h │ ├── SMESHGUI_SymmetryDlg.cxx │ ├── SMESHGUI_SymmetryDlg.h │ ├── SMESHGUI_TranslationDlg.cxx │ ├── SMESHGUI_TranslationDlg.h │ ├── SMESHGUI_TransparencyDlg.cxx │ ├── SMESHGUI_TransparencyDlg.h │ ├── SMESHGUI_Utils.cxx │ ├── SMESHGUI_Utils.h │ ├── SMESHGUI_VTKUtils.cxx │ ├── SMESHGUI_VTKUtils.h │ ├── SMESHGUI_XmlHandler.cxx │ ├── SMESHGUI_XmlHandler.h │ ├── SMESH_SMESHGUI.hxx │ ├── SMESH_images.ts │ ├── SMESH_msg_en.ts │ ├── SMESH_msg_fr.ts │ └── SMESH_msg_ja.ts ├── SMESHUtils │ ├── CMakeLists.txt │ ├── SMESH_Block.cxx │ ├── SMESH_Block.hxx │ ├── SMESH_BoostTxtArchive.cxx │ ├── SMESH_BoostTxtArchive.hxx │ ├── SMESH_Comment.hxx │ ├── SMESH_ComputeError.hxx │ ├── SMESH_ControlPnt.cxx │ ├── SMESH_ControlPnt.hxx │ ├── SMESH_DeMerge.cxx │ ├── SMESH_Delaunay.cxx │ ├── SMESH_Delaunay.hxx │ ├── SMESH_File.cxx │ ├── SMESH_File.hxx │ ├── SMESH_FillHole.cxx │ ├── SMESH_FreeBorders.cxx │ ├── SMESH_Indexer.hxx │ ├── SMESH_MAT2d.cxx │ ├── SMESH_MAT2d.hxx │ ├── SMESH_MGLicenseKeyGen.cxx │ ├── SMESH_MGLicenseKeyGen.hxx │ ├── SMESH_MeshAlgos.cxx │ ├── SMESH_MeshAlgos.hxx │ ├── SMESH_Octree.cxx │ ├── SMESH_Octree.hxx │ ├── SMESH_OctreeNode.cxx │ ├── SMESH_OctreeNode.hxx │ ├── SMESH_Offset.cxx │ ├── SMESH_PolyLine.cxx │ ├── SMESH_Quadtree.cxx │ ├── SMESH_Quadtree.hxx │ ├── SMESH_RegularGrid.cxx │ ├── SMESH_RegularGrid.hxx │ ├── SMESH_RegularGridTemplate.hxx │ ├── SMESH_Slot.cxx │ ├── SMESH_Tree.hxx │ ├── SMESH_Triangulate.cxx │ ├── SMESH_TryCatch.cxx │ ├── SMESH_TryCatch.hxx │ ├── SMESH_TypeDefs.hxx │ └── SMESH_Utils.hxx ├── SMESH_I │ ├── CMakeLists.txt │ ├── MG_ADAPT_i.cxx │ ├── MG_ADAPT_i.hxx │ ├── SMESH.hxx │ ├── SMESH_0D_Algo_i.cxx │ ├── SMESH_0D_Algo_i.hxx │ ├── SMESH_1D_Algo_i.cxx │ ├── SMESH_1D_Algo_i.hxx │ ├── SMESH_2D_Algo_i.cxx │ ├── SMESH_2D_Algo_i.hxx │ ├── SMESH_2smeshpy.cxx │ ├── SMESH_2smeshpy.hxx │ ├── SMESH_3D_Algo_i.cxx │ ├── SMESH_3D_Algo_i.hxx │ ├── SMESH_Algo_i.cxx │ ├── SMESH_Algo_i.hxx │ ├── SMESH_Filter_i.cxx │ ├── SMESH_Filter_i.hxx │ ├── SMESH_Gen_No_Session_i.cxx │ ├── SMESH_Gen_No_Session_i.hxx │ ├── SMESH_Gen_Session_i.cxx │ ├── SMESH_Gen_Session_i.hxx │ ├── SMESH_Gen_i.cxx │ ├── SMESH_Gen_i.hxx │ ├── SMESH_Gen_i_1.cxx │ ├── SMESH_Group_i.cxx │ ├── SMESH_Group_i.hxx │ ├── SMESH_Homard_i.cxx │ ├── SMESH_Homard_i.hxx │ ├── SMESH_Hypothesis_i.cxx │ ├── SMESH_Hypothesis_i.hxx │ ├── SMESH_Measurements_i.cxx │ ├── SMESH_Measurements_i.hxx │ ├── SMESH_MeshEditor_i.cxx │ ├── SMESH_MeshEditor_i.hxx │ ├── SMESH_MeshPartDS.hxx │ ├── SMESH_Mesh_i.cxx │ ├── SMESH_Mesh_i.hxx │ ├── SMESH_Meshio.cxx │ ├── SMESH_Meshio.h │ ├── SMESH_NoteBook.cxx │ ├── SMESH_NoteBook.hxx │ ├── SMESH_ParallelMesh_i.cxx │ ├── SMESH_ParallelMesh_i.hxx │ ├── SMESH_Pattern_i.cxx │ ├── SMESH_Pattern_i.hxx │ ├── SMESH_PreMeshInfo.cxx │ ├── SMESH_PreMeshInfo.hxx │ ├── SMESH_PythonDump.cxx │ ├── SMESH_PythonDump.hxx │ ├── SMESH_SequentialMesh_i.hxx │ ├── SMESH_subMesh_i.cxx │ └── SMESH_subMesh_i.hxx ├── SMESH_PY │ ├── CMakeLists.txt │ ├── __init__.py │ └── smeshstudytools.py ├── SMESH_SWIG │ ├── CMakeLists.txt │ ├── SMeshHelper.cxx │ ├── SMeshHelper.h │ ├── SMeshHelper.i │ ├── StdMeshersBuilder.py │ ├── __init__.py │ ├── mesher_launcher.py │ ├── send_files.py │ ├── smeshBuilder.py │ ├── smesh_algorithm.py │ ├── smesh_selection.py │ └── smesh_tools.py ├── SMESH_SWIG_WITHIHM │ ├── CMakeLists.txt │ ├── libSMESH_Swig.cxx │ ├── libSMESH_Swig.h │ └── libSMESH_Swig.i ├── StdMeshers.test │ ├── CMakeLists.txt │ ├── HexahedronCanonicalShapesTest.cxx │ ├── HexahedronTest.cxx │ └── tests.set ├── StdMeshers │ ├── CMakeLists.txt │ ├── SMESH_StdMeshers.hxx │ ├── StdMeshers_Adaptive1D.cxx │ ├── StdMeshers_Adaptive1D.hxx │ ├── StdMeshers_Arithmetic1D.cxx │ ├── StdMeshers_Arithmetic1D.hxx │ ├── StdMeshers_AutomaticLength.cxx │ ├── StdMeshers_AutomaticLength.hxx │ ├── StdMeshers_BlockRenumber.cxx │ ├── StdMeshers_BlockRenumber.hxx │ ├── StdMeshers_CartesianParameters3D.cxx │ ├── StdMeshers_CartesianParameters3D.hxx │ ├── StdMeshers_Cartesian_3D.cxx │ ├── StdMeshers_Cartesian_3D.hxx │ ├── StdMeshers_Cartesian_3D_Grid.cxx │ ├── StdMeshers_Cartesian_3D_Grid.hxx │ ├── StdMeshers_Cartesian_3D_Hexahedron.cxx │ ├── StdMeshers_Cartesian_3D_Hexahedron.hxx │ ├── StdMeshers_Cartesian_VL.cxx │ ├── StdMeshers_Cartesian_VL.hxx │ ├── StdMeshers_CompositeHexa_3D.cxx │ ├── StdMeshers_CompositeHexa_3D.hxx │ ├── StdMeshers_CompositeSegment_1D.cxx │ ├── StdMeshers_CompositeSegment_1D.hxx │ ├── StdMeshers_Deflection1D.cxx │ ├── StdMeshers_Deflection1D.hxx │ ├── StdMeshers_Distribution.cxx │ ├── StdMeshers_Distribution.hxx │ ├── StdMeshers_FaceSide.cxx │ ├── StdMeshers_FaceSide.hxx │ ├── StdMeshers_FixedPoints1D.cxx │ ├── StdMeshers_FixedPoints1D.hxx │ ├── StdMeshers_Geometric1D.cxx │ ├── StdMeshers_Geometric1D.hxx │ ├── StdMeshers_HexaFromSkin_3D.cxx │ ├── StdMeshers_HexaFromSkin_3D.hxx │ ├── StdMeshers_Hexa_3D.cxx │ ├── StdMeshers_Hexa_3D.hxx │ ├── StdMeshers_ImportSource.cxx │ ├── StdMeshers_ImportSource.hxx │ ├── StdMeshers_Import_1D.cxx │ ├── StdMeshers_Import_1D.hxx │ ├── StdMeshers_Import_1D2D.cxx │ ├── StdMeshers_Import_1D2D.hxx │ ├── StdMeshers_LayerDistribution.cxx │ ├── StdMeshers_LayerDistribution.hxx │ ├── StdMeshers_LayerDistribution2D.cxx │ ├── StdMeshers_LayerDistribution2D.hxx │ ├── StdMeshers_LengthFromEdges.cxx │ ├── StdMeshers_LengthFromEdges.hxx │ ├── StdMeshers_LocalLength.cxx │ ├── StdMeshers_LocalLength.hxx │ ├── StdMeshers_MaxElementArea.cxx │ ├── StdMeshers_MaxElementArea.hxx │ ├── StdMeshers_MaxElementVolume.cxx │ ├── StdMeshers_MaxElementVolume.hxx │ ├── StdMeshers_MaxLength.cxx │ ├── StdMeshers_MaxLength.hxx │ ├── StdMeshers_NotConformAllowed.cxx │ ├── StdMeshers_NotConformAllowed.hxx │ ├── StdMeshers_NumberOfLayers.cxx │ ├── StdMeshers_NumberOfLayers.hxx │ ├── StdMeshers_NumberOfLayers2D.cxx │ ├── StdMeshers_NumberOfLayers2D.hxx │ ├── StdMeshers_NumberOfSegments.cxx │ ├── StdMeshers_NumberOfSegments.hxx │ ├── StdMeshers_Penta_3D.cxx │ ├── StdMeshers_Penta_3D.hxx │ ├── StdMeshers_PolygonPerFace_2D.cxx │ ├── StdMeshers_PolygonPerFace_2D.hxx │ ├── StdMeshers_PolyhedronPerSolid_3D.cxx │ ├── StdMeshers_PolyhedronPerSolid_3D.hxx │ ├── StdMeshers_Prism_3D.cxx │ ├── StdMeshers_Prism_3D.hxx │ ├── StdMeshers_ProjectionSource1D.cxx │ ├── StdMeshers_ProjectionSource1D.hxx │ ├── StdMeshers_ProjectionSource2D.cxx │ ├── StdMeshers_ProjectionSource2D.hxx │ ├── StdMeshers_ProjectionSource3D.cxx │ ├── StdMeshers_ProjectionSource3D.hxx │ ├── StdMeshers_ProjectionUtils.cxx │ ├── StdMeshers_ProjectionUtils.hxx │ ├── StdMeshers_Projection_1D.cxx │ ├── StdMeshers_Projection_1D.hxx │ ├── StdMeshers_Projection_1D2D.cxx │ ├── StdMeshers_Projection_1D2D.hxx │ ├── StdMeshers_Projection_2D.cxx │ ├── StdMeshers_Projection_2D.hxx │ ├── StdMeshers_Projection_3D.cxx │ ├── StdMeshers_Projection_3D.hxx │ ├── StdMeshers_Propagation.cxx │ ├── StdMeshers_Propagation.hxx │ ├── StdMeshers_QuadFromMedialAxis_1D2D.cxx │ ├── StdMeshers_QuadFromMedialAxis_1D2D.hxx │ ├── StdMeshers_QuadToTriaAdaptor.cxx │ ├── StdMeshers_QuadToTriaAdaptor.hxx │ ├── StdMeshers_QuadrangleParams.cxx │ ├── StdMeshers_QuadrangleParams.hxx │ ├── StdMeshers_QuadranglePreference.cxx │ ├── StdMeshers_QuadranglePreference.hxx │ ├── StdMeshers_Quadrangle_2D.cxx │ ├── StdMeshers_Quadrangle_2D.hxx │ ├── StdMeshers_QuadraticMesh.cxx │ ├── StdMeshers_QuadraticMesh.hxx │ ├── StdMeshers_RadialPrism_3D.cxx │ ├── StdMeshers_RadialPrism_3D.hxx │ ├── StdMeshers_RadialQuadrangle_1D2D.cxx │ ├── StdMeshers_RadialQuadrangle_1D2D.hxx │ ├── StdMeshers_Regular_1D.cxx │ ├── StdMeshers_Regular_1D.hxx │ ├── StdMeshers_Reversible1D.cxx │ ├── StdMeshers_Reversible1D.hxx │ ├── StdMeshers_SegmentAroundVertex_0D.cxx │ ├── StdMeshers_SegmentAroundVertex_0D.hxx │ ├── StdMeshers_SegmentLengthAroundVertex.cxx │ ├── StdMeshers_SegmentLengthAroundVertex.hxx │ ├── StdMeshers_StartEndLength.cxx │ ├── StdMeshers_StartEndLength.hxx │ ├── StdMeshers_UseExisting_1D2D.cxx │ ├── StdMeshers_UseExisting_1D2D.hxx │ ├── StdMeshers_ViscousLayerBuilder.cxx │ ├── StdMeshers_ViscousLayerBuilder.hxx │ ├── StdMeshers_ViscousLayers.cxx │ ├── StdMeshers_ViscousLayers.hxx │ ├── StdMeshers_ViscousLayers2D.cxx │ └── StdMeshers_ViscousLayers2D.hxx ├── StdMeshersGUI │ ├── CMakeLists.txt │ ├── SMESH_StdMeshersGUI.hxx │ ├── StdMeshersGUI.cxx │ ├── StdMeshersGUI_BlockRenumberCreator.cxx │ ├── StdMeshersGUI_BlockRenumberCreator.h │ ├── StdMeshersGUI_CartesianParamCreator.cxx │ ├── StdMeshersGUI_CartesianParamCreator.h │ ├── StdMeshersGUI_DistrPreview.cxx │ ├── StdMeshersGUI_DistrPreview.h │ ├── StdMeshersGUI_DistrTable.cxx │ ├── StdMeshersGUI_DistrTable.h │ ├── StdMeshersGUI_FixedPointsParamWdg.cxx │ ├── StdMeshersGUI_FixedPointsParamWdg.h │ ├── StdMeshersGUI_LayerDistributionParamWdg.cxx │ ├── StdMeshersGUI_LayerDistributionParamWdg.h │ ├── StdMeshersGUI_NameCheckableGrpWdg.cxx │ ├── StdMeshersGUI_NameCheckableGrpWdg.h │ ├── StdMeshersGUI_NbSegmentsCreator.cxx │ ├── StdMeshersGUI_NbSegmentsCreator.h │ ├── StdMeshersGUI_ObjectReferenceParamWdg.cxx │ ├── StdMeshersGUI_ObjectReferenceParamWdg.h │ ├── StdMeshersGUI_PropagationHelperWdg.cxx │ ├── StdMeshersGUI_PropagationHelperWdg.h │ ├── StdMeshersGUI_QuadrangleParamWdg.cxx │ ├── StdMeshersGUI_QuadrangleParamWdg.h │ ├── StdMeshersGUI_RadioButtonsGrpWdg.cxx │ ├── StdMeshersGUI_RadioButtonsGrpWdg.h │ ├── StdMeshersGUI_StdHypothesisCreator.cxx │ ├── StdMeshersGUI_StdHypothesisCreator.h │ ├── StdMeshersGUI_SubShapeSelectorWdg.cxx │ ├── StdMeshersGUI_SubShapeSelectorWdg.h │ ├── StdMeshers_images.ts │ ├── StdMeshers_msg_en.ts │ ├── StdMeshers_msg_fr.ts │ └── StdMeshers_msg_ja.ts ├── StdMeshers_I │ ├── CMakeLists.txt │ ├── SMESH_StdMeshers_I.hxx │ ├── StdMeshers_Adaptive1D_i.cxx │ ├── StdMeshers_Adaptive1D_i.hxx │ ├── StdMeshers_Arithmetic1D_i.cxx │ ├── StdMeshers_Arithmetic1D_i.hxx │ ├── StdMeshers_AutomaticLength_i.cxx │ ├── StdMeshers_AutomaticLength_i.hxx │ ├── StdMeshers_BlockRenumber_i.cxx │ ├── StdMeshers_BlockRenumber_i.hxx │ ├── StdMeshers_CartesianParameters3D_i.cxx │ ├── StdMeshers_CartesianParameters3D_i.hxx │ ├── StdMeshers_Cartesian_3D_i.cxx │ ├── StdMeshers_Cartesian_3D_i.hxx │ ├── StdMeshers_CompositeSegment_1D_i.cxx │ ├── StdMeshers_CompositeSegment_1D_i.hxx │ ├── StdMeshers_Deflection1D_i.cxx │ ├── StdMeshers_Deflection1D_i.hxx │ ├── StdMeshers_FixedPoints1D_i.cxx │ ├── StdMeshers_FixedPoints1D_i.hxx │ ├── StdMeshers_Geometric1D_i.cxx │ ├── StdMeshers_Geometric1D_i.hxx │ ├── StdMeshers_Hexa_3D_i.cxx │ ├── StdMeshers_Hexa_3D_i.hxx │ ├── StdMeshers_ImportSource1D_i.cxx │ ├── StdMeshers_ImportSource1D_i.hxx │ ├── StdMeshers_ImportSource2D_i.cxx │ ├── StdMeshers_ImportSource2D_i.hxx │ ├── StdMeshers_Import_1D2D_i.cxx │ ├── StdMeshers_Import_1D2D_i.hxx │ ├── StdMeshers_Import_1D_i.cxx │ ├── StdMeshers_Import_1D_i.hxx │ ├── StdMeshers_LayerDistribution2D_i.cxx │ ├── StdMeshers_LayerDistribution2D_i.hxx │ ├── StdMeshers_LayerDistribution_i.cxx │ ├── StdMeshers_LayerDistribution_i.hxx │ ├── StdMeshers_LengthFromEdges_i.cxx │ ├── StdMeshers_LengthFromEdges_i.hxx │ ├── StdMeshers_LocalLength_i.cxx │ ├── StdMeshers_LocalLength_i.hxx │ ├── StdMeshers_MaxElementArea_i.cxx │ ├── StdMeshers_MaxElementArea_i.hxx │ ├── StdMeshers_MaxElementVolume_i.cxx │ ├── StdMeshers_MaxElementVolume_i.hxx │ ├── StdMeshers_MaxLength_i.cxx │ ├── StdMeshers_MaxLength_i.hxx │ ├── StdMeshers_NotConformAllowed_i.cxx │ ├── StdMeshers_NotConformAllowed_i.hxx │ ├── StdMeshers_NumberOfLayers2D_i.cxx │ ├── StdMeshers_NumberOfLayers2D_i.hxx │ ├── StdMeshers_NumberOfLayers_i.cxx │ ├── StdMeshers_NumberOfLayers_i.hxx │ ├── StdMeshers_NumberOfSegments_i.cxx │ ├── StdMeshers_NumberOfSegments_i.hxx │ ├── StdMeshers_ObjRefUlils.cxx │ ├── StdMeshers_ObjRefUlils.hxx │ ├── StdMeshers_PolygonPerFace_2D_i.cxx │ ├── StdMeshers_PolygonPerFace_2D_i.hxx │ ├── StdMeshers_PolyhedronPerSolid_3D_i.cxx │ ├── StdMeshers_PolyhedronPerSolid_3D_i.hxx │ ├── StdMeshers_Prism_3D_i.cxx │ ├── StdMeshers_Prism_3D_i.hxx │ ├── StdMeshers_ProjectionSource1D_i.cxx │ ├── StdMeshers_ProjectionSource1D_i.hxx │ ├── StdMeshers_ProjectionSource2D_i.cxx │ ├── StdMeshers_ProjectionSource2D_i.hxx │ ├── StdMeshers_ProjectionSource3D_i.cxx │ ├── StdMeshers_ProjectionSource3D_i.hxx │ ├── StdMeshers_Projection_1D_2D_3D_i.cxx │ ├── StdMeshers_Projection_1D_2D_3D_i.hxx │ ├── StdMeshers_Propagation_i.cxx │ ├── StdMeshers_Propagation_i.hxx │ ├── StdMeshers_QuadrangleParams_i.cxx │ ├── StdMeshers_QuadrangleParams_i.hxx │ ├── StdMeshers_QuadranglePreference_i.cxx │ ├── StdMeshers_QuadranglePreference_i.hxx │ ├── StdMeshers_Quadrangle_2D_i.cxx │ ├── StdMeshers_Quadrangle_2D_i.hxx │ ├── StdMeshers_QuadraticMesh_i.cxx │ ├── StdMeshers_QuadraticMesh_i.hxx │ ├── StdMeshers_RadialQuadrangle_1D2D_i.cxx │ ├── StdMeshers_RadialQuadrangle_1D2D_i.hxx │ ├── StdMeshers_Regular_1D_i.cxx │ ├── StdMeshers_Regular_1D_i.hxx │ ├── StdMeshers_Reversible1D_i.cxx │ ├── StdMeshers_Reversible1D_i.hxx │ ├── StdMeshers_SegmentAroundVertex_0D_i.cxx │ ├── StdMeshers_SegmentAroundVertex_0D_i.hxx │ ├── StdMeshers_SegmentLengthAroundVertex_i.cxx │ ├── StdMeshers_SegmentLengthAroundVertex_i.hxx │ ├── StdMeshers_StartEndLength_i.cxx │ ├── StdMeshers_StartEndLength_i.hxx │ ├── StdMeshers_UseExisting_1D2D_i.cxx │ ├── StdMeshers_UseExisting_1D2D_i.hxx │ ├── StdMeshers_ViscousLayerBuilder_i.cxx │ ├── StdMeshers_ViscousLayerBuilder_i.hxx │ ├── StdMeshers_ViscousLayers2D_i.cxx │ ├── StdMeshers_ViscousLayers2D_i.hxx │ ├── StdMeshers_ViscousLayers_i.cxx │ ├── StdMeshers_ViscousLayers_i.hxx │ └── StdMeshers_i.cxx └── Tools │ ├── CMakeLists.txt │ ├── MGCleanerPlug │ ├── CMakeLists.txt │ ├── MGCleanerMonPlugDialog.py │ ├── MGCleanerMonViewText.py │ ├── MGCleanerPlugDialog.ui │ ├── MGCleanerViewText.ui │ ├── MGCleanerplug_plugin.py │ ├── Tolerance.png │ ├── doc │ │ ├── Advanced_params.rst │ │ ├── CMakeLists.txt │ │ ├── Generics_params.rst │ │ ├── Mandatory_params.rst │ │ ├── conf.py.in │ │ ├── editHypo.rst │ │ ├── images │ │ │ ├── Advanced.png │ │ │ ├── AppelMGCleaner.png │ │ │ ├── Generic.png │ │ │ ├── Simple.png │ │ │ └── Tolerance.png │ │ ├── index.rst │ │ └── lct.rst │ ├── open.png │ └── select1.png │ ├── MacMesh │ ├── CMakeLists.txt │ ├── Doc │ │ ├── MacMesh.v.10avr.pdf │ │ ├── index.html.in │ │ └── snap.jpg │ ├── Example │ │ └── PressureValve.py.in │ └── MacMesh │ │ ├── Alarms.py │ │ ├── CentralUnrefine.py │ │ ├── CompositeBox.py │ │ ├── CompositeBoxF.py │ │ ├── Config.py │ │ ├── CutnGroup.py │ │ ├── Cylinder.py │ │ ├── GenFunctions.py │ │ ├── MacObject.py │ │ ├── PublishGroups.py │ │ └── SharpAngle.py │ ├── MeshCut │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── MeshCutDialog.ui │ ├── MeshCut_Carre.cxx │ ├── MeshCut_Carre.hxx │ ├── MeshCut_Cas.cxx │ ├── MeshCut_Cas.hxx │ ├── MeshCut_Cube.cxx │ ├── MeshCut_Cube.hxx │ ├── MeshCut_DC.cxx │ ├── MeshCut_Fonctions.cxx │ ├── MeshCut_Fonctions.hxx │ ├── MeshCut_Globals.hxx │ ├── MeshCut_Maillage.cxx │ ├── MeshCut_Maillage.hxx │ ├── MeshCut_Utils.cxx │ ├── MeshCut_Utils.hxx │ ├── README │ └── meshcut_plugin.py │ ├── TopIIVolMeshPlug │ ├── CMakeLists.txt │ ├── README │ ├── TopIIVolMeshMonitor.py │ ├── TopIIVolMeshMonitor.ui │ ├── TopIIVolMeshPlugin.py │ ├── TopIIVolMeshPluginDialog.py │ ├── TopIIVolMeshPluginDialog.ui │ ├── TopIIVolMeshPlugin_plugin.py │ └── doc │ │ ├── CMakeLists.txt │ │ ├── TopIIVolMesh.rst │ │ ├── conf.py.in │ │ ├── images │ │ └── callTopIIVolMesh.png │ │ └── index.rst │ ├── Verima │ ├── Base │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── dataBase.py │ │ ├── exportToCSV.py │ │ ├── importFromCSV.py │ │ ├── tableDeBase.py │ │ ├── tableGroupeRatios.py │ │ ├── tableGroupeTailles.py │ │ ├── tableGroupes.py │ │ ├── tableGroupesRef.py │ │ ├── tableMachines.py │ │ ├── tableMaillages.py │ │ ├── tableMailles.py │ │ ├── tableMailleurs.py │ │ ├── tablePerfs.py │ │ ├── tableRatios.py │ │ ├── tableTailles.py │ │ ├── tableVersions.py │ │ └── versions.py │ ├── CMakeLists.txt │ ├── CreeDocuments │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── jobHtml.py │ │ └── templatesHtml │ │ │ ├── CMakeLists.txt │ │ │ ├── entete.html │ │ │ ├── groupeRatio.html │ │ │ ├── groupeTaille.html │ │ │ ├── job.html │ │ │ ├── ligne.html │ │ │ ├── maillageEntete.html │ │ │ ├── sansGroupe.html │ │ │ ├── tableau.html │ │ │ └── tableauFin.html │ ├── Doc │ │ ├── CMakeLists.txt │ │ ├── conf.py.in │ │ ├── images │ │ │ ├── bd.png │ │ │ ├── oldbd.png │ │ │ └── visualisation.png │ │ ├── index.rst │ │ ├── makefile │ │ ├── presentation_base.rst │ │ └── usage_outil.rst │ ├── Gui │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── desFenetreChoix.py │ │ ├── desFenetreChoix.ui │ │ ├── desStat.ui │ │ ├── maFenetreChoix.py │ │ ├── makefile │ │ ├── monEditor.py │ │ ├── monNomBase.py │ │ ├── myMain.py │ │ ├── myMain.ui │ │ ├── myMainTotale.ui │ │ ├── nomBase.py │ │ ├── nomBase.ui │ │ ├── tousLesJobs.ui │ │ └── visualiseDatabase.py │ ├── Stats │ │ ├── CMakeLists.txt │ │ ├── Type_Maille.py │ │ ├── __init__.py │ │ ├── getCritere.py │ │ ├── getStats.py │ │ ├── job.py │ │ ├── ref.py │ │ └── utiles.py │ ├── __init__.py │ ├── ajoutEnreg.py │ ├── compareVersions.py │ ├── createDatabase.py │ ├── lance.py │ ├── makefile │ └── passeJobs.py │ ├── YamsPlug │ ├── CMakeLists.txt │ ├── Tolerance.png │ ├── ViewText.ui │ ├── YamsPlugDialog.ui │ ├── doc │ │ ├── Advanced_params.rst │ │ ├── CMakeLists.txt │ │ ├── Generics_params.rst │ │ ├── Mandatory_params.rst │ │ ├── conf.py.in │ │ ├── editHypo.rst │ │ ├── files │ │ │ └── YamsWhitePaper_3.2.pdf │ │ ├── images │ │ │ ├── Advanced.png │ │ │ ├── AppelYams.png │ │ │ ├── Generic.png │ │ │ ├── Simple.png │ │ │ └── Tolerance.png │ │ ├── index.rst │ │ └── lct.rst │ ├── monViewText.py │ ├── monYamsPlugDialog.py │ ├── open.png │ ├── select1.png │ └── yamsplug_plugin.py │ ├── ZCracksPlug │ ├── CMakeLists.txt │ ├── Zset.py │ ├── __init__.py │ ├── casTests │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── genereCube.py │ │ ├── launchCas.py │ │ └── launchManuel.py │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── conf.py.in │ │ ├── files │ │ │ └── zcracks.pdf │ │ └── index.rst │ ├── ellipse.py │ ├── genereCrack.py │ ├── images.qrc │ ├── images │ │ ├── Rectangle.svg │ │ ├── Sphere.svg │ │ ├── big_loader.gif │ │ ├── schema_ellipse.png │ │ ├── schema_rectangle.png │ │ └── schema_shpere.png │ ├── main.py │ ├── output.py │ ├── readme.sh │ ├── rectangle.py │ ├── sphere.py │ ├── utilityFunctions.py │ ├── zcracks.js │ ├── zcracks.pro │ ├── zcracks.pro.user │ ├── zcracks.ui │ ├── zcracksLaunch.py │ └── zcracks_plugin.py │ ├── blocFissure │ ├── AREextradosLauncher.py │ ├── AREintradosLauncher.py │ ├── CMakeLists.txt │ ├── CasTests │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── blocFissureTest.py │ │ ├── cubeAngle.py │ │ ├── cubeAngle_2.py │ │ ├── cubeCoin.py │ │ ├── cubeMilieu.py │ │ ├── cubeTransverse.py │ │ ├── cylindre.py │ │ ├── cylindre_2.py │ │ ├── disquePerce.py │ │ ├── ellipse_1.py │ │ ├── ellipse_2.py │ │ ├── eprouvetteCourbe.py │ │ ├── eprouvetteDroite.py │ │ ├── eprouvetteDroite_2.py │ │ ├── faceGauche.py │ │ ├── faceGauche_2.py │ │ ├── fissureCoude_1.py │ │ ├── fissureCoude_10.py │ │ ├── fissureCoude_2.py │ │ ├── fissureCoude_3.py │ │ ├── fissureCoude_4.py │ │ ├── fissureCoude_5.py │ │ ├── fissureCoude_6.py │ │ ├── fissureCoude_7.py │ │ ├── fissureCoude_8.py │ │ ├── fissureCoude_9.py │ │ ├── fissure_Coude.py │ │ ├── fissure_Coude_4.py │ │ ├── tube.py │ │ └── vis_1.py │ ├── README │ ├── __init__.py │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── conf.py.in │ │ ├── faq.rst │ │ ├── gui.rst │ │ ├── images │ │ │ ├── 01_CubeAngle.png │ │ │ ├── 01_CubeAngle_a.png │ │ │ ├── 02_CubeAngle_2.png │ │ │ ├── 02_CubeAngle_2_a.png │ │ │ ├── 03_cylindre.png │ │ │ ├── 03_cylindre_a.png │ │ │ ├── 04_cylindre_2.png │ │ │ ├── 04_cylindre_2_a.png │ │ │ ├── 05_disque.png │ │ │ ├── 05_disque_a.png │ │ │ ├── 06_ellipse_1.png │ │ │ ├── 06_ellipse_1_a.png │ │ │ ├── 07_ellipse_2.png │ │ │ ├── 07_ellipse_2_a.png │ │ │ ├── 08_eprouvetteCourbe.png │ │ │ ├── 08_eprouvetteCourbe_a.png │ │ │ ├── 09_eprouvetteDroite.png │ │ │ ├── 09_eprouvetteDroite_a.png │ │ │ ├── 10_eprouvetteDroite_2.png │ │ │ ├── 10_eprouvetteDroite_2_a.png │ │ │ ├── 11_faceGauche.png │ │ │ ├── 11_faceGauche_2.png │ │ │ ├── 12_faceGauche_2.png │ │ │ ├── 12_faceGauche_2_a.png │ │ │ ├── 13_vis_1.png │ │ │ ├── 13_vis_1_2.png │ │ │ ├── BF_GUI_capture.png │ │ │ ├── Capture_GUI_pipes.png │ │ │ ├── Capture_GUI_pipes_2.png │ │ │ ├── GUI_BG.png │ │ │ ├── coude_0.png │ │ │ ├── coude_0_2.png │ │ │ ├── coude_3.png │ │ │ ├── general_princ_a.png │ │ │ ├── general_princ_b.png │ │ │ ├── general_princ_c.png │ │ │ ├── general_princ_d.png │ │ │ ├── general_princ_e.png │ │ │ ├── general_princ_f.png │ │ │ ├── general_princ_g.png │ │ │ ├── general_princ_h.png │ │ │ ├── general_princ_i.png │ │ │ ├── general_princ_j.png │ │ │ ├── general_princ_j_old.png │ │ │ ├── general_princ_k.png │ │ │ ├── general_princ_k_old.png │ │ │ ├── intro.png │ │ │ ├── longueur_influence.png │ │ │ ├── parametres.png │ │ │ ├── parametres_GUI.png │ │ │ ├── recom_groupe_apres.png │ │ │ ├── recom_groupe_avant.png │ │ │ ├── recom_interface_apres.png │ │ │ ├── recom_interface_avant.png │ │ │ ├── schema_fis_ext2.png │ │ │ ├── schema_fissure.png │ │ │ ├── schema_lignes1.png │ │ │ ├── schema_tube_sain.png │ │ │ ├── tutorial_1.png │ │ │ ├── tutorial_2.png │ │ │ ├── tutorial_3.png │ │ │ └── tutorial_4.png │ │ ├── index.rst │ │ ├── introduction.rst │ │ ├── pipes.rst │ │ ├── principles.rst │ │ ├── scripts.rst │ │ ├── testcases.rst │ │ ├── tutorials.rst │ │ └── use.rst │ ├── exemple.py │ ├── exemple2.py │ ├── fissureLauncher.py │ ├── gmu │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── ajustePointsEdgePipeFissure.py │ │ ├── blocDefaut.py │ │ ├── calculePointsAxiauxPipe.py │ │ ├── calculePointsAxiauxPipe_a.py │ │ ├── calculePointsAxiauxPipe_b.py │ │ ├── calculePointsAxiauxPipe_c.py │ │ ├── casStandard.py │ │ ├── checkDecoupePartition.py │ │ ├── commonSubShapes.py │ │ ├── compoundFromList.py │ │ ├── construitEdgesRadialesDebouchantes.py │ │ ├── construitEdgesRadialesDebouchantes_a.py │ │ ├── construitEdgesRadialesDebouchantes_b.py │ │ ├── construitEdgesRadialesDebouchantes_c.py │ │ ├── construitFissureGenerale.py │ │ ├── construitFissureGenerale_a.py │ │ ├── construitFissureGenerale_b.py │ │ ├── construitFissureGenerale_c.py │ │ ├── construitMaillagePipe.py │ │ ├── construitMaillagePipe_a.py │ │ ├── construitMaillagePipe_b.py │ │ ├── construitMaillagePipe_c.py │ │ ├── construitMaillagePipe_d.py │ │ ├── construitPartitionsPeauFissure.py │ │ ├── creePointsPipePeau.py │ │ ├── creeZoneDefautDansObjetSain.py │ │ ├── creeZoneDefautFilling.py │ │ ├── creeZoneDefautGeom.py │ │ ├── creeZoneDefautMaillage.py │ │ ├── distance2.py │ │ ├── eliminateDoubles.py │ │ ├── elimineExtremitesPipe.py │ │ ├── ellipsoideDefaut.py │ │ ├── enleveDefaut.py │ │ ├── extractionOrientee.py │ │ ├── extractionOrienteeMulti.py │ │ ├── extractionOrientee_a.py │ │ ├── facesCirculaires.py │ │ ├── facesFissure.py │ │ ├── facesToreInBloc.py │ │ ├── facesVolumesToriques.py │ │ ├── findWireEndVertices.py │ │ ├── findWireIntermediateVertices.py │ │ ├── findWireVertices.py │ │ ├── fissError.py │ │ ├── fissureCoude.py │ │ ├── fissureGenerique.py │ │ ├── fusionMaillageAttributionDefaut.py │ │ ├── genereElemsFissureElliptique.py │ │ ├── genereMeshCalculZoneDefaut.py │ │ ├── geomsmesh.py │ │ ├── getCentreFondFiss.py │ │ ├── getStatsMaillageFissure.py │ │ ├── getSubshapeIds.py │ │ ├── identifieEdgesPeau.py │ │ ├── identifieEdgesPeau_a.py │ │ ├── identifieEdgesPeau_b.py │ │ ├── identifieEdgesPeau_c.py │ │ ├── identifieElementsDebouchants.py │ │ ├── identifieElementsDebouchants_a.py │ │ ├── identifieElementsDebouchants_b.py │ │ ├── identifieElementsDebouchants_c.py │ │ ├── identifieElementsDebouchants_d.py │ │ ├── identifieElementsFissure.py │ │ ├── identifieElementsGeometriquesPeau.py │ │ ├── identifieFacesEdgesFissureExterne.py │ │ ├── identifieFacesPeau.py │ │ ├── initEtude.py │ │ ├── initLog.py │ │ ├── insereFissureElliptique.py │ │ ├── insereFissureLongue.py │ │ ├── insereFissureLongue_a.py │ │ ├── insereFissureLongue_b.py │ │ ├── insereFissureLongue_c.py │ │ ├── insereFissureLongue_d.py │ │ ├── insereFissureLongue_e.py │ │ ├── insereFissureLongue_f.py │ │ ├── insereFissureLongue_g.py │ │ ├── listOfExtraFunctions.py │ │ ├── mailleAretesEtJonction.py │ │ ├── mailleFacesFissure.py │ │ ├── mailleFacesPeau.py │ │ ├── meshBlocPart.py │ │ ├── orderEdgesFromWire.py │ │ ├── partitionBlocDefaut.py │ │ ├── partitionVolumeSain.py │ │ ├── partitionneFissureParPipe.py │ │ ├── peauInterne.py │ │ ├── produitMixte.py │ │ ├── projettePointSurCourbe.py │ │ ├── prolongeVertices.py │ │ ├── prolongeWire.py │ │ ├── propagateTore.py │ │ ├── putName.py │ │ ├── quadranglesToShape.py │ │ ├── quadranglesToShapeNoCorner.py │ │ ├── quadranglesToShapeWithCorner.py │ │ ├── regroupeSainEtDefaut.py │ │ ├── restreintFaceFissure.py │ │ ├── rotTrans.py │ │ ├── shapeSurFissure.py │ │ ├── shapesSurFissure.py │ │ ├── sortEdges.py │ │ ├── sortFaces.py │ │ ├── sortGeneratrices.py │ │ ├── sortSolids.py │ │ ├── substractSubShapes.py │ │ ├── toreFissure.py │ │ ├── triedreBase.py │ │ ├── trouveEdgesFissPeau.py │ │ ├── whichSide.py │ │ ├── whichSideMulti.py │ │ └── whichSideVertex.py │ ├── ihm │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── dialogFissureCoude.dic │ │ ├── fissureCoude.ui │ │ ├── fissureCoude_ihm.py │ │ ├── fissureCoude_plugin.py │ │ ├── fissureGenerale.ui │ │ └── fissureGenerale_plugin.py │ ├── lanceurSoudureArrondieTest.py │ ├── lanceurSoudureViveTest.py │ ├── lanceurTestAubry.py │ └── materielCasTests │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── cubeAngle.py │ │ ├── cubeFin.py │ │ ├── decoupeCylindre.py │ │ ├── disquePerce.py │ │ ├── ellipse.py │ │ ├── ellipse_disque.py │ │ ├── ellipse_probleme.py │ │ ├── eprouvetteCourbe.py │ │ ├── eprouvetteDroite.py │ │ ├── fissureGauche.py │ │ ├── fissureGauche_2.py │ │ ├── genereMateriel.py │ │ ├── tube.py │ │ └── vis.py │ ├── padder │ ├── CMakeLists.txt │ ├── README.txt │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── doxyfile.in │ │ ├── images │ │ │ ├── head.png │ │ │ ├── padder_curvedgeom.png │ │ │ ├── padder_error_noconnection.png │ │ │ ├── padder_error_noresource.png │ │ │ ├── padder_image01.png │ │ │ ├── padder_image02.png │ │ │ ├── padder_image02bis.png │ │ │ ├── padder_image03.png │ │ │ ├── padder_image04.png │ │ │ ├── padder_image05.png │ │ │ ├── padder_image06.png │ │ │ ├── padder_image07.png │ │ │ ├── padder_image08.png │ │ │ ├── padder_image09.png │ │ │ ├── padder_image10.png │ │ │ ├── padder_image11.png │ │ │ ├── padder_image12.png │ │ │ ├── padder_image13.png │ │ │ └── padder_sphererendering.png │ │ ├── input │ │ │ └── padder_userguide.doc │ │ └── static │ │ │ ├── footer.html │ │ │ ├── header.html.in │ │ │ └── salome_extra.css │ ├── meshjob │ │ ├── CMakeLists.txt │ │ ├── idl │ │ │ ├── CMakeLists.txt │ │ │ ├── MESHJOB.idl │ │ │ └── SPADDERPluginTest.idl │ │ └── impl │ │ │ ├── CMakeLists.txt │ │ │ ├── MeshJobManager_i.cxx │ │ │ ├── MeshJobManager_i.hxx │ │ │ ├── SMeshPadderHelper.cxx │ │ │ ├── SMeshPadderHelper.h │ │ │ ├── SMeshPadderHelper.i │ │ │ ├── SPADDERPluginTester_i.cxx │ │ │ ├── SPADDERPluginTester_i.hxx │ │ │ └── testhelper.hxx │ ├── resources │ │ ├── CMakeLists.txt │ │ ├── SPADDERCatalog.xml │ │ ├── appligen │ │ │ ├── CatalogResources.xml │ │ │ ├── README.txt │ │ │ ├── SalomeApp.xml │ │ │ └── appli-splashscreen.jpg │ │ └── testdata │ │ │ ├── buildparticules.py │ │ │ ├── concrete.med │ │ │ ├── ferraill.med │ │ │ ├── particules.png │ │ │ └── teststudy.hdf │ ├── spadderpy │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── configreader.py │ │ ├── gui │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── addinput.png │ │ │ ├── clear.png │ │ │ ├── compute.png │ │ │ ├── concrete.png │ │ │ ├── deleteinput.png │ │ │ ├── input.png │ │ │ ├── inputdata.py │ │ │ ├── inputdialog.py │ │ │ ├── inputframe.ui │ │ │ ├── parameters.png │ │ │ ├── plugindialog.py │ │ │ ├── plugindialog.ui │ │ │ ├── publish.png │ │ │ ├── refresh.png │ │ │ ├── select.png │ │ │ └── steelbar.png │ │ ├── padder.cfg.in │ │ └── plugin │ │ │ ├── CMakeLists.txt │ │ │ ├── envPlugins.sh.in │ │ │ └── spadderPlugin.py │ └── unittests │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── autotest.sh.in │ │ ├── usecase_meshJobManager.py │ │ └── usecase_spadderPluginTester.py │ └── smesh_plugins.py └── test ├── 0README ├── CMakeLists.txt ├── CTestTestfileInstall.cmake ├── MGAdaptTests_without_session.py ├── PAL_MESH_041_mesh.py ├── PAL_MESH_043_2D.py ├── PAL_MESH_043_3D.py ├── SMESH_AdvancedEditor.py ├── SMESH_BelongToGeom.py ├── SMESH_BuildCompound.py ├── SMESH_GroupFromGeom.py ├── SMESH_GroupFromGeom2.py ├── SMESH_GroupLyingOnGeom.py ├── SMESH_MailReader.py ├── SMESH_MeshioFiles.py ├── SMESH_MeshioShapes.py ├── SMESH_Nut.py ├── SMESH_Partition1_tetra.py ├── SMESH_RegularGridTest.cxx ├── SMESH_Sphere.py ├── SMESH_algo_switch_box.py ├── SMESH_algo_switch_face.py ├── SMESH_beta_law.py ├── SMESH_blocks.py ├── SMESH_box.py ├── SMESH_box2_tetra.py ├── SMESH_box3_tetra.py ├── SMESH_box_tetra.py ├── SMESH_controls.py ├── SMESH_controls_3D_warping.py ├── SMESH_controls_scaled_jacobian.py ├── SMESH_create_dual_mesh_adapt.py ├── SMESH_create_dual_mesh_tpipe.py ├── SMESH_demo_hexa2_upd.py ├── SMESH_fixation.py ├── SMESH_fixation_hexa.py ├── SMESH_fixation_netgen.py ├── SMESH_fixation_tetra.py ├── SMESH_flight_skin.py ├── SMESH_freebord.py ├── SMESH_hexaedre.py ├── SMESH_mechanic.py ├── SMESH_mechanic_editor.py ├── SMESH_mechanic_netgen.py ├── SMESH_mechanic_tetra.py ├── SMESH_reg.py ├── SMESH_test.py ├── SMESH_test0.py ├── SMESH_test1.py ├── SMESH_test1_AndDisplay.py ├── SMESH_test2.py ├── SMESH_test3.py ├── SMESH_test4.py ├── SMESH_test5.py ├── basic_geom_smesh_without_session.py ├── basic_shaper_smesh_without_session.py ├── basic_smesh_output_with_mc_field.py ├── blocFissure_01_without_session.py ├── blocFissure_02_without_session.py ├── blocFissure_03_without_session.py ├── blocFissure_04_without_session.py ├── blocFissure_05_without_session.py ├── blocFissure_06_without_session.py ├── blocFissure_07_without_session.py ├── body_fitting_quanta_sphere.py ├── body_fitting_viscous_layer_cylinder.py ├── body_fitting_viscous_layer_tpipe.py ├── create_penta_biquad.py ├── data ├── HexahedronTest │ ├── NRTM1.brep │ └── NRTMJ4.brep ├── Mesh_tri.med └── meshio_meshes │ ├── abaqus │ ├── README.md │ ├── UUea.inp │ ├── element_elset.inp │ ├── nle1xf3c.inp │ ├── wInclude_bulk.inp │ └── wInclude_main.inp │ ├── flac3d │ ├── flac3d_mesh_ex.f3grid │ └── flac3d_mesh_ex_bin.f3grid │ ├── med │ ├── README.md │ ├── box.med │ └── cylinder.med │ ├── medit │ ├── cube86.mesh │ ├── hch_strct.4.be.meshb │ ├── hch_strct.4.meshb │ └── sphere_mixed.1.meshb │ ├── msh │ ├── Makefile │ ├── README.md │ ├── insulated-2.2.msh │ └── insulated-4.1.msh │ ├── nastran │ ├── README.md │ ├── cylinder.fem │ └── cylinder_cells_first.fem │ ├── netgen │ ├── periodic_1d.vol │ ├── periodic_2d.vol │ └── periodic_3d.vol │ ├── neuroglancer │ └── simple1 │ ├── obj │ └── elephav.obj │ ├── ply │ ├── bun_zipper_res4.ply │ └── tet.ply │ ├── su2 │ ├── README.md │ ├── mixgrid.su2 │ └── square.su2 │ ├── tecplot │ ├── quad_zone_comma.tec │ ├── quad_zone_multivar.tec │ └── quad_zone_space.tec │ ├── tetgen │ ├── mesh.ele │ └── mesh.node │ ├── ugrid │ ├── hch_strct.4.lb8.ugrid │ ├── pyra_cube.ugrid │ └── sphere_mixed.1.lb8.ugrid │ ├── vtk │ ├── 00_image.vtk │ ├── 01_image.vtk │ ├── 02_structured.vtk │ ├── 03_rectilinear.vtk │ ├── 04_rectilinear.vtk │ ├── 05_rectilinear.vtk │ ├── 06_color_scalars.vtk │ ├── 06_unstructured.vtk │ ├── gh-935.vtk │ └── rbc_001.vtk │ ├── vtu │ ├── 00_raw_binary.vtu │ ├── 01_raw_binary_int64.vtu │ └── 02_raw_compressed.vtu │ └── wkt │ ├── simple.wkt │ └── whitespaced.wkt ├── doublenodes_polyhedra.py ├── ex00_all.py ├── ex01_cube2build.py ├── ex02_cube2primitive.py ├── ex03_cube2partition.py ├── ex04_cube5tetraHexa.py ├── ex05_hole1build.py ├── ex06_hole1boolean.py ├── ex07_hole1partition.py ├── ex08_hole2build.py ├── ex09_grid4build.py ├── ex10_grid4geometry.py ├── ex11_grid3partition.py ├── ex12_grid17partition.py ├── ex13_hole1partial.py ├── ex14_cyl1holed.py ├── ex15_cyl2geometry.py ├── ex16_cyl2complementary.py ├── ex17_dome1.py ├── ex18_dome2.py ├── ex19_sphereINcube.py ├── ex21_lamp.py ├── ex24_cylinder.py ├── ex29_refine.py ├── ex30_groupsOp.py ├── ex31_dimGroup.py ├── ex_MakePolyLine.py ├── extrusion_penta_biquad.py ├── gmsh_runner.py ├── netgen_runner.py ├── netgen_runner_1D2D3D.py ├── netgen_runner_2D.py ├── shaper_smesh_groups_without_session.py ├── split_overconstrained_box.py ├── ssl_hdf5_symbols_conflicts.py ├── test_helper.py ├── test_import_1D2D_with_tetras_and_pyras.py ├── test_polyhedron_per_solid.py ├── test_smeshplugins.py ├── test_vlapi_growthlayer.py ├── test_vlapi_shrinkgeometry.py ├── test_volume_criteria.py └── tests.set /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/COPYING -------------------------------------------------------------------------------- /CTestTestfileInstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/CTestTestfileInstall.cmake.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/README -------------------------------------------------------------------------------- /SMESH_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/SMESH_version.h.in -------------------------------------------------------------------------------- /SalomeSMESHConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/SalomeSMESHConfig.cmake.in -------------------------------------------------------------------------------- /adm_local/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/adm_local/CMakeLists.txt -------------------------------------------------------------------------------- /adm_local/unix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/adm_local/unix/CMakeLists.txt -------------------------------------------------------------------------------- /bin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/bin/CMakeLists.txt -------------------------------------------------------------------------------- /bin/VERSION.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/bin/VERSION.in -------------------------------------------------------------------------------- /bin/smesh_setenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/bin/smesh_setenv.py -------------------------------------------------------------------------------- /bin/smesh_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/bin/smesh_test.py -------------------------------------------------------------------------------- /bin/smesh_wget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/bin/smesh_wget.py -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/examples/0README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/0README -------------------------------------------------------------------------------- /doc/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/CMakeLists.txt -------------------------------------------------------------------------------- /doc/examples/cartesian_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/cartesian_algo.py -------------------------------------------------------------------------------- /doc/examples/create_dual_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/create_dual_mesh.py -------------------------------------------------------------------------------- /doc/examples/data/test_01.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/test_01.med -------------------------------------------------------------------------------- /doc/examples/data/test_02.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/test_02.med -------------------------------------------------------------------------------- /doc/examples/data/test_02_bg.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/test_02_bg.med -------------------------------------------------------------------------------- /doc/examples/data/test_04.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/test_04.med -------------------------------------------------------------------------------- /doc/examples/data/test_06.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/test_06.med -------------------------------------------------------------------------------- /doc/examples/data/test_07.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/test_07.med -------------------------------------------------------------------------------- /doc/examples/data/test_08.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/test_08.med -------------------------------------------------------------------------------- /doc/examples/data/test_08_bg.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/test_08_bg.med -------------------------------------------------------------------------------- /doc/examples/data/test_10.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/test_10.med -------------------------------------------------------------------------------- /doc/examples/data/test_11.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/test_11.med -------------------------------------------------------------------------------- /doc/examples/data/test_13.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/test_13.med -------------------------------------------------------------------------------- /doc/examples/data/tutorial_4.xao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/data/tutorial_4.xao -------------------------------------------------------------------------------- /doc/examples/filters_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex01.py -------------------------------------------------------------------------------- /doc/examples/filters_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex02.py -------------------------------------------------------------------------------- /doc/examples/filters_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex03.py -------------------------------------------------------------------------------- /doc/examples/filters_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex04.py -------------------------------------------------------------------------------- /doc/examples/filters_ex05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex05.py -------------------------------------------------------------------------------- /doc/examples/filters_ex06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex06.py -------------------------------------------------------------------------------- /doc/examples/filters_ex07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex07.py -------------------------------------------------------------------------------- /doc/examples/filters_ex08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex08.py -------------------------------------------------------------------------------- /doc/examples/filters_ex09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex09.py -------------------------------------------------------------------------------- /doc/examples/filters_ex10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex10.py -------------------------------------------------------------------------------- /doc/examples/filters_ex11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex11.py -------------------------------------------------------------------------------- /doc/examples/filters_ex12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex12.py -------------------------------------------------------------------------------- /doc/examples/filters_ex13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex13.py -------------------------------------------------------------------------------- /doc/examples/filters_ex14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex14.py -------------------------------------------------------------------------------- /doc/examples/filters_ex15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex15.py -------------------------------------------------------------------------------- /doc/examples/filters_ex16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex16.py -------------------------------------------------------------------------------- /doc/examples/filters_ex17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex17.py -------------------------------------------------------------------------------- /doc/examples/filters_ex18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex18.py -------------------------------------------------------------------------------- /doc/examples/filters_ex19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex19.py -------------------------------------------------------------------------------- /doc/examples/filters_ex20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex20.py -------------------------------------------------------------------------------- /doc/examples/filters_ex21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex21.py -------------------------------------------------------------------------------- /doc/examples/filters_ex22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex22.py -------------------------------------------------------------------------------- /doc/examples/filters_ex23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex23.py -------------------------------------------------------------------------------- /doc/examples/filters_ex24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex24.py -------------------------------------------------------------------------------- /doc/examples/filters_ex25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex25.py -------------------------------------------------------------------------------- /doc/examples/filters_ex26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex26.py -------------------------------------------------------------------------------- /doc/examples/filters_ex27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex27.py -------------------------------------------------------------------------------- /doc/examples/filters_ex28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex28.py -------------------------------------------------------------------------------- /doc/examples/filters_ex29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex29.py -------------------------------------------------------------------------------- /doc/examples/filters_ex30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex30.py -------------------------------------------------------------------------------- /doc/examples/filters_ex31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex31.py -------------------------------------------------------------------------------- /doc/examples/filters_ex32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex32.py -------------------------------------------------------------------------------- /doc/examples/filters_ex33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex33.py -------------------------------------------------------------------------------- /doc/examples/filters_ex34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex34.py -------------------------------------------------------------------------------- /doc/examples/filters_ex35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex35.py -------------------------------------------------------------------------------- /doc/examples/filters_ex36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex36.py -------------------------------------------------------------------------------- /doc/examples/filters_ex37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex37.py -------------------------------------------------------------------------------- /doc/examples/filters_ex38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex38.py -------------------------------------------------------------------------------- /doc/examples/filters_ex39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex39.py -------------------------------------------------------------------------------- /doc/examples/filters_ex40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex40.py -------------------------------------------------------------------------------- /doc/examples/filters_ex41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/filters_ex41.py -------------------------------------------------------------------------------- /doc/examples/measurements_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/measurements_ex01.py -------------------------------------------------------------------------------- /doc/examples/measurements_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/measurements_ex02.py -------------------------------------------------------------------------------- /doc/examples/measurements_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/measurements_ex03.py -------------------------------------------------------------------------------- /doc/examples/measurements_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/measurements_ex04.py -------------------------------------------------------------------------------- /doc/examples/mechanic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/mechanic.py -------------------------------------------------------------------------------- /doc/examples/mesh_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/mesh_3d.py -------------------------------------------------------------------------------- /doc/examples/notebook_smesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/notebook_smesh.py -------------------------------------------------------------------------------- /doc/examples/prism_3d_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/prism_3d_algo.py -------------------------------------------------------------------------------- /doc/examples/split_biquad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/split_biquad.py -------------------------------------------------------------------------------- /doc/examples/test_homard_adapt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/test_homard_adapt.py -------------------------------------------------------------------------------- /doc/examples/tests.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/examples/tests.set -------------------------------------------------------------------------------- /doc/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/CMakeLists.txt -------------------------------------------------------------------------------- /doc/gui/collect_mesh_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/collect_mesh_methods.py -------------------------------------------------------------------------------- /doc/gui/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/conf.py.in -------------------------------------------------------------------------------- /doc/gui/images/2d_from_3d_dlg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/2d_from_3d_dlg.png -------------------------------------------------------------------------------- /doc/gui/images/2d_from_3d_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/2d_from_3d_ico.png -------------------------------------------------------------------------------- /doc/gui/images/a-arithmetic1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-arithmetic1d.png -------------------------------------------------------------------------------- /doc/gui/images/a-clipping2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-clipping2.png -------------------------------------------------------------------------------- /doc/gui/images/a-creategroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-creategroup.png -------------------------------------------------------------------------------- /doc/gui/images/a-deflection1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-deflection1d.png -------------------------------------------------------------------------------- /doc/gui/images/a-geometric1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-geometric1d.png -------------------------------------------------------------------------------- /doc/gui/images/a-maxelarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-maxelarea.png -------------------------------------------------------------------------------- /doc/gui/images/a-maxelvolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-maxelvolume.png -------------------------------------------------------------------------------- /doc/gui/images/a-maxsize1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-maxsize1d.png -------------------------------------------------------------------------------- /doc/gui/images/a-nbsegments1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-nbsegments1.png -------------------------------------------------------------------------------- /doc/gui/images/a-nbsegments2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-nbsegments2.png -------------------------------------------------------------------------------- /doc/gui/images/a-patterntype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-patterntype.png -------------------------------------------------------------------------------- /doc/gui/images/a-patterntype1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-patterntype1.png -------------------------------------------------------------------------------- /doc/gui/images/a-transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/a-transparency.png -------------------------------------------------------------------------------- /doc/gui/images/adaptive1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/adaptive1d.png -------------------------------------------------------------------------------- /doc/gui/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/add.gif -------------------------------------------------------------------------------- /doc/gui/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/add.png -------------------------------------------------------------------------------- /doc/gui/images/add0delement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/add0delement.png -------------------------------------------------------------------------------- /doc/gui/images/add_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/add_ball.png -------------------------------------------------------------------------------- /doc/gui/images/add_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/add_edge.png -------------------------------------------------------------------------------- /doc/gui/images/add_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/add_node.png -------------------------------------------------------------------------------- /doc/gui/images/add_polygone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/add_polygone.png -------------------------------------------------------------------------------- /doc/gui/images/add_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/add_triangle.png -------------------------------------------------------------------------------- /doc/gui/images/addball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/addball.png -------------------------------------------------------------------------------- /doc/gui/images/addedge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/addedge.png -------------------------------------------------------------------------------- /doc/gui/images/addinfo_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/addinfo_mesh.png -------------------------------------------------------------------------------- /doc/gui/images/addnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/addnode.png -------------------------------------------------------------------------------- /doc/gui/images/addpolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/addpolygon.png -------------------------------------------------------------------------------- /doc/gui/images/addtriangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/addtriangle.png -------------------------------------------------------------------------------- /doc/gui/images/aqt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/aqt.png -------------------------------------------------------------------------------- /doc/gui/images/b-flection1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/b-flection1d.png -------------------------------------------------------------------------------- /doc/gui/images/b-ithmetic1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/b-ithmetic1d.png -------------------------------------------------------------------------------- /doc/gui/images/b-mesh_infos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/b-mesh_infos.png -------------------------------------------------------------------------------- /doc/gui/images/basic_props.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/basic_props.png -------------------------------------------------------------------------------- /doc/gui/images/bnd_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/bnd_box.png -------------------------------------------------------------------------------- /doc/gui/images/colors_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/colors_size.png -------------------------------------------------------------------------------- /doc/gui/images/convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/convert.png -------------------------------------------------------------------------------- /doc/gui/images/create_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/create_group.png -------------------------------------------------------------------------------- /doc/gui/images/creategroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/creategroup.png -------------------------------------------------------------------------------- /doc/gui/images/ctrlinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/ctrlinfo.png -------------------------------------------------------------------------------- /doc/gui/images/cut_groups1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/cut_groups1.png -------------------------------------------------------------------------------- /doc/gui/images/cutgroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/cutgroups.png -------------------------------------------------------------------------------- /doc/gui/images/deletegroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/deletegroups.png -------------------------------------------------------------------------------- /doc/gui/images/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/dialog.png -------------------------------------------------------------------------------- /doc/gui/images/dimgroup_0d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/dimgroup_0d.png -------------------------------------------------------------------------------- /doc/gui/images/dimgroup_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/dimgroup_1d.png -------------------------------------------------------------------------------- /doc/gui/images/dimgroup_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/dimgroup_2d.png -------------------------------------------------------------------------------- /doc/gui/images/dimgroup_dlg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/dimgroup_dlg.png -------------------------------------------------------------------------------- /doc/gui/images/dimgroup_src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/dimgroup_src.png -------------------------------------------------------------------------------- /doc/gui/images/double_faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/double_faces.png -------------------------------------------------------------------------------- /doc/gui/images/double_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/double_nodes.png -------------------------------------------------------------------------------- /doc/gui/images/duplicate01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/duplicate01.png -------------------------------------------------------------------------------- /doc/gui/images/duplicate02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/duplicate02.png -------------------------------------------------------------------------------- /doc/gui/images/duplicate03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/duplicate03.png -------------------------------------------------------------------------------- /doc/gui/images/duplicate04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/duplicate04.png -------------------------------------------------------------------------------- /doc/gui/images/edit_mesh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/edit_mesh1.png -------------------------------------------------------------------------------- /doc/gui/images/editgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/editgroup.png -------------------------------------------------------------------------------- /doc/gui/images/elem_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/elem_info.png -------------------------------------------------------------------------------- /doc/gui/images/eleminfo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/eleminfo1.png -------------------------------------------------------------------------------- /doc/gui/images/eleminfo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/eleminfo2.png -------------------------------------------------------------------------------- /doc/gui/images/findelement1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/findelement1.png -------------------------------------------------------------------------------- /doc/gui/images/findelement2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/findelement2.png -------------------------------------------------------------------------------- /doc/gui/images/findelement3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/findelement3.png -------------------------------------------------------------------------------- /doc/gui/images/formula1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/formula1.png -------------------------------------------------------------------------------- /doc/gui/images/formula2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/formula2.png -------------------------------------------------------------------------------- /doc/gui/images/formula4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/formula4.png -------------------------------------------------------------------------------- /doc/gui/images/formula5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/formula5.png -------------------------------------------------------------------------------- /doc/gui/images/free_edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/free_edges.png -------------------------------------------------------------------------------- /doc/gui/images/free_faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/free_faces.png -------------------------------------------------------------------------------- /doc/gui/images/free_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/free_nodes.png -------------------------------------------------------------------------------- /doc/gui/images/groups_in_OB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/groups_in_OB.png -------------------------------------------------------------------------------- /doc/gui/images/hypo_sets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/hypo_sets.png -------------------------------------------------------------------------------- /doc/gui/images/image10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image10.jpg -------------------------------------------------------------------------------- /doc/gui/images/image101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image101.png -------------------------------------------------------------------------------- /doc/gui/images/image105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image105.gif -------------------------------------------------------------------------------- /doc/gui/images/image106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image106.gif -------------------------------------------------------------------------------- /doc/gui/images/image120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image120.png -------------------------------------------------------------------------------- /doc/gui/images/image121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image121.png -------------------------------------------------------------------------------- /doc/gui/images/image122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image122.png -------------------------------------------------------------------------------- /doc/gui/images/image123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image123.gif -------------------------------------------------------------------------------- /doc/gui/images/image124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image124.gif -------------------------------------------------------------------------------- /doc/gui/images/image125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image125.gif -------------------------------------------------------------------------------- /doc/gui/images/image126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image126.gif -------------------------------------------------------------------------------- /doc/gui/images/image127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image127.gif -------------------------------------------------------------------------------- /doc/gui/images/image130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image130.gif -------------------------------------------------------------------------------- /doc/gui/images/image131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image131.gif -------------------------------------------------------------------------------- /doc/gui/images/image132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image132.gif -------------------------------------------------------------------------------- /doc/gui/images/image133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image133.gif -------------------------------------------------------------------------------- /doc/gui/images/image134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image134.gif -------------------------------------------------------------------------------- /doc/gui/images/image135.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image135.gif -------------------------------------------------------------------------------- /doc/gui/images/image136.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image136.gif -------------------------------------------------------------------------------- /doc/gui/images/image137.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image137.gif -------------------------------------------------------------------------------- /doc/gui/images/image138.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image138.gif -------------------------------------------------------------------------------- /doc/gui/images/image143.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image143.gif -------------------------------------------------------------------------------- /doc/gui/images/image144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image144.png -------------------------------------------------------------------------------- /doc/gui/images/image145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image145.png -------------------------------------------------------------------------------- /doc/gui/images/image146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image146.png -------------------------------------------------------------------------------- /doc/gui/images/image147.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image147.gif -------------------------------------------------------------------------------- /doc/gui/images/image148.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image148.gif -------------------------------------------------------------------------------- /doc/gui/images/image15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image15.jpg -------------------------------------------------------------------------------- /doc/gui/images/image151.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image151.gif -------------------------------------------------------------------------------- /doc/gui/images/image152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image152.png -------------------------------------------------------------------------------- /doc/gui/images/image154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image154.png -------------------------------------------------------------------------------- /doc/gui/images/image155.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image155.gif -------------------------------------------------------------------------------- /doc/gui/images/image156.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image156.gif -------------------------------------------------------------------------------- /doc/gui/images/image157.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image157.gif -------------------------------------------------------------------------------- /doc/gui/images/image160.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image160.gif -------------------------------------------------------------------------------- /doc/gui/images/image161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image161.png -------------------------------------------------------------------------------- /doc/gui/images/image22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image22.jpg -------------------------------------------------------------------------------- /doc/gui/images/image23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image23.jpg -------------------------------------------------------------------------------- /doc/gui/images/image24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image24.gif -------------------------------------------------------------------------------- /doc/gui/images/image25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image25.jpg -------------------------------------------------------------------------------- /doc/gui/images/image25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image25.png -------------------------------------------------------------------------------- /doc/gui/images/image27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image27.jpg -------------------------------------------------------------------------------- /doc/gui/images/image28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image28.png -------------------------------------------------------------------------------- /doc/gui/images/image30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image30.jpg -------------------------------------------------------------------------------- /doc/gui/images/image31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image31.jpg -------------------------------------------------------------------------------- /doc/gui/images/image32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image32.jpg -------------------------------------------------------------------------------- /doc/gui/images/image32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image32.png -------------------------------------------------------------------------------- /doc/gui/images/image33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image33.gif -------------------------------------------------------------------------------- /doc/gui/images/image34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image34.png -------------------------------------------------------------------------------- /doc/gui/images/image35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image35.png -------------------------------------------------------------------------------- /doc/gui/images/image36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image36.jpg -------------------------------------------------------------------------------- /doc/gui/images/image36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image36.png -------------------------------------------------------------------------------- /doc/gui/images/image37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image37.jpg -------------------------------------------------------------------------------- /doc/gui/images/image37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image37.png -------------------------------------------------------------------------------- /doc/gui/images/image38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image38.jpg -------------------------------------------------------------------------------- /doc/gui/images/image38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image38.png -------------------------------------------------------------------------------- /doc/gui/images/image39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image39.png -------------------------------------------------------------------------------- /doc/gui/images/image40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image40.png -------------------------------------------------------------------------------- /doc/gui/images/image41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image41.gif -------------------------------------------------------------------------------- /doc/gui/images/image42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image42.png -------------------------------------------------------------------------------- /doc/gui/images/image43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image43.png -------------------------------------------------------------------------------- /doc/gui/images/image46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image46.gif -------------------------------------------------------------------------------- /doc/gui/images/image49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image49.png -------------------------------------------------------------------------------- /doc/gui/images/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image5.jpg -------------------------------------------------------------------------------- /doc/gui/images/image50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image50.gif -------------------------------------------------------------------------------- /doc/gui/images/image51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image51.jpg -------------------------------------------------------------------------------- /doc/gui/images/image52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image52.jpg -------------------------------------------------------------------------------- /doc/gui/images/image53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image53.gif -------------------------------------------------------------------------------- /doc/gui/images/image55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image55.gif -------------------------------------------------------------------------------- /doc/gui/images/image56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image56.gif -------------------------------------------------------------------------------- /doc/gui/images/image56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image56.jpg -------------------------------------------------------------------------------- /doc/gui/images/image58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image58.png -------------------------------------------------------------------------------- /doc/gui/images/image59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image59.png -------------------------------------------------------------------------------- /doc/gui/images/image63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image63.png -------------------------------------------------------------------------------- /doc/gui/images/image64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image64.png -------------------------------------------------------------------------------- /doc/gui/images/image67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image67.png -------------------------------------------------------------------------------- /doc/gui/images/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image7.jpg -------------------------------------------------------------------------------- /doc/gui/images/image70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image70.jpg -------------------------------------------------------------------------------- /doc/gui/images/image70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image70.png -------------------------------------------------------------------------------- /doc/gui/images/image71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image71.jpg -------------------------------------------------------------------------------- /doc/gui/images/image71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image71.png -------------------------------------------------------------------------------- /doc/gui/images/image74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image74.gif -------------------------------------------------------------------------------- /doc/gui/images/image75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image75.jpg -------------------------------------------------------------------------------- /doc/gui/images/image76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image76.jpg -------------------------------------------------------------------------------- /doc/gui/images/image77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image77.jpg -------------------------------------------------------------------------------- /doc/gui/images/image78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image78.jpg -------------------------------------------------------------------------------- /doc/gui/images/image79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image79.jpg -------------------------------------------------------------------------------- /doc/gui/images/image79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image79.png -------------------------------------------------------------------------------- /doc/gui/images/image80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image80.png -------------------------------------------------------------------------------- /doc/gui/images/image81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image81.png -------------------------------------------------------------------------------- /doc/gui/images/image82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image82.png -------------------------------------------------------------------------------- /doc/gui/images/image83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image83.gif -------------------------------------------------------------------------------- /doc/gui/images/image84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image84.png -------------------------------------------------------------------------------- /doc/gui/images/image86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image86.jpg -------------------------------------------------------------------------------- /doc/gui/images/image88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image88.jpg -------------------------------------------------------------------------------- /doc/gui/images/image89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image89.jpg -------------------------------------------------------------------------------- /doc/gui/images/image90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image90.jpg -------------------------------------------------------------------------------- /doc/gui/images/image91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image91.png -------------------------------------------------------------------------------- /doc/gui/images/image92.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image92.jpg -------------------------------------------------------------------------------- /doc/gui/images/image92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image92.png -------------------------------------------------------------------------------- /doc/gui/images/image93.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image93.jpg -------------------------------------------------------------------------------- /doc/gui/images/image94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image94.gif -------------------------------------------------------------------------------- /doc/gui/images/image94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image94.jpg -------------------------------------------------------------------------------- /doc/gui/images/image95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image95.gif -------------------------------------------------------------------------------- /doc/gui/images/image95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image95.jpg -------------------------------------------------------------------------------- /doc/gui/images/image96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image96.gif -------------------------------------------------------------------------------- /doc/gui/images/image96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image96.jpg -------------------------------------------------------------------------------- /doc/gui/images/image97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image97.gif -------------------------------------------------------------------------------- /doc/gui/images/image97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image97.jpg -------------------------------------------------------------------------------- /doc/gui/images/image98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image98.png -------------------------------------------------------------------------------- /doc/gui/images/image99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image99.gif -------------------------------------------------------------------------------- /doc/gui/images/image_octa12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/image_octa12.png -------------------------------------------------------------------------------- /doc/gui/images/length-crit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/length-crit.png -------------------------------------------------------------------------------- /doc/gui/images/length2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/length2d.png -------------------------------------------------------------------------------- /doc/gui/images/max_el_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/max_el_area.png -------------------------------------------------------------------------------- /doc/gui/images/mergeelems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/mergeelems.png -------------------------------------------------------------------------------- /doc/gui/images/mergenodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/mergenodes.png -------------------------------------------------------------------------------- /doc/gui/images/mesh_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/mesh_clear.png -------------------------------------------------------------------------------- /doc/gui/images/meshtopass1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/meshtopass1.png -------------------------------------------------------------------------------- /doc/gui/images/meshtopass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/meshtopass2.png -------------------------------------------------------------------------------- /doc/gui/images/meshtopass3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/meshtopass3.png -------------------------------------------------------------------------------- /doc/gui/images/min_distance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/min_distance.png -------------------------------------------------------------------------------- /doc/gui/images/movenodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/movenodes.png -------------------------------------------------------------------------------- /doc/gui/images/offset_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/offset_mesh.png -------------------------------------------------------------------------------- /doc/gui/images/pattern2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/pattern2d.png -------------------------------------------------------------------------------- /doc/gui/images/pref21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/pref21.png -------------------------------------------------------------------------------- /doc/gui/images/pref22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/pref22.png -------------------------------------------------------------------------------- /doc/gui/images/pref23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/pref23.png -------------------------------------------------------------------------------- /doc/gui/images/pref24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/pref24.png -------------------------------------------------------------------------------- /doc/gui/images/prism_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/prism_mesh.png -------------------------------------------------------------------------------- /doc/gui/images/prism_ok_ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/prism_ok_ko.png -------------------------------------------------------------------------------- /doc/gui/images/prism_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/prism_stack.png -------------------------------------------------------------------------------- /doc/gui/images/quad_meshes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/quad_meshes.png -------------------------------------------------------------------------------- /doc/gui/images/remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/remove.gif -------------------------------------------------------------------------------- /doc/gui/images/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/remove.png -------------------------------------------------------------------------------- /doc/gui/images/removenodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/removenodes.png -------------------------------------------------------------------------------- /doc/gui/images/revolution1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/revolution1.png -------------------------------------------------------------------------------- /doc/gui/images/rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/rotation.png -------------------------------------------------------------------------------- /doc/gui/images/rotation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/rotation1.png -------------------------------------------------------------------------------- /doc/gui/images/rotation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/rotation2.png -------------------------------------------------------------------------------- /doc/gui/images/rotation_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/rotation_ico.png -------------------------------------------------------------------------------- /doc/gui/images/scale01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scale01.png -------------------------------------------------------------------------------- /doc/gui/images/scale02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scale02.png -------------------------------------------------------------------------------- /doc/gui/images/scale03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scale03.png -------------------------------------------------------------------------------- /doc/gui/images/scale04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scale04.png -------------------------------------------------------------------------------- /doc/gui/images/scale06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scale06.png -------------------------------------------------------------------------------- /doc/gui/images/scale07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scale07.png -------------------------------------------------------------------------------- /doc/gui/images/scale09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scale09.png -------------------------------------------------------------------------------- /doc/gui/images/scaleinit01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scaleinit01.png -------------------------------------------------------------------------------- /doc/gui/images/scaleinit02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scaleinit02.png -------------------------------------------------------------------------------- /doc/gui/images/scaleres03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scaleres03.png -------------------------------------------------------------------------------- /doc/gui/images/scaleres04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scaleres04.png -------------------------------------------------------------------------------- /doc/gui/images/scaleres06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scaleres06.png -------------------------------------------------------------------------------- /doc/gui/images/scaleres07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scaleres07.png -------------------------------------------------------------------------------- /doc/gui/images/scaleres09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/scaleres09.png -------------------------------------------------------------------------------- /doc/gui/images/sewing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/sewing.png -------------------------------------------------------------------------------- /doc/gui/images/sewing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/sewing1.png -------------------------------------------------------------------------------- /doc/gui/images/sewing2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/sewing2.png -------------------------------------------------------------------------------- /doc/gui/images/sewing3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/sewing3.png -------------------------------------------------------------------------------- /doc/gui/images/sewing4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/sewing4.png -------------------------------------------------------------------------------- /doc/gui/images/sewing_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/sewing_auto.png -------------------------------------------------------------------------------- /doc/gui/images/smesh_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/smesh_sort.png -------------------------------------------------------------------------------- /doc/gui/images/smoothing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/smoothing.png -------------------------------------------------------------------------------- /doc/gui/images/smoothing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/smoothing1.png -------------------------------------------------------------------------------- /doc/gui/images/smoothing2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/smoothing2.png -------------------------------------------------------------------------------- /doc/gui/images/sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/sort.gif -------------------------------------------------------------------------------- /doc/gui/images/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/sort.png -------------------------------------------------------------------------------- /doc/gui/images/swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/swap.png -------------------------------------------------------------------------------- /doc/gui/images/symmetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/symmetry.png -------------------------------------------------------------------------------- /doc/gui/images/symmetry1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/symmetry1.png -------------------------------------------------------------------------------- /doc/gui/images/symmetry2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/symmetry2.png -------------------------------------------------------------------------------- /doc/gui/images/symmetry3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/symmetry3.png -------------------------------------------------------------------------------- /doc/gui/images/translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/translation.png -------------------------------------------------------------------------------- /doc/gui/images/translation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/translation1.png -------------------------------------------------------------------------------- /doc/gui/images/translation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/translation2.png -------------------------------------------------------------------------------- /doc/gui/images/uniongroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/images/uniongroups.png -------------------------------------------------------------------------------- /doc/gui/input/about_filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/about_filters.rst -------------------------------------------------------------------------------- /doc/gui/input/about_hypo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/about_hypo.rst -------------------------------------------------------------------------------- /doc/gui/input/about_meshes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/about_meshes.rst -------------------------------------------------------------------------------- /doc/gui/input/adaptation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/adaptation.rst -------------------------------------------------------------------------------- /doc/gui/input/area.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/area.rst -------------------------------------------------------------------------------- /doc/gui/input/aspect_ratio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/aspect_ratio.rst -------------------------------------------------------------------------------- /doc/gui/input/clipping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/clipping.rst -------------------------------------------------------------------------------- /doc/gui/input/colors_size.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/colors_size.rst -------------------------------------------------------------------------------- /doc/gui/input/connectivity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/connectivity.rst -------------------------------------------------------------------------------- /doc/gui/input/copy_mesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/copy_mesh.rst -------------------------------------------------------------------------------- /doc/gui/input/deflection_2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/deflection_2d.rst -------------------------------------------------------------------------------- /doc/gui/input/display_mode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/display_mode.rst -------------------------------------------------------------------------------- /doc/gui/input/extrusion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/extrusion.rst -------------------------------------------------------------------------------- /doc/gui/input/free_borders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/free_borders.rst -------------------------------------------------------------------------------- /doc/gui/input/free_edges.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/free_edges.rst -------------------------------------------------------------------------------- /doc/gui/input/free_faces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/free_faces.rst -------------------------------------------------------------------------------- /doc/gui/input/free_nodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/free_nodes.rst -------------------------------------------------------------------------------- /doc/gui/input/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/index.rst -------------------------------------------------------------------------------- /doc/gui/input/length.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/length.rst -------------------------------------------------------------------------------- /doc/gui/input/length_2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/length_2d.rst -------------------------------------------------------------------------------- /doc/gui/input/measurements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/measurements.rst -------------------------------------------------------------------------------- /doc/gui/input/merging_nodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/merging_nodes.rst -------------------------------------------------------------------------------- /doc/gui/input/mesh_infos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/mesh_infos.rst -------------------------------------------------------------------------------- /doc/gui/input/minimum_angle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/minimum_angle.rst -------------------------------------------------------------------------------- /doc/gui/input/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/modules.rst -------------------------------------------------------------------------------- /doc/gui/input/numbering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/numbering.rst -------------------------------------------------------------------------------- /doc/gui/input/point_marker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/point_marker.rst -------------------------------------------------------------------------------- /doc/gui/input/prism_3d_algo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/prism_3d_algo.rst -------------------------------------------------------------------------------- /doc/gui/input/quad_ijk_algo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/quad_ijk_algo.rst -------------------------------------------------------------------------------- /doc/gui/input/revolution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/revolution.rst -------------------------------------------------------------------------------- /doc/gui/input/rotation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/rotation.rst -------------------------------------------------------------------------------- /doc/gui/input/scalar_bar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/scalar_bar.rst -------------------------------------------------------------------------------- /doc/gui/input/scale.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/scale.rst -------------------------------------------------------------------------------- /doc/gui/input/sewing_meshes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/sewing_meshes.rst -------------------------------------------------------------------------------- /doc/gui/input/skew.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/skew.rst -------------------------------------------------------------------------------- /doc/gui/input/smeshBuilder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/smeshBuilder.rst -------------------------------------------------------------------------------- /doc/gui/input/smesh_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/smesh_module.rst -------------------------------------------------------------------------------- /doc/gui/input/smoothing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/smoothing.rst -------------------------------------------------------------------------------- /doc/gui/input/symmetry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/symmetry.rst -------------------------------------------------------------------------------- /doc/gui/input/taper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/taper.rst -------------------------------------------------------------------------------- /doc/gui/input/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/tools.rst -------------------------------------------------------------------------------- /doc/gui/input/translation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/translation.rst -------------------------------------------------------------------------------- /doc/gui/input/transparency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/transparency.rst -------------------------------------------------------------------------------- /doc/gui/input/tui_filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/tui_filters.rst -------------------------------------------------------------------------------- /doc/gui/input/volume.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/volume.rst -------------------------------------------------------------------------------- /doc/gui/input/warping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/warping.rst -------------------------------------------------------------------------------- /doc/gui/input/warping_3d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/input/warping_3d.rst -------------------------------------------------------------------------------- /doc/gui/merge_mesh_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/merge_mesh_class.py -------------------------------------------------------------------------------- /doc/gui/static/switchers.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/static/switchers.js.in -------------------------------------------------------------------------------- /doc/gui/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/gui/templates/layout.html -------------------------------------------------------------------------------- /doc/tui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/tui/CMakeLists.txt -------------------------------------------------------------------------------- /doc/tui/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/tui/doxyfile.in -------------------------------------------------------------------------------- /doc/tui/images/application.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/tui/images/application.gif -------------------------------------------------------------------------------- /doc/tui/images/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/tui/images/head.png -------------------------------------------------------------------------------- /doc/tui/images/logocorp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/tui/images/logocorp.gif -------------------------------------------------------------------------------- /doc/tui/images/smeshscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/tui/images/smeshscreen.png -------------------------------------------------------------------------------- /doc/tui/input/index.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/tui/input/index.doc -------------------------------------------------------------------------------- /doc/tui/static/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/tui/static/footer.html -------------------------------------------------------------------------------- /doc/tui/static/header.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/tui/static/header.html.in -------------------------------------------------------------------------------- /doc/tui/static/salome_extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/doc/tui/static/salome_extra.css -------------------------------------------------------------------------------- /idl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/CMakeLists.txt -------------------------------------------------------------------------------- /idl/MG_ADAPT.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/MG_ADAPT.idl -------------------------------------------------------------------------------- /idl/SMESH_BasicHypothesis.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/SMESH_BasicHypothesis.idl -------------------------------------------------------------------------------- /idl/SMESH_Filter.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/SMESH_Filter.idl -------------------------------------------------------------------------------- /idl/SMESH_Gen.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/SMESH_Gen.idl -------------------------------------------------------------------------------- /idl/SMESH_Group.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/SMESH_Group.idl -------------------------------------------------------------------------------- /idl/SMESH_Homard.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/SMESH_Homard.idl -------------------------------------------------------------------------------- /idl/SMESH_Hypothesis.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/SMESH_Hypothesis.idl -------------------------------------------------------------------------------- /idl/SMESH_Measurements.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/SMESH_Measurements.idl -------------------------------------------------------------------------------- /idl/SMESH_Mesh.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/SMESH_Mesh.idl -------------------------------------------------------------------------------- /idl/SMESH_MeshEditor.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/SMESH_MeshEditor.idl -------------------------------------------------------------------------------- /idl/SMESH_Pattern.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/SMESH_Pattern.idl -------------------------------------------------------------------------------- /idl/SMESH_smIdType.idl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/idl/SMESH_smIdType.idl.in -------------------------------------------------------------------------------- /resources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/CMakeLists.txt -------------------------------------------------------------------------------- /resources/ModuleMesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/ModuleMesh.png -------------------------------------------------------------------------------- /resources/SMESHCatalog.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/SMESHCatalog.xml.in -------------------------------------------------------------------------------- /resources/SalomeApp.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/SalomeApp.xml.in -------------------------------------------------------------------------------- /resources/StdMeshers.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/StdMeshers.xml.in -------------------------------------------------------------------------------- /resources/adapt_homard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/adapt_homard.png -------------------------------------------------------------------------------- /resources/adapt_mg_adapt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/adapt_mg_adapt.png -------------------------------------------------------------------------------- /resources/bare_border_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/bare_border_face.png -------------------------------------------------------------------------------- /resources/copy_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/copy_mesh.png -------------------------------------------------------------------------------- /resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/delete.png -------------------------------------------------------------------------------- /resources/mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh.png -------------------------------------------------------------------------------- /resources/mesh_0D_elem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_0D_elem.png -------------------------------------------------------------------------------- /resources/mesh_2d_from_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_2d_from_3d.png -------------------------------------------------------------------------------- /resources/mesh_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_add.png -------------------------------------------------------------------------------- /resources/mesh_add_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_add_sub.png -------------------------------------------------------------------------------- /resources/mesh_algo_hexa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_algo_hexa.png -------------------------------------------------------------------------------- /resources/mesh_algo_quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_algo_quad.png -------------------------------------------------------------------------------- /resources/mesh_algo_regular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_algo_regular.png -------------------------------------------------------------------------------- /resources/mesh_algo_tetra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_algo_tetra.png -------------------------------------------------------------------------------- /resources/mesh_algo_tri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_algo_tri.png -------------------------------------------------------------------------------- /resources/mesh_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_angle.png -------------------------------------------------------------------------------- /resources/mesh_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_area.png -------------------------------------------------------------------------------- /resources/mesh_aspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_aspect.png -------------------------------------------------------------------------------- /resources/mesh_aspect_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_aspect_3d.png -------------------------------------------------------------------------------- /resources/mesh_auto_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_auto_colors.png -------------------------------------------------------------------------------- /resources/mesh_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_ball.png -------------------------------------------------------------------------------- /resources/mesh_bounding_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_bounding_box.png -------------------------------------------------------------------------------- /resources/mesh_choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_choose.png -------------------------------------------------------------------------------- /resources/mesh_choose_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_choose_all.png -------------------------------------------------------------------------------- /resources/mesh_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_clear.png -------------------------------------------------------------------------------- /resources/mesh_compute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_compute.png -------------------------------------------------------------------------------- /resources/mesh_conv_to_quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_conv_to_quad.png -------------------------------------------------------------------------------- /resources/mesh_cutGroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_cutGroups.png -------------------------------------------------------------------------------- /resources/mesh_cutquad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_cutquad.png -------------------------------------------------------------------------------- /resources/mesh_deflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_deflection.png -------------------------------------------------------------------------------- /resources/mesh_deleteGroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_deleteGroups.png -------------------------------------------------------------------------------- /resources/mesh_diagonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_diagonal.png -------------------------------------------------------------------------------- /resources/mesh_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_edit.png -------------------------------------------------------------------------------- /resources/mesh_edit_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_edit_group.png -------------------------------------------------------------------------------- /resources/mesh_elem_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_elem_info.png -------------------------------------------------------------------------------- /resources/mesh_equal_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_equal_edge.png -------------------------------------------------------------------------------- /resources/mesh_equal_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_equal_face.png -------------------------------------------------------------------------------- /resources/mesh_equal_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_equal_node.png -------------------------------------------------------------------------------- /resources/mesh_equal_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_equal_volume.png -------------------------------------------------------------------------------- /resources/mesh_evaluate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_evaluate.png -------------------------------------------------------------------------------- /resources/mesh_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_export.png -------------------------------------------------------------------------------- /resources/mesh_extractGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_extractGroup.png -------------------------------------------------------------------------------- /resources/mesh_extrusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_extrusion.png -------------------------------------------------------------------------------- /resources/mesh_free_edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_free_edges.png -------------------------------------------------------------------------------- /resources/mesh_free_faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_free_faces.png -------------------------------------------------------------------------------- /resources/mesh_free_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_free_nodes.png -------------------------------------------------------------------------------- /resources/mesh_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_group.png -------------------------------------------------------------------------------- /resources/mesh_hexa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_hexa.png -------------------------------------------------------------------------------- /resources/mesh_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_hide.png -------------------------------------------------------------------------------- /resources/mesh_hypo_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_hypo_area.png -------------------------------------------------------------------------------- /resources/mesh_hypo_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_hypo_edit.png -------------------------------------------------------------------------------- /resources/mesh_hypo_length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_hypo_length.png -------------------------------------------------------------------------------- /resources/mesh_hypo_segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_hypo_segment.png -------------------------------------------------------------------------------- /resources/mesh_hypo_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_hypo_volume.png -------------------------------------------------------------------------------- /resources/mesh_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_info.png -------------------------------------------------------------------------------- /resources/mesh_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_init.png -------------------------------------------------------------------------------- /resources/mesh_length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_length.png -------------------------------------------------------------------------------- /resources/mesh_length_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_length_2d.png -------------------------------------------------------------------------------- /resources/mesh_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_line.png -------------------------------------------------------------------------------- /resources/mesh_line_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_line_n.png -------------------------------------------------------------------------------- /resources/mesh_make_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_make_group.png -------------------------------------------------------------------------------- /resources/mesh_measure_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_measure_area.png -------------------------------------------------------------------------------- /resources/mesh_merge_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_merge_nodes.png -------------------------------------------------------------------------------- /resources/mesh_min_dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_min_dist.png -------------------------------------------------------------------------------- /resources/mesh_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_minus.png -------------------------------------------------------------------------------- /resources/mesh_move_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_move_node.png -------------------------------------------------------------------------------- /resources/mesh_multi_edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_multi_edges.png -------------------------------------------------------------------------------- /resources/mesh_octahedron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_octahedron.png -------------------------------------------------------------------------------- /resources/mesh_offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_offset.png -------------------------------------------------------------------------------- /resources/mesh_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_order.png -------------------------------------------------------------------------------- /resources/mesh_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_orientation.png -------------------------------------------------------------------------------- /resources/mesh_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_pattern.png -------------------------------------------------------------------------------- /resources/mesh_pentahedron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_pentahedron.png -------------------------------------------------------------------------------- /resources/mesh_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_plus.png -------------------------------------------------------------------------------- /resources/mesh_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_points.png -------------------------------------------------------------------------------- /resources/mesh_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_polygon.png -------------------------------------------------------------------------------- /resources/mesh_polyhedron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_polyhedron.png -------------------------------------------------------------------------------- /resources/mesh_precompute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_precompute.png -------------------------------------------------------------------------------- /resources/mesh_pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_pyramid.png -------------------------------------------------------------------------------- /resources/mesh_pyramid_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_pyramid_n.png -------------------------------------------------------------------------------- /resources/mesh_quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_quad.png -------------------------------------------------------------------------------- /resources/mesh_quad_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_quad_edge.png -------------------------------------------------------------------------------- /resources/mesh_quad_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_quad_n.png -------------------------------------------------------------------------------- /resources/mesh_quad_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_quad_polygon.png -------------------------------------------------------------------------------- /resources/mesh_quad_pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_quad_pyramid.png -------------------------------------------------------------------------------- /resources/mesh_quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_quality.png -------------------------------------------------------------------------------- /resources/mesh_rem_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_rem_element.png -------------------------------------------------------------------------------- /resources/mesh_rem_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_rem_node.png -------------------------------------------------------------------------------- /resources/mesh_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_remove.png -------------------------------------------------------------------------------- /resources/mesh_revolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_revolution.png -------------------------------------------------------------------------------- /resources/mesh_rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_rotation.png -------------------------------------------------------------------------------- /resources/mesh_shading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_shading.png -------------------------------------------------------------------------------- /resources/mesh_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_show.png -------------------------------------------------------------------------------- /resources/mesh_shrink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_shrink.png -------------------------------------------------------------------------------- /resources/mesh_skew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_skew.png -------------------------------------------------------------------------------- /resources/mesh_smoothing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_smoothing.png -------------------------------------------------------------------------------- /resources/mesh_taper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_taper.png -------------------------------------------------------------------------------- /resources/mesh_tetra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_tetra.png -------------------------------------------------------------------------------- /resources/mesh_tree_algo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_tree_algo.png -------------------------------------------------------------------------------- /resources/mesh_tree_algo_0D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_tree_algo_0D.png -------------------------------------------------------------------------------- /resources/mesh_tree_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_tree_group.png -------------------------------------------------------------------------------- /resources/mesh_tree_hypo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_tree_hypo.png -------------------------------------------------------------------------------- /resources/mesh_tree_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_tree_mesh.png -------------------------------------------------------------------------------- /resources/mesh_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_triangle.png -------------------------------------------------------------------------------- /resources/mesh_triangle_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_triangle_n.png -------------------------------------------------------------------------------- /resources/mesh_union2tri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_union2tri.png -------------------------------------------------------------------------------- /resources/mesh_unionGroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_unionGroups.png -------------------------------------------------------------------------------- /resources/mesh_uniontri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_uniontri.png -------------------------------------------------------------------------------- /resources/mesh_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_update.png -------------------------------------------------------------------------------- /resources/mesh_vertex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_vertex.png -------------------------------------------------------------------------------- /resources/mesh_vertex_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_vertex_n.png -------------------------------------------------------------------------------- /resources/mesh_volume_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_volume_3d.png -------------------------------------------------------------------------------- /resources/mesh_whatis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_whatis.png -------------------------------------------------------------------------------- /resources/mesh_wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_wireframe.png -------------------------------------------------------------------------------- /resources/mesh_wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/mesh_wrap.png -------------------------------------------------------------------------------- /resources/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/open.png -------------------------------------------------------------------------------- /resources/pattern_sample_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/pattern_sample_2d.png -------------------------------------------------------------------------------- /resources/pattern_sample_3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/pattern_sample_3D.png -------------------------------------------------------------------------------- /resources/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/scale.png -------------------------------------------------------------------------------- /resources/scale_along_axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/scale_along_axes.png -------------------------------------------------------------------------------- /resources/select1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/select1.png -------------------------------------------------------------------------------- /resources/split_biquad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/split_biquad.png -------------------------------------------------------------------------------- /resources/split_into_tetra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/resources/split_into_tetra.png -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Controls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Controls/CMakeLists.txt -------------------------------------------------------------------------------- /src/Controls/SMESH_Controls.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Controls/SMESH_Controls.cxx -------------------------------------------------------------------------------- /src/Driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Driver/CMakeLists.txt -------------------------------------------------------------------------------- /src/Driver/Driver_Mesh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Driver/Driver_Mesh.cxx -------------------------------------------------------------------------------- /src/Driver/Driver_Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Driver/Driver_Mesh.h -------------------------------------------------------------------------------- /src/Driver/Driver_SMDS_Mesh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Driver/Driver_SMDS_Mesh.cxx -------------------------------------------------------------------------------- /src/Driver/Driver_SMDS_Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Driver/Driver_SMDS_Mesh.h -------------------------------------------------------------------------------- /src/DriverCGNS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverCGNS/CMakeLists.txt -------------------------------------------------------------------------------- /src/DriverDAT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverDAT/CMakeLists.txt -------------------------------------------------------------------------------- /src/DriverGMF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverGMF/CMakeLists.txt -------------------------------------------------------------------------------- /src/DriverGMF/DriverGMF.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverGMF/DriverGMF.cxx -------------------------------------------------------------------------------- /src/DriverGMF/DriverGMF.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverGMF/DriverGMF.hxx -------------------------------------------------------------------------------- /src/DriverGMF/libmesh5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverGMF/libmesh5.c -------------------------------------------------------------------------------- /src/DriverGMF/libmesh5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverGMF/libmesh5.h -------------------------------------------------------------------------------- /src/DriverMED/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverMED/CMakeLists.txt -------------------------------------------------------------------------------- /src/DriverMED/DriverMED.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverMED/DriverMED.hxx -------------------------------------------------------------------------------- /src/DriverSTL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverSTL/CMakeLists.txt -------------------------------------------------------------------------------- /src/DriverUNV/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverUNV/CMakeLists.txt -------------------------------------------------------------------------------- /src/DriverUNV/UNV_Utilities.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverUNV/UNV_Utilities.cxx -------------------------------------------------------------------------------- /src/DriverUNV/UNV_Utilities.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/DriverUNV/UNV_Utilities.hxx -------------------------------------------------------------------------------- /src/MEDWrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/MEDWrapper/CMakeLists.txt -------------------------------------------------------------------------------- /src/MEDWrapper/MED_Common.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/MEDWrapper/MED_Common.cxx -------------------------------------------------------------------------------- /src/MEDWrapper/MED_Common.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/MEDWrapper/MED_Common.hxx -------------------------------------------------------------------------------- /src/MEDWrapper/MED_Factory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/MEDWrapper/MED_Factory.cxx -------------------------------------------------------------------------------- /src/MEDWrapper/MED_Factory.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/MEDWrapper/MED_Factory.hxx -------------------------------------------------------------------------------- /src/MEDWrapper/MED_GaussDef.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/MEDWrapper/MED_GaussDef.cxx -------------------------------------------------------------------------------- /src/MEDWrapper/MED_GaussDef.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/MEDWrapper/MED_GaussDef.hxx -------------------------------------------------------------------------------- /src/MEDWrapper/MED_TFile.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/MEDWrapper/MED_TFile.hxx -------------------------------------------------------------------------------- /src/MEDWrapper/MED_Vector.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/MEDWrapper/MED_Vector.hxx -------------------------------------------------------------------------------- /src/MEDWrapper/MED_Wrapper.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/MEDWrapper/MED_Wrapper.cxx -------------------------------------------------------------------------------- /src/MEDWrapper/MED_Wrapper.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/MEDWrapper/MED_Wrapper.hxx -------------------------------------------------------------------------------- /src/OBJECT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/CMakeLists.txt -------------------------------------------------------------------------------- /src/OBJECT/SMESH_Actor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_Actor.cxx -------------------------------------------------------------------------------- /src/OBJECT/SMESH_Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_Actor.h -------------------------------------------------------------------------------- /src/OBJECT/SMESH_ActorDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_ActorDef.h -------------------------------------------------------------------------------- /src/OBJECT/SMESH_ActorProps.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_ActorProps.cxx -------------------------------------------------------------------------------- /src/OBJECT/SMESH_ActorProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_ActorProps.h -------------------------------------------------------------------------------- /src/OBJECT/SMESH_ActorUtils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_ActorUtils.cxx -------------------------------------------------------------------------------- /src/OBJECT/SMESH_ActorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_ActorUtils.h -------------------------------------------------------------------------------- /src/OBJECT/SMESH_DeviceActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_DeviceActor.h -------------------------------------------------------------------------------- /src/OBJECT/SMESH_Object.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_Object.cxx -------------------------------------------------------------------------------- /src/OBJECT/SMESH_Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_Object.h -------------------------------------------------------------------------------- /src/OBJECT/SMESH_ObjectDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_ObjectDef.h -------------------------------------------------------------------------------- /src/OBJECT/SMESH_SVTKActor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_SVTKActor.cxx -------------------------------------------------------------------------------- /src/OBJECT/SMESH_SVTKActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/OBJECT/SMESH_SVTKActor.h -------------------------------------------------------------------------------- /src/PluginUtils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/PluginUtils/CMakeLists.txt -------------------------------------------------------------------------------- /src/SMDS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/CMakeLists.txt -------------------------------------------------------------------------------- /src/SMDS/ObjectPool.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/ObjectPool.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_BallElement.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_BallElement.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_BallElement.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_BallElement.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_CellOfNodes.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_CellOfNodes.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_CellOfNodes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_CellOfNodes.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_Downward.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_Downward.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_Downward.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_Downward.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_EdgePosition.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_EdgePosition.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_ElemIterator.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_ElemIterator.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_ElementHolder.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_ElementHolder.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_ElementHolder.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_ElementHolder.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_FaceOfNodes.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_FaceOfNodes.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_FaceOfNodes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_FaceOfNodes.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_FacePosition.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_FacePosition.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_FacePosition.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_FacePosition.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_Iterator.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_Iterator.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_LinearEdge.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_LinearEdge.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_LinearEdge.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_LinearEdge.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MemoryLimit.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MemoryLimit.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_Mesh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_Mesh.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_Mesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_Mesh.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_Mesh0DElement.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_Mesh0DElement.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshCell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshCell.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshCell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshCell.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshEdge.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshEdge.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshElement.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshElement.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshElement.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshElement.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshFace.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshFace.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshGroup.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshGroup.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshGroup.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshGroup.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshInfo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshInfo.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshNode.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshNode.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshNode.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshNode.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshObject.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshObject.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshObject.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshObject.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshVolume.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshVolume.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_MeshVolume.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_MeshVolume.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_Position.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_Position.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_SetIterator.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_SetIterator.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_SpacePosition.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_SpacePosition.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_SpacePosition.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_SpacePosition.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_StdIterator.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_StdIterator.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_VolumeOfNodes.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_VolumeOfNodes.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_VolumeOfNodes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_VolumeOfNodes.hxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_VolumeTool.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_VolumeTool.cxx -------------------------------------------------------------------------------- /src/SMDS/SMDS_VolumeTool.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMDS_VolumeTool.hxx -------------------------------------------------------------------------------- /src/SMDS/SMESH_SMDS.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/SMESH_SMDS.hxx -------------------------------------------------------------------------------- /src/SMDS/chrono.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/chrono.cxx -------------------------------------------------------------------------------- /src/SMDS/chrono.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMDS/chrono.hxx -------------------------------------------------------------------------------- /src/SMESH/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/CMakeLists.txt -------------------------------------------------------------------------------- /src/SMESH/MG_ADAPT.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/MG_ADAPT.cxx -------------------------------------------------------------------------------- /src/SMESH/MG_ADAPT.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/MG_ADAPT.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Algo.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Algo.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Algo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Algo.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_DriverMesh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_DriverMesh.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_DriverMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_DriverMesh.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_DriverShape.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_DriverShape.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_DriverShape.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_DriverShape.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Gen.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Gen.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Gen.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Gen.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Group.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Group.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Group.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Group.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Homard.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Homard.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Homard.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Homard.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_HypoFilter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_HypoFilter.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_HypoFilter.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_HypoFilter.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Hypothesis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Hypothesis.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Hypothesis.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Hypothesis.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Mesh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Mesh.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Mesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Mesh.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_MeshEditor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_MeshEditor.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_MeshEditor.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_MeshEditor.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_MeshLocker.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_MeshLocker.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_MeshLocker.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_MeshLocker.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Pattern.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Pattern.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_Pattern.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_Pattern.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_ProxyMesh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_ProxyMesh.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_ProxyMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_ProxyMesh.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_SMESH.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_SMESH.hxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_subMesh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_subMesh.cxx -------------------------------------------------------------------------------- /src/SMESH/SMESH_subMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/SMESH_subMesh.hxx -------------------------------------------------------------------------------- /src/SMESH/memoire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH/memoire.h -------------------------------------------------------------------------------- /src/SMESHClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHClient/CMakeLists.txt -------------------------------------------------------------------------------- /src/SMESHDS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/CMakeLists.txt -------------------------------------------------------------------------------- /src/SMESHDS/SMESHDS_Command.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESHDS_Command.cxx -------------------------------------------------------------------------------- /src/SMESHDS/SMESHDS_Command.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESHDS_Command.hxx -------------------------------------------------------------------------------- /src/SMESHDS/SMESHDS_Group.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESHDS_Group.cxx -------------------------------------------------------------------------------- /src/SMESHDS/SMESHDS_Group.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESHDS_Group.hxx -------------------------------------------------------------------------------- /src/SMESHDS/SMESHDS_Mesh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESHDS_Mesh.cxx -------------------------------------------------------------------------------- /src/SMESHDS/SMESHDS_Mesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESHDS_Mesh.hxx -------------------------------------------------------------------------------- /src/SMESHDS/SMESHDS_Script.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESHDS_Script.cxx -------------------------------------------------------------------------------- /src/SMESHDS/SMESHDS_Script.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESHDS_Script.hxx -------------------------------------------------------------------------------- /src/SMESHDS/SMESHDS_SubMesh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESHDS_SubMesh.cxx -------------------------------------------------------------------------------- /src/SMESHDS/SMESHDS_SubMesh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESHDS_SubMesh.hxx -------------------------------------------------------------------------------- /src/SMESHDS/SMESH_Controls.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESH_Controls.hxx -------------------------------------------------------------------------------- /src/SMESHDS/SMESH_SMESHDS.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHDS/SMESH_SMESHDS.hxx -------------------------------------------------------------------------------- /src/SMESHGUI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/CMakeLists.txt -------------------------------------------------------------------------------- /src/SMESHGUI/SMESHGUI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESHGUI.cxx -------------------------------------------------------------------------------- /src/SMESHGUI/SMESHGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESHGUI.h -------------------------------------------------------------------------------- /src/SMESHGUI/SMESHGUI_Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESHGUI_Dialog.h -------------------------------------------------------------------------------- /src/SMESHGUI/SMESHGUI_Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESHGUI_Filter.h -------------------------------------------------------------------------------- /src/SMESHGUI/SMESHGUI_MeshDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESHGUI_MeshDlg.h -------------------------------------------------------------------------------- /src/SMESHGUI/SMESHGUI_MeshOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESHGUI_MeshOp.h -------------------------------------------------------------------------------- /src/SMESHGUI/SMESHGUI_Meshio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESHGUI_Meshio.h -------------------------------------------------------------------------------- /src/SMESHGUI/SMESHGUI_SpinBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESHGUI_SpinBox.h -------------------------------------------------------------------------------- /src/SMESHGUI/SMESHGUI_Utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESHGUI_Utils.cxx -------------------------------------------------------------------------------- /src/SMESHGUI/SMESHGUI_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESHGUI_Utils.h -------------------------------------------------------------------------------- /src/SMESHGUI/SMESH_SMESHGUI.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESH_SMESHGUI.hxx -------------------------------------------------------------------------------- /src/SMESHGUI/SMESH_images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESH_images.ts -------------------------------------------------------------------------------- /src/SMESHGUI/SMESH_msg_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESH_msg_en.ts -------------------------------------------------------------------------------- /src/SMESHGUI/SMESH_msg_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESH_msg_fr.ts -------------------------------------------------------------------------------- /src/SMESHGUI/SMESH_msg_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHGUI/SMESH_msg_ja.ts -------------------------------------------------------------------------------- /src/SMESHUtils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/CMakeLists.txt -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_Block.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_Block.cxx -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_Block.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_Block.hxx -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_File.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_File.cxx -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_File.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_File.hxx -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_MAT2d.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_MAT2d.cxx -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_MAT2d.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_MAT2d.hxx -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_Octree.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_Octree.cxx -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_Octree.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_Octree.hxx -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_Offset.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_Offset.cxx -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_Slot.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_Slot.cxx -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_Tree.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_Tree.hxx -------------------------------------------------------------------------------- /src/SMESHUtils/SMESH_Utils.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESHUtils/SMESH_Utils.hxx -------------------------------------------------------------------------------- /src/SMESH_I/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/CMakeLists.txt -------------------------------------------------------------------------------- /src/SMESH_I/MG_ADAPT_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/MG_ADAPT_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/MG_ADAPT_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/MG_ADAPT_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_0D_Algo_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_0D_Algo_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_0D_Algo_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_0D_Algo_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_1D_Algo_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_1D_Algo_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_1D_Algo_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_1D_Algo_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_2D_Algo_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_2D_Algo_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_2D_Algo_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_2D_Algo_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_2smeshpy.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_2smeshpy.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_2smeshpy.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_2smeshpy.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_3D_Algo_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_3D_Algo_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_3D_Algo_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_3D_Algo_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Algo_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Algo_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Algo_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Algo_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Filter_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Filter_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Filter_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Filter_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Gen_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Gen_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Gen_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Gen_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Gen_i_1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Gen_i_1.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Group_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Group_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Group_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Group_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Homard_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Homard_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Homard_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Homard_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Mesh_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Mesh_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Mesh_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Mesh_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Meshio.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Meshio.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Meshio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Meshio.h -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_NoteBook.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_NoteBook.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_NoteBook.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_NoteBook.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Pattern_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Pattern_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_Pattern_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_Pattern_i.hxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_subMesh_i.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_subMesh_i.cxx -------------------------------------------------------------------------------- /src/SMESH_I/SMESH_subMesh_i.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_I/SMESH_subMesh_i.hxx -------------------------------------------------------------------------------- /src/SMESH_PY/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_PY/CMakeLists.txt -------------------------------------------------------------------------------- /src/SMESH_PY/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_PY/__init__.py -------------------------------------------------------------------------------- /src/SMESH_PY/smeshstudytools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_PY/smeshstudytools.py -------------------------------------------------------------------------------- /src/SMESH_SWIG/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_SWIG/CMakeLists.txt -------------------------------------------------------------------------------- /src/SMESH_SWIG/SMeshHelper.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_SWIG/SMeshHelper.cxx -------------------------------------------------------------------------------- /src/SMESH_SWIG/SMeshHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_SWIG/SMeshHelper.h -------------------------------------------------------------------------------- /src/SMESH_SWIG/SMeshHelper.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_SWIG/SMeshHelper.i -------------------------------------------------------------------------------- /src/SMESH_SWIG/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_SWIG/__init__.py -------------------------------------------------------------------------------- /src/SMESH_SWIG/send_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_SWIG/send_files.py -------------------------------------------------------------------------------- /src/SMESH_SWIG/smeshBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_SWIG/smeshBuilder.py -------------------------------------------------------------------------------- /src/SMESH_SWIG/smesh_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/SMESH_SWIG/smesh_tools.py -------------------------------------------------------------------------------- /src/StdMeshers.test/tests.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/StdMeshers.test/tests.set -------------------------------------------------------------------------------- /src/StdMeshers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/StdMeshers/CMakeLists.txt -------------------------------------------------------------------------------- /src/StdMeshers_I/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/StdMeshers_I/CMakeLists.txt -------------------------------------------------------------------------------- /src/Tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/Tools/MacMesh/Doc/snap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/MacMesh/Doc/snap.jpg -------------------------------------------------------------------------------- /src/Tools/MeshCut/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/MeshCut/AUTHORS -------------------------------------------------------------------------------- /src/Tools/MeshCut/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/MeshCut/README -------------------------------------------------------------------------------- /src/Tools/Verima/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/CMakeLists.txt -------------------------------------------------------------------------------- /src/Tools/Verima/Doc/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/Doc/conf.py.in -------------------------------------------------------------------------------- /src/Tools/Verima/Doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/Doc/index.rst -------------------------------------------------------------------------------- /src/Tools/Verima/Doc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/Doc/makefile -------------------------------------------------------------------------------- /src/Tools/Verima/Gui/desStat.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/Gui/desStat.ui -------------------------------------------------------------------------------- /src/Tools/Verima/Gui/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/Gui/makefile -------------------------------------------------------------------------------- /src/Tools/Verima/Gui/myMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/Gui/myMain.py -------------------------------------------------------------------------------- /src/Tools/Verima/Gui/myMain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/Gui/myMain.ui -------------------------------------------------------------------------------- /src/Tools/Verima/Gui/nomBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/Gui/nomBase.py -------------------------------------------------------------------------------- /src/Tools/Verima/Gui/nomBase.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/Gui/nomBase.ui -------------------------------------------------------------------------------- /src/Tools/Verima/Stats/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/Stats/job.py -------------------------------------------------------------------------------- /src/Tools/Verima/Stats/ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/Stats/ref.py -------------------------------------------------------------------------------- /src/Tools/Verima/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/__init__.py -------------------------------------------------------------------------------- /src/Tools/Verima/ajoutEnreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/ajoutEnreg.py -------------------------------------------------------------------------------- /src/Tools/Verima/lance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/lance.py -------------------------------------------------------------------------------- /src/Tools/Verima/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/makefile -------------------------------------------------------------------------------- /src/Tools/Verima/passeJobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/Verima/passeJobs.py -------------------------------------------------------------------------------- /src/Tools/YamsPlug/ViewText.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/YamsPlug/ViewText.ui -------------------------------------------------------------------------------- /src/Tools/YamsPlug/doc/lct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/YamsPlug/doc/lct.rst -------------------------------------------------------------------------------- /src/Tools/YamsPlug/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/YamsPlug/open.png -------------------------------------------------------------------------------- /src/Tools/YamsPlug/select1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/YamsPlug/select1.png -------------------------------------------------------------------------------- /src/Tools/ZCracksPlug/Zset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/ZCracksPlug/Zset.py -------------------------------------------------------------------------------- /src/Tools/ZCracksPlug/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/ZCracksPlug/main.py -------------------------------------------------------------------------------- /src/Tools/ZCracksPlug/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/ZCracksPlug/output.py -------------------------------------------------------------------------------- /src/Tools/ZCracksPlug/readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/ZCracksPlug/readme.sh -------------------------------------------------------------------------------- /src/Tools/ZCracksPlug/sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/ZCracksPlug/sphere.py -------------------------------------------------------------------------------- /src/Tools/ZCracksPlug/zcracks.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Tools/blocFissure/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/blocFissure/README -------------------------------------------------------------------------------- /src/Tools/padder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/padder/CMakeLists.txt -------------------------------------------------------------------------------- /src/Tools/padder/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/padder/README.txt -------------------------------------------------------------------------------- /src/Tools/smesh_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/src/Tools/smesh_plugins.py -------------------------------------------------------------------------------- /test/0README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/0README -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/CTestTestfileInstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/CTestTestfileInstall.cmake -------------------------------------------------------------------------------- /test/PAL_MESH_041_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/PAL_MESH_041_mesh.py -------------------------------------------------------------------------------- /test/PAL_MESH_043_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/PAL_MESH_043_2D.py -------------------------------------------------------------------------------- /test/PAL_MESH_043_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/PAL_MESH_043_3D.py -------------------------------------------------------------------------------- /test/SMESH_AdvancedEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_AdvancedEditor.py -------------------------------------------------------------------------------- /test/SMESH_BelongToGeom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_BelongToGeom.py -------------------------------------------------------------------------------- /test/SMESH_BuildCompound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_BuildCompound.py -------------------------------------------------------------------------------- /test/SMESH_GroupFromGeom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_GroupFromGeom.py -------------------------------------------------------------------------------- /test/SMESH_GroupFromGeom2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_GroupFromGeom2.py -------------------------------------------------------------------------------- /test/SMESH_GroupLyingOnGeom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_GroupLyingOnGeom.py -------------------------------------------------------------------------------- /test/SMESH_MailReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_MailReader.py -------------------------------------------------------------------------------- /test/SMESH_MeshioFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_MeshioFiles.py -------------------------------------------------------------------------------- /test/SMESH_MeshioShapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_MeshioShapes.py -------------------------------------------------------------------------------- /test/SMESH_Nut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_Nut.py -------------------------------------------------------------------------------- /test/SMESH_Partition1_tetra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_Partition1_tetra.py -------------------------------------------------------------------------------- /test/SMESH_RegularGridTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_RegularGridTest.cxx -------------------------------------------------------------------------------- /test/SMESH_Sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_Sphere.py -------------------------------------------------------------------------------- /test/SMESH_algo_switch_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_algo_switch_box.py -------------------------------------------------------------------------------- /test/SMESH_algo_switch_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_algo_switch_face.py -------------------------------------------------------------------------------- /test/SMESH_beta_law.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_beta_law.py -------------------------------------------------------------------------------- /test/SMESH_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_blocks.py -------------------------------------------------------------------------------- /test/SMESH_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_box.py -------------------------------------------------------------------------------- /test/SMESH_box2_tetra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_box2_tetra.py -------------------------------------------------------------------------------- /test/SMESH_box3_tetra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_box3_tetra.py -------------------------------------------------------------------------------- /test/SMESH_box_tetra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_box_tetra.py -------------------------------------------------------------------------------- /test/SMESH_controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_controls.py -------------------------------------------------------------------------------- /test/SMESH_demo_hexa2_upd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_demo_hexa2_upd.py -------------------------------------------------------------------------------- /test/SMESH_fixation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_fixation.py -------------------------------------------------------------------------------- /test/SMESH_fixation_hexa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_fixation_hexa.py -------------------------------------------------------------------------------- /test/SMESH_fixation_netgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_fixation_netgen.py -------------------------------------------------------------------------------- /test/SMESH_fixation_tetra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_fixation_tetra.py -------------------------------------------------------------------------------- /test/SMESH_flight_skin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_flight_skin.py -------------------------------------------------------------------------------- /test/SMESH_freebord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_freebord.py -------------------------------------------------------------------------------- /test/SMESH_hexaedre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_hexaedre.py -------------------------------------------------------------------------------- /test/SMESH_mechanic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_mechanic.py -------------------------------------------------------------------------------- /test/SMESH_mechanic_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_mechanic_editor.py -------------------------------------------------------------------------------- /test/SMESH_mechanic_netgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_mechanic_netgen.py -------------------------------------------------------------------------------- /test/SMESH_mechanic_tetra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_mechanic_tetra.py -------------------------------------------------------------------------------- /test/SMESH_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_reg.py -------------------------------------------------------------------------------- /test/SMESH_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_test.py -------------------------------------------------------------------------------- /test/SMESH_test0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_test0.py -------------------------------------------------------------------------------- /test/SMESH_test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_test1.py -------------------------------------------------------------------------------- /test/SMESH_test1_AndDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_test1_AndDisplay.py -------------------------------------------------------------------------------- /test/SMESH_test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_test2.py -------------------------------------------------------------------------------- /test/SMESH_test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_test3.py -------------------------------------------------------------------------------- /test/SMESH_test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_test4.py -------------------------------------------------------------------------------- /test/SMESH_test5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/SMESH_test5.py -------------------------------------------------------------------------------- /test/create_penta_biquad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/create_penta_biquad.py -------------------------------------------------------------------------------- /test/data/Mesh_tri.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/data/Mesh_tri.med -------------------------------------------------------------------------------- /test/doublenodes_polyhedra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/doublenodes_polyhedra.py -------------------------------------------------------------------------------- /test/ex00_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex00_all.py -------------------------------------------------------------------------------- /test/ex01_cube2build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex01_cube2build.py -------------------------------------------------------------------------------- /test/ex02_cube2primitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex02_cube2primitive.py -------------------------------------------------------------------------------- /test/ex03_cube2partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex03_cube2partition.py -------------------------------------------------------------------------------- /test/ex04_cube5tetraHexa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex04_cube5tetraHexa.py -------------------------------------------------------------------------------- /test/ex05_hole1build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex05_hole1build.py -------------------------------------------------------------------------------- /test/ex06_hole1boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex06_hole1boolean.py -------------------------------------------------------------------------------- /test/ex07_hole1partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex07_hole1partition.py -------------------------------------------------------------------------------- /test/ex08_hole2build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex08_hole2build.py -------------------------------------------------------------------------------- /test/ex09_grid4build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex09_grid4build.py -------------------------------------------------------------------------------- /test/ex10_grid4geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex10_grid4geometry.py -------------------------------------------------------------------------------- /test/ex11_grid3partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex11_grid3partition.py -------------------------------------------------------------------------------- /test/ex12_grid17partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex12_grid17partition.py -------------------------------------------------------------------------------- /test/ex13_hole1partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex13_hole1partial.py -------------------------------------------------------------------------------- /test/ex14_cyl1holed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex14_cyl1holed.py -------------------------------------------------------------------------------- /test/ex15_cyl2geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex15_cyl2geometry.py -------------------------------------------------------------------------------- /test/ex16_cyl2complementary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex16_cyl2complementary.py -------------------------------------------------------------------------------- /test/ex17_dome1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex17_dome1.py -------------------------------------------------------------------------------- /test/ex18_dome2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex18_dome2.py -------------------------------------------------------------------------------- /test/ex19_sphereINcube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex19_sphereINcube.py -------------------------------------------------------------------------------- /test/ex21_lamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex21_lamp.py -------------------------------------------------------------------------------- /test/ex24_cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex24_cylinder.py -------------------------------------------------------------------------------- /test/ex29_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex29_refine.py -------------------------------------------------------------------------------- /test/ex30_groupsOp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex30_groupsOp.py -------------------------------------------------------------------------------- /test/ex31_dimGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex31_dimGroup.py -------------------------------------------------------------------------------- /test/ex_MakePolyLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/ex_MakePolyLine.py -------------------------------------------------------------------------------- /test/extrusion_penta_biquad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/extrusion_penta_biquad.py -------------------------------------------------------------------------------- /test/gmsh_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/gmsh_runner.py -------------------------------------------------------------------------------- /test/netgen_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/netgen_runner.py -------------------------------------------------------------------------------- /test/netgen_runner_1D2D3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/netgen_runner_1D2D3D.py -------------------------------------------------------------------------------- /test/netgen_runner_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/netgen_runner_2D.py -------------------------------------------------------------------------------- /test/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/test_helper.py -------------------------------------------------------------------------------- /test/test_smeshplugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/test_smeshplugins.py -------------------------------------------------------------------------------- /test/test_vlapi_growthlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/test_vlapi_growthlayer.py -------------------------------------------------------------------------------- /test/test_volume_criteria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/test_volume_criteria.py -------------------------------------------------------------------------------- /test/tests.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalomePlatform/smesh/HEAD/test/tests.set --------------------------------------------------------------------------------