mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
74 lines
1.9 KiB
C++
74 lines
1.9 KiB
C++
// Created on: 2000-05-25
|
|
// Created by: Peter KURNEV
|
|
// 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 _BOPTest_DrawableShape_HeaderFile
|
|
#define _BOPTest_DrawableShape_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
|
|
#include <DBRep_DrawableShape.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
class Draw_Text3D;
|
|
class TopoDS_Shape;
|
|
class gp_Pnt;
|
|
class Draw_Display;
|
|
|
|
|
|
class BOPTest_DrawableShape;
|
|
DEFINE_STANDARD_HANDLE(BOPTest_DrawableShape, DBRep_DrawableShape)
|
|
|
|
|
|
class BOPTest_DrawableShape : public DBRep_DrawableShape
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
Standard_EXPORT BOPTest_DrawableShape(const TopoDS_Shape& S, const Draw_Color& FreeCol, const Draw_Color& ConnCol, const Draw_Color& EdgeCol, const Draw_Color& IsosCol, const Standard_Real size, const Standard_Integer nbisos, const Standard_Integer discret, const Standard_CString Text, const Draw_Color& TextColor);
|
|
|
|
Standard_EXPORT BOPTest_DrawableShape(const TopoDS_Shape& S, const Standard_CString Text, const Draw_Color& TextColor);
|
|
|
|
Standard_EXPORT virtual void DrawOn (Draw_Display& dis) const Standard_OVERRIDE;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(BOPTest_DrawableShape,DBRep_DrawableShape)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Standard_EXPORT gp_Pnt Pnt() const;
|
|
|
|
Handle(Draw_Text3D) myText;
|
|
Draw_Color myTextColor;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _BOPTest_DrawableShape_HeaderFile
|