0027232: Configuration - fix mblen missing building issue on Android
[occt.git] / src / HLRBRep / HLRBRep_BiPoint.hxx
CommitLineData
42cf5bc1 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#include <Standard_Handle.hxx>
23
24#include <gp_Pnt.hxx>
25#include <TopoDS_Shape.hxx>
26#include <Standard_Boolean.hxx>
27#include <Standard_Real.hxx>
28class TopoDS_Shape;
29class gp_Pnt;
30
31
32//! Contains the colors of a shape.
33class HLRBRep_BiPoint
34{
35public:
36
37 DEFINE_STANDARD_ALLOC
38
39
40 Standard_EXPORT HLRBRep_BiPoint();
41
42 Standard_EXPORT HLRBRep_BiPoint(const Standard_Real x1, const Standard_Real y1, const Standard_Real z1, const Standard_Real x2, const Standard_Real y2, const Standard_Real z2, const TopoDS_Shape& S, const Standard_Boolean reg1, const Standard_Boolean regn, const Standard_Boolean outl, const Standard_Boolean intl);
43
44 const gp_Pnt& P1() const;
45
46 const gp_Pnt& 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
71protected:
72
73
74
75
76
77private:
78
79
80
81 gp_Pnt myP1;
82 gp_Pnt myP2;
83 TopoDS_Shape myShape;
84 Standard_Boolean myFlags;
85
86
87};
88
89
90#include <HLRBRep_BiPoint.lxx>
91
92
93
94
95
96#endif // _HLRBRep_BiPoint_HeaderFile