]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
PR: doc correction for StdMeshers
authorprascle <prascle>
Wed, 20 Mar 2013 15:11:59 +0000 (15:11 +0000)
committerprascle <prascle>
Wed, 20 Mar 2013 15:11:59 +0000 (15:11 +0000)
doc/salome/gui/SMESH/doxyfile_py.in
doc/salome/gui/SMESH/input/smeshpy_interface.doc
src/SMESH_SWIG/smesh_algorithm.py

index 6da1f2a08f246114d78393abb7e32222dd95c27b..33eb262064a20cc423579484805b7ee6e9aae78f 100755 (executable)
@@ -101,7 +101,7 @@ EXAMPLE_RECURSIVE      = NO
 #---------------------------------------------------------------------------
 INPUT             = @top_srcdir@/src/SMESH_SWIG/smeshBuilder.py \
                     @top_srcdir@/src/SMESH_SWIG/smesh_algorithm.py \
-                    @top_srcdir@/src/SMESH_SWIG/StdMeshersDC.py
+                    @top_srcdir@/src/SMESH_SWIG/StdMeshersBuilder.py
 FILE_PATTERNS     = 
 IMAGE_PATH        = @srcdir@/images
 RECURSIVE         = NO
index fcc2c0a44321327df712e823a6c52decb926e93e..2542a93e3abc36927c623b02878597a00b73a409 100644 (file)
@@ -9,7 +9,7 @@ Documentation for SALOME %Mesh module Python API is available in two forms:
 - <a href="smeshpy_doc/modules.html">Structured documentation</a>, where all methods and
 classes are grouped by their functionality, like it is done in the GUI documentation
 - <a href="smeshpy_doc/namespaces.html">Linear documentation</a> grouped only by classes, declared
-in the \ref SMESH_SWIG.smeshBuilder "smeshBuilder" and \ref SMESH_SWIG.StdMeshersDC "StdMeshersDC" Python packages.
+in the \ref SMESH_SWIG.smeshBuilder "smeshBuilder" and \ref SMESH_SWIG.StdMeshersBuilder "StdMeshersBuilder" Python packages.
 
 Class \ref SMESH_SWIG.smeshBuilder.smeshBuilder "smeshBuilder" provides an interface to create and handle
 meshes. It can be used to create an empty mesh or to import mesh from the data file.
@@ -19,7 +19,7 @@ methods, described in \ref SMESH_SWIG.smeshBuilder.Mesh "class Mesh" documentati
 
 Class \ref SMESH_SWIG.smeshBuilder.Mesh "Mesh" allows assigning algorithms to a mesh.
 Please note that some algorithms, included in the standard SALOME
-distribution are always available. Python package \ref SMESH_SWIG.StdMeshersDC "StdMeshersDC"
+distribution are always available. Python package \ref SMESH_SWIG.StdMeshersBuilder "StdMeshersBuilder"
 provides an interface for standard meshing algorithms included into
 the SALOME %Mesh module distribution, like:
 - REGULAR (1D)
index 407f7817e7a02d4ab71e23b32971a3a4903d3a7b..184d76ef00e1f18cb18464e34dead091aee813d2 100644 (file)
@@ -32,8 +32,8 @@ import SMESH
 #
 #  For each meshing algorithm, a python class inheriting from class %Mesh_Algorithm
 #  should be defined. This descendant class should have two attributes defining the way
-#  it is created by class Mesh (see e.g. class @ref StdMeshersDC.StdMeshersDC_Segment "StdMeshersDC_Segment"
-#  in StdMeshersDC package):
+#  it is created by class Mesh (see e.g. class @ref StdMeshersBuilder.StdMeshersBuilder_Segment "StdMeshersBuilder_Segment"
+#  in StdMeshersBuilder package):
 #  - @c meshMethod attribute defines name of method of class smesh.Mesh by calling which the
 #    python class of algorithm is created; this method is dynamically added to the smesh.Mesh class
 #    in runtime. For example, if in @c class MyPlugin_Algorithm this attribute is defined as