]> SALOME platform Git repositories - plugins/netgenplugin.git/blobdiff - doc/salome/examples/netgendemo.py
Salome HOME
23352: [CEA] Order and naming of meshing algorithms
[plugins/netgenplugin.git] / doc / salome / examples / netgendemo.py
index 8ef585b41a8f273086c8d3c8d71a2bbc14614587..2cc73a0ed84bb26b8d04ec54e1b3da11b755e90a 100644 (file)
@@ -18,7 +18,7 @@ geompy.addToStudy(box, "Box")
 # 1. Create a triangular 2D mesh on the box with NETGEN_1D2D algorithm
 triaN = smesh.Mesh(box, "Box : triangular mesh by NETGEN_1D2D")
 
-# create a Netgen_1D2D algorithm for solids
+# create a NETGEN_1D2D algorithm for solids
 algo2D = triaN.Triangle(smeshBuilder.NETGEN_1D2D)
 
 # define hypotheses
@@ -33,7 +33,7 @@ n12_params.SetMaxSize(300)
 # 2. Create a tetrahedral mesh on the box with NETGEN_1D2D3D algorithm (full netgen)
 tetraN = smesh.Mesh(box, "Box : tetrahedrical mesh by NETGEN_1D2D3D")
 
-# create a Netgen_1D2D3D algorithm for solids
+# create a NETGEN_1D2D3D algorithm for solids
 algo3D = tetraN.Tetrahedron(smeshBuilder.FULL_NETGEN)
 
 # define hypotheses