mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. new file Standard_Dump to prepare and parse Dump in JSON format for OCCT objects 2. some presentations cover the proposed dump functionality. 3. 'bounding', 'vaspects' has '-dumpJson' field to see the DumpJson result 4. Bnd_Box constructor with min/max points is implemented to use Dump of this class in Dump BVH_Box 5. Limitation (some classes of Graphic3d, Prs3d has not full filling for DumpJson)
88 lines
3.0 KiB
C++
88 lines
3.0 KiB
C++
// Created on: 2000-08-11
|
|
// Created by: Andrey BETENEV
|
|
// 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.
|
|
|
|
#include <XCAFPrs_Style.hxx>
|
|
|
|
#include <Standard_Dump.hxx>
|
|
|
|
//=======================================================================
|
|
//function : XCAFPrs_Style
|
|
//purpose :
|
|
//=======================================================================
|
|
XCAFPrs_Style::XCAFPrs_Style()
|
|
: myHasColorSurf(Standard_False),
|
|
myHasColorCurv(Standard_False),
|
|
myIsVisible (Standard_True)
|
|
{
|
|
//
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetColorSurf
|
|
//purpose :
|
|
//=======================================================================
|
|
void XCAFPrs_Style::SetColorSurf (const Quantity_ColorRGBA& theColor)
|
|
{
|
|
myColorSurf = theColor;
|
|
myHasColorSurf = Standard_True;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : UnSetColorSurf
|
|
//purpose :
|
|
//=======================================================================
|
|
void XCAFPrs_Style::UnSetColorSurf()
|
|
{
|
|
myHasColorSurf = Standard_False;
|
|
myColorSurf.ChangeRGB().SetValues (Quantity_NOC_YELLOW);
|
|
myColorSurf.SetAlpha (1.0f);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetColorCurv
|
|
//purpose :
|
|
//=======================================================================
|
|
void XCAFPrs_Style::SetColorCurv (const Quantity_Color& theColor)
|
|
{
|
|
myColorCurv = theColor;
|
|
myHasColorCurv = Standard_True;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : UnSetColorCurv
|
|
//purpose :
|
|
//=======================================================================
|
|
void XCAFPrs_Style::UnSetColorCurv()
|
|
{
|
|
myHasColorCurv = Standard_False;
|
|
myColorCurv.SetValues (Quantity_NOC_YELLOW);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : DumpJson
|
|
//purpose :
|
|
//=======================================================================
|
|
void XCAFPrs_Style::DumpJson (Standard_OStream& theOStream, const Standard_Integer theDepth) const
|
|
{
|
|
DUMP_CLASS_BEGIN (theOStream, XCAFPrs_Style);
|
|
|
|
DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &myColorSurf);
|
|
DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &myColorCurv);
|
|
|
|
DUMP_FIELD_VALUE_NUMERICAL (theOStream, myHasColorSurf);
|
|
DUMP_FIELD_VALUE_NUMERICAL (theOStream, myHasColorCurv);
|
|
DUMP_FIELD_VALUE_NUMERICAL (theOStream, myIsVisible);
|
|
}
|