]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Some modifications: remove unneeded methods.
authorenk <enk@opencascade.com>
Mon, 30 Oct 2006 11:50:49 +0000 (11:50 +0000)
committerenk <enk@opencascade.com>
Mon, 30 Oct 2006 11:50:49 +0000 (11:50 +0000)
idl/VISU_Gen.idl

index d0ad6940e477af6d959295a3a5d26b828ef55779..a40d0688911ff762b15e7487f054c30a7d22a0e0 100644 (file)
@@ -539,32 +539,42 @@ module VISU {
     Orientation GetBarOrientation();
 
     /*!
-     *  PrsMerger methods
+     * PrsMerger method:
+     * Set mesh on group as geometry of presentation.(clear all previously added groups).
+     * \param theMeshName  - mesh name
+     * \param theGroupName - group name
      */
     void SetMeshOnGroup(in string theMeshName,
                        in string theGroupName);
 
+    /*!
+     * PrsMerger method:
+     * Add group as geometry of presentation.
+     * \param theMeshName  - mesh name
+     * \param theGroupName - group name
+     */
     long AddMeshOnGroup(in string theMeshName,
                        in string theGroupName);
 
-    void RemoveGeometryById(in long theId);
-
-    string_array getGroupNames();
-
-    void SetFamilyOnEntity(in string theMeshName,
-                          in Entity theEntity,
-                          in string theFamilyName);
-
-    void SetMeshOnEntity(in string theMeshName,
-                        in Entity theEntity);
-
+    
+    /*!
+     * PrsMerger method:
+     * Set scalar map of presentation.
+     * \param theMeshName  - mesh name
+     * \param theFieldName - the name of scalar field
+     * \param theStampsNum - the iteration number for scalar field
+     * \param theEntity    - entity of scalar field
+     */
     void SetScalarMap(in string theMeshName,
                      in Entity theEntity,
                      in string theFieldName,
                      in long theStampsNum);
-    
-    long GetMeshGeometryPlace(in long theId);
 
+    /*!
+     * PrsMerger method:
+     * Remove all groups.(The scalar map will be placed on all mesh).
+     */
+    void RemoveAllGeom();
   };
 
   //-------------------------------------------------------