mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-27 15:10:33 +05:00
0021936: [CEA 698] GEO-GUI : Several metho to get the entry of one object, several different results
* add explanation about internal nature of some GEOM methods to the documentation
This commit is contained in:
parent
de4b5b0c72
commit
23dc5a230c
@ -9093,13 +9093,19 @@ class geompyDC(GEOM._objref_GEOM_Gen):
|
|||||||
RaiseIfFailed("LoadTexture", self.InsertOp)
|
RaiseIfFailed("LoadTexture", self.InsertOp)
|
||||||
return ID
|
return ID
|
||||||
|
|
||||||
## Get entry of the object
|
## Get internal name of the object based on its study entry
|
||||||
|
# @note This method does not provide an unique identifier of the geometry object.
|
||||||
|
# @note This is internal function of GEOM component, though it can be used outside it for
|
||||||
|
# appropriate reason (e.g. for identification of geometry object).
|
||||||
# @param obj geometry object
|
# @param obj geometry object
|
||||||
# @return unique object identifier
|
# @return unique object identifier
|
||||||
# @ingroup l1_geompy_auxiliary
|
# @ingroup l1_geompy_auxiliary
|
||||||
def getObjectID(self, obj):
|
def getObjectID(self, obj):
|
||||||
"""
|
"""
|
||||||
Get entry of the object
|
Get internal name of the object based on its study entry.
|
||||||
|
Note: this method does not provide an unique identifier of the geometry object.
|
||||||
|
It is an internal function of GEOM component, though it can be used outside GEOM for
|
||||||
|
appropriate reason (e.g. for identification of geometry object).
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
obj geometry object
|
obj geometry object
|
||||||
|
Loading…
Reference in New Issue
Block a user