For improvements 20019 and 20324.

This commit is contained in:
skl 2009-06-03 07:17:42 +00:00
parent dc33391ec7
commit de4038d0a0

View File

@ -2584,6 +2584,8 @@ module GEOM
* \param theFileName The file, containing the shape. * \param theFileName The file, containing the shape.
* \param theFormatName Specify format for the file reading. * \param theFormatName Specify format for the file reading.
* Available formats can be obtained with <VAR>ImportTranslators()</VAR> method. * Available formats can be obtained with <VAR>ImportTranslators()</VAR> method.
* If format 'IGES_SCALE' is used instead 'IGES' length unit will be
* set to 'meter' and result model will be scaled.
* \return New GEOM_Object, containing the imported shape. * \return New GEOM_Object, containing the imported shape.
*/ */
GEOM_Object Import (in string theFileName, in string theFormatName); GEOM_Object Import (in string theFileName, in string theFormatName);
@ -3077,6 +3079,15 @@ module GEOM
* into python script to avoid the same names in SMESH script * into python script to avoid the same names in SMESH script
*/ */
string_array GetAllDumpNames(); string_array GetAllDumpNames();
/*!
* Publishes the named subshapes of given object in the study.
* \param theStudy The study in which the object is published
* \param theObject The object which named subshapes are published
*/
ListOfGO PublishNamedShapesInStudy(in SALOMEDS::Study theStudy,
//in SObject theSObject,
in Object theObject);
}; };
}; };