a493995a6ee6db24a1cb79214b006ec1187f1da4
[occt.git] / src / HLRBRep / HLRBRep_BiPnt2D.hxx
1 // Created on: 1992-08-21
2 // Created by: Christophe MARION
3 // Copyright (c) 1992-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 _HLRBRep_BiPnt2D_HeaderFile
18 #define _HLRBRep_BiPnt2D_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <gp_Pnt2d.hxx>
25 #include <TopoDS_Shape.hxx>
26 #include <Standard_Boolean.hxx>
27 #include <Standard_Real.hxx>
28 class TopoDS_Shape;
29 class gp_Pnt2d;
30
31
32 //! Contains the colors of a shape.
33 class HLRBRep_BiPnt2D 
34 {
35 public:
36
37   DEFINE_STANDARD_ALLOC
38
39   
40   Standard_EXPORT HLRBRep_BiPnt2D();
41   
42   Standard_EXPORT HLRBRep_BiPnt2D(const Standard_Real x1, const Standard_Real y1, const Standard_Real x2, const Standard_Real y2, const TopoDS_Shape& S, const Standard_Boolean reg1, const Standard_Boolean regn, const Standard_Boolean outl, const Standard_Boolean intl);
43   
44     const gp_Pnt2d& P1() const;
45   
46     const gp_Pnt2d& P2() const;
47   
48     const TopoDS_Shape& Shape() const;
49   
50     void Shape (const TopoDS_Shape& S);
51   
52     Standard_Boolean Rg1Line() const;
53   
54     void Rg1Line (const Standard_Boolean B);
55   
56     Standard_Boolean RgNLine() const;
57   
58     void RgNLine (const Standard_Boolean B);
59   
60     Standard_Boolean OutLine() const;
61   
62     void OutLine (const Standard_Boolean B);
63   
64     Standard_Boolean IntLine() const;
65   
66     void IntLine (const Standard_Boolean B);
67
68
69
70
71 protected:
72
73
74
75
76
77 private:
78
79
80
81   gp_Pnt2d myP1;
82   gp_Pnt2d myP2;
83   TopoDS_Shape myShape;
84   Standard_Boolean myFlags;
85
86
87 };
88
89
90 #include <HLRBRep_BiPnt2D.lxx>
91
92
93
94
95
96 #endif // _HLRBRep_BiPnt2D_HeaderFile