0032951: Coding - get rid of unused headers [GeomConvert to IGESBasic]
[occt.git] / src / HLRBRep / HLRBRep_BiPoint.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_BiPoint_HeaderFile
18 #define _HLRBRep_BiPoint_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22
23 #include <gp_Pnt.hxx>
24 #include <TopoDS_Shape.hxx>
25 class TopoDS_Shape;
26 class gp_Pnt;
27
28 //! Contains the colors of a shape.
29 class HLRBRep_BiPoint 
30 {
31 public:
32
33   DEFINE_STANDARD_ALLOC
34
35   HLRBRep_BiPoint()
36   : myRg1Line (false),
37     myRgNLine (false),
38     myOutLine (false),
39     myIntLine (false) {}
40
41   HLRBRep_BiPoint (const Standard_Real x1, const Standard_Real y1, const Standard_Real z1,
42                    const Standard_Real x2, const Standard_Real y2, const Standard_Real z2,
43                    const TopoDS_Shape& S,
44                    const Standard_Boolean reg1,
45                    const Standard_Boolean regn,
46                    const Standard_Boolean outl,
47                    const Standard_Boolean intl)
48   : myP1 (x1, y1, z1),
49     myP2 (x2, y2, z2),
50     myShape (S),
51     myRg1Line (reg1),
52     myRgNLine (regn),
53     myOutLine (outl),
54     myIntLine (intl) {}
55
56   const gp_Pnt& P1() const { return myP1; }
57
58   const gp_Pnt& P2() const { return myP2; }
59
60   const TopoDS_Shape& Shape() const { return myShape; }
61
62   void Shape (const TopoDS_Shape& S) { myShape = S; }
63
64   Standard_Boolean Rg1Line() const { return myRg1Line; }
65
66   void Rg1Line (const Standard_Boolean B) { myRg1Line = B; }
67
68   Standard_Boolean RgNLine() const { return myRgNLine; }
69
70   void RgNLine (const Standard_Boolean B) { myRgNLine = B; }
71
72   Standard_Boolean OutLine() const { return myOutLine; }
73
74   void OutLine (const Standard_Boolean B) { myOutLine = B; }
75
76   Standard_Boolean IntLine() const { return myIntLine; }
77
78   void IntLine (const Standard_Boolean B) { myIntLine = B; }
79
80 private:
81
82   gp_Pnt myP1;
83   gp_Pnt myP2;
84   TopoDS_Shape myShape;
85   Standard_Boolean myRg1Line;
86   Standard_Boolean myRgNLine;
87   Standard_Boolean myOutLine;
88   Standard_Boolean myIntLine;
89
90 };
91
92 #endif // _HLRBRep_BiPoint_HeaderFile