1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0028044: Data Exchange - implement data structures for Saved Views

Add new root label in Document for Views.
Add new attribute to store View in XDE.
Add object and tool to process Views.
Add new Draw commands for Views.
This commit is contained in:
ika
2016-10-19 18:31:56 +03:00
committed by apn
parent 61887a4ade
commit 2df785d7f1
32 changed files with 2774 additions and 0 deletions

View File

@@ -194,3 +194,36 @@ Standard_GUID XCAFDoc::SHUORefGUID ()
static Standard_GUID ID ("efd212ea-6dfd-11d4-b9c8-0060b0ee281b");
return ID;
}
//=======================================================================
//function : ViewRefGUID
//purpose :
//=======================================================================
Standard_GUID XCAFDoc::ViewRefGUID()
{
static Standard_GUID ID("efd213e5-6dfd-11d4-b9c8-0060b0ee281b");
return ID;
}
//=======================================================================
//function : ViewRefShapeGUID
//purpose :
//=======================================================================
Standard_GUID XCAFDoc::ViewRefShapeGUID()
{
static Standard_GUID ID("efd213e6-6dfd-11d4-b9c8-0060b0ee281b");
return ID;
}
//=======================================================================
//function : ViewRefGDTGUID
//purpose :
//=======================================================================
Standard_GUID XCAFDoc::ViewRefGDTGUID()
{
static Standard_GUID ID("efd213e7-6dfd-11d4-b9c8-0060b0ee281b");
return ID;
}