mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
0027632: Visualization, XCAFPrs_AISObject - provide method for assigning new Label in the document
This commit is contained in:
parent
60adbe67f2
commit
593dfe97ea
@ -29,7 +29,14 @@ public:
|
|||||||
Standard_EXPORT XCAFPrs_AISObject (const TDF_Label& theLabel);
|
Standard_EXPORT XCAFPrs_AISObject (const TDF_Label& theLabel);
|
||||||
|
|
||||||
//! Returns the label which was visualised by this presentation
|
//! Returns the label which was visualised by this presentation
|
||||||
Standard_EXPORT inline TDF_Label GetLabel() const { return myLabel; }
|
const TDF_Label& GetLabel() const { return myLabel; }
|
||||||
|
|
||||||
|
//! Assign the label to this presentation
|
||||||
|
//! (but does not mark it outdated with SetToUpdate()).
|
||||||
|
void SetLabel (const TDF_Label& theLabel)
|
||||||
|
{
|
||||||
|
myLabel = theLabel;
|
||||||
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
@ -48,7 +55,7 @@ protected:
|
|||||||
//! By default, the style uses white color for curves and surfaces.
|
//! By default, the style uses white color for curves and surfaces.
|
||||||
Standard_EXPORT virtual void DefaultStyle (XCAFPrs_Style& theStyle) const;
|
Standard_EXPORT virtual void DefaultStyle (XCAFPrs_Style& theStyle) const;
|
||||||
|
|
||||||
private:
|
protected:
|
||||||
|
|
||||||
TDF_Label myLabel;
|
TDF_Label myLabel;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user