Salome HOME
0021308: EDF 1923 SMESH: Remove hard-coded dependency of the external mesh plugins...
[modules/smesh.git] / doc / salome / gui / SMESH / input / smeshpy_interface.doc
index 8b63ddfa335a9d9fbc3b388552e6f64b47134f19..e725ef99cf237c4d8d012ac6cd3f0752efb768f4 100644 (file)
@@ -36,21 +36,13 @@ distribution are always available:
 - Hexa(3D)
 - etc...
 
-There are also some algorithms, which can be installed optionally,
-some of them are based on open-source meshers:
-- NETGEN (1D-2D, 2D, 1D-2D-3D, 3D)
-
-... and others are based on commercial meshers:
-- GHS3D (3D)
-- BLSURF (2D)
-
 To add hypotheses, use the interfaces, provided by the assigned
 algorithms.
 
 Below you can see an example of usage of the package smesh for 3d mesh generation. 
 
 \anchor example_3d_mesh
-<h2>Example of 3d mesh generation with NETGEN:</h2>
+<h2>Example of 3d mesh generation:</h2>
 
 \code
 from geompy import * 
@@ -115,7 +107,7 @@ algo2d = tetra.Triangle()
 algo2d.LengthFromEdges() 
 
 # Define 3D hypothesis
-algo3d = tetra.Tetrahedron(smesh.NETGEN) 
+algo3d = tetra.Tetrahedron()
 algo3d.MaxElementVolume(100) 
 
 # Compute the mesh
@@ -130,6 +122,7 @@ Examples of Python scripts for all Mesh operations are available by
 the following links:
 
 - \subpage tui_creating_meshes_page
+- \subpage tui_cartesian_algo
 - \subpage tui_viewing_meshes_page
 - \subpage tui_defining_hypotheses_page
 - \subpage tui_quality_controls_page
@@ -139,5 +132,7 @@ the following links:
 - \subpage tui_transforming_meshes_page
 - \subpage tui_notebook_smesh_page
 - \subpage tui_measurements_page
+- \subpage tui_generate_flat_elements_page
+- \subpage tui_work_on_objects_from_gui
 
 */