mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Introduced new attribute XCAFDoc_VisMaterial storing visualization material definition. XCAFPrs_Style has been exteneded Material() property. XCAFPrs_AISObject::DispatchStyles() maps new XCAFPrs_Style::Material() property onto graphics aspects. RWGltf_GltfJsonParser and RWObj_CafReader now put Material definition into XCAF document instead of a color label. RWGltf_MaterialMetallicRoughness - added missing properties AlphaMode, AlphaCutOff and IsDoubleSided; fixed default values in constructor for Metallic and Roughness. Added commands XGetAllVisMaterials, XGetVisMaterial, XAddVisMaterial, XRemoveVisMaterial, XSetVisMaterial, XUnsetVisMaterial for working with new visualization materials table in the document.
139 lines
5.1 KiB
C++
139 lines
5.1 KiB
C++
// Created on: 2000-08-08
|
|
// Created by: data exchange team
|
|
// Copyright (c) 2000-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#ifndef _XCAFDoc_HeaderFile
|
|
#define _XCAFDoc_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <XCAFDoc_ColorType.hxx>
|
|
class Standard_GUID;
|
|
class XCAFDoc_DocumentTool;
|
|
class XCAFDoc_Location;
|
|
class XCAFDoc_Color;
|
|
class XCAFDoc_DimTol;
|
|
class XCAFDoc_Dimension;
|
|
class XCAFDoc_GeomTolerance;
|
|
class XCAFDoc_Datum;
|
|
class XCAFDoc_Material;
|
|
class XCAFDoc_Volume;
|
|
class XCAFDoc_Area;
|
|
class XCAFDoc_Centroid;
|
|
class XCAFDoc_ClippingPlaneTool;
|
|
class XCAFDoc_ShapeTool;
|
|
class XCAFDoc_ShapeMapTool;
|
|
class XCAFDoc_ColorTool;
|
|
class XCAFDoc_DimTolTool;
|
|
class XCAFDoc_LayerTool;
|
|
class XCAFDoc_MaterialTool;
|
|
class XCAFDoc_GraphNode;
|
|
class XCAFDoc_Editor;
|
|
class XCAFDoc_ViewTool;
|
|
|
|
|
|
//! Definition of general structure of DECAF document
|
|
//! and tools to work with it
|
|
//!
|
|
//! The document is composed of sections, each section
|
|
//! storing its own kind of data and managing by corresponding
|
|
//! tool
|
|
//! Some properties can be attached directly to shapes. These properties are:
|
|
//! * Name (the standard definition from OCAF) - class TDataStd_Name
|
|
//! * Centroid (for the validation of transfer) - class XCAFDoc_Centroid
|
|
//! * Volume (for the validation of transfer) - class XCAFDoc_Volume
|
|
//! * Area (for the validation of transfer) - class XCafDoc_Area
|
|
//! Management of these attributes is realized by OCAF. For getting
|
|
//! the attributes attached to a label the method class
|
|
//! TDF_Label::FindAttribute() should be used.
|
|
class XCAFDoc
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
//! class for containing GraphNodes.
|
|
//! Returns GUID for UAttribute identifying assembly
|
|
Standard_EXPORT static const Standard_GUID& AssemblyGUID();
|
|
|
|
//! Returns GUID for TreeNode representing assembly link
|
|
Standard_EXPORT static const Standard_GUID& ShapeRefGUID();
|
|
|
|
//! Return GUIDs for TreeNode representing specified types of colors
|
|
Standard_EXPORT static const Standard_GUID& ColorRefGUID (const XCAFDoc_ColorType type);
|
|
|
|
//! Return GUIDs for TreeNode representing specified types of DGT
|
|
Standard_EXPORT static const Standard_GUID& DimTolRefGUID();
|
|
|
|
//! Return GUIDs for TreeNode representing specified types of Dimension
|
|
Standard_EXPORT static const Standard_GUID& DimensionRefFirstGUID() ;
|
|
|
|
//! Return GUIDs for TreeNode representing specified types of Dimension
|
|
Standard_EXPORT static const Standard_GUID& DimensionRefSecondGUID() ;
|
|
|
|
//! Return GUIDs for TreeNode representing specified types of GeomTolerance
|
|
Standard_EXPORT static const Standard_GUID& GeomToleranceRefGUID() ;
|
|
|
|
//! Return GUIDs for TreeNode representing specified types of datum
|
|
Standard_EXPORT static const Standard_GUID& DatumRefGUID();
|
|
|
|
//! Return GUIDs for TreeNode representing connections Datum-Toler
|
|
Standard_EXPORT static const Standard_GUID& DatumTolRefGUID();
|
|
|
|
Standard_EXPORT static const Standard_GUID& LayerRefGUID();
|
|
|
|
Standard_EXPORT static const Standard_GUID& MaterialRefGUID();
|
|
|
|
//! Return GUID for TreeNode representing Visualization Material.
|
|
Standard_EXPORT static const Standard_GUID& VisMaterialRefGUID();
|
|
|
|
//! Return GUIDs for representing notes
|
|
Standard_EXPORT static const Standard_GUID& NoteRefGUID();
|
|
|
|
Standard_EXPORT static const Standard_GUID& InvisibleGUID();
|
|
|
|
Standard_EXPORT static const Standard_GUID& ColorByLayerGUID();
|
|
|
|
//! Returns GUID for UAttribute identifying external reference on no-step file
|
|
Standard_EXPORT static const Standard_GUID& ExternRefGUID();
|
|
|
|
//! Returns GUID for UAttribute identifying specified higher usage occurrence
|
|
Standard_EXPORT static const Standard_GUID& SHUORefGUID();
|
|
|
|
//! Return GUIDs for TreeNode representing specified types of View
|
|
Standard_EXPORT static const Standard_GUID& ViewRefGUID();
|
|
|
|
//! Return GUIDs for TreeNode representing specified types of View
|
|
Standard_EXPORT static const Standard_GUID& ViewRefShapeGUID();
|
|
|
|
//! Return GUIDs for TreeNode representing specified types of View
|
|
Standard_EXPORT static const Standard_GUID& ViewRefGDTGUID();
|
|
|
|
//! Return GUIDs for TreeNode representing specified types of View
|
|
Standard_EXPORT static const Standard_GUID& ViewRefPlaneGUID();
|
|
|
|
//! Return GUIDs for GraphNode representing specified types of View
|
|
Standard_EXPORT static const Standard_GUID& ViewRefNoteGUID();
|
|
Standard_EXPORT static const Standard_GUID& ViewRefAnnotationGUID();
|
|
|
|
//! Returns GUID for UAttribute identifying lock flag
|
|
Standard_EXPORT static const Standard_GUID& LockGUID();
|
|
|
|
};
|
|
|
|
#endif // _XCAFDoc_HeaderFile
|