From 704e8a93a361d3387a56778f16e890e849683963 Mon Sep 17 00:00:00 2001 From: enk Date: Mon, 30 Oct 2006 11:50:49 +0000 Subject: [PATCH] Some modifications: remove unneeded methods. --- idl/VISU_Gen.idl | 38 ++++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/idl/VISU_Gen.idl b/idl/VISU_Gen.idl index d0ad6940..a40d0688 100644 --- a/idl/VISU_Gen.idl +++ b/idl/VISU_Gen.idl @@ -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(); }; //------------------------------------------------------- -- 2.39.2