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();
};
//-------------------------------------------------------