0026254: Inject GeomAbs_OffsetCurve into GeomAbs_CurveType enumeration
[occt.git] / src / DrawTrSurf / DrawTrSurf_Triangulation.hxx
CommitLineData
42cf5bc1 1// Created on: 1995-03-06
2// Created by: Laurent PAINNOT
3// Copyright (c) 1995-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _DrawTrSurf_Triangulation_HeaderFile
18#define _DrawTrSurf_Triangulation_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <TColStd_HArray1OfInteger.hxx>
24#include <Standard_Boolean.hxx>
25#include <Draw_Drawable3D.hxx>
26#include <Standard_OStream.hxx>
27#include <Draw_Interpretor.hxx>
28class Poly_Triangulation;
29class Draw_Display;
30class Draw_Drawable3D;
31
32
33class DrawTrSurf_Triangulation;
34DEFINE_STANDARD_HANDLE(DrawTrSurf_Triangulation, Draw_Drawable3D)
35
36//! Used to display a triangulation.
37//!
38//! Display internal edges in blue
39//! Display boundary edges in red
40//! Optional display of triangles and nodes indices.
41class DrawTrSurf_Triangulation : public Draw_Drawable3D
42{
43
44public:
45
46
47 Standard_EXPORT DrawTrSurf_Triangulation(const Handle(Poly_Triangulation)& T);
48
49 Standard_EXPORT Handle(Poly_Triangulation) Triangulation() const;
50
51 Standard_EXPORT void ShowNodes (const Standard_Boolean B);
52
53 Standard_EXPORT Standard_Boolean ShowNodes() const;
54
55 Standard_EXPORT void ShowTriangles (const Standard_Boolean B);
56
57 Standard_EXPORT Standard_Boolean ShowTriangles() const;
58
59 Standard_EXPORT void DrawOn (Draw_Display& dis) const;
60
61 //! For variable copy.
62 Standard_EXPORT virtual Handle(Draw_Drawable3D) Copy() const Standard_OVERRIDE;
63
64 //! For variable dump.
65 Standard_EXPORT virtual void Dump (Standard_OStream& S) const Standard_OVERRIDE;
66
67 //! For variable whatis command. Set as a result the
68 //! type of the variable.
69 Standard_EXPORT virtual void Whatis (Draw_Interpretor& I) const Standard_OVERRIDE;
70
71
72
73
74 DEFINE_STANDARD_RTTI(DrawTrSurf_Triangulation,Draw_Drawable3D)
75
76protected:
77
78
79
80
81private:
82
83
84 Handle(Poly_Triangulation) myTriangulation;
85 Handle(TColStd_HArray1OfInteger) myInternals;
86 Handle(TColStd_HArray1OfInteger) myFree;
87 Standard_Boolean myNodes;
88 Standard_Boolean myTriangles;
89
90
91};
92
93
94
95
96
97
98
99#endif // _DrawTrSurf_Triangulation_HeaderFile