0026586: Eliminate compile warnings obtained by building occt with vc14: declaration...
[occt.git] / src / IntTools / IntTools_FClass2d.hxx
1 // Created on: 1995-03-22
2 // Created by: Laurent BUCHARD
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 _IntTools_FClass2d_HeaderFile
18 #define _IntTools_FClass2d_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <BRepTopAdaptor_SeqOfPtr.hxx>
25 #include <TColStd_SequenceOfInteger.hxx>
26 #include <Standard_Real.hxx>
27 #include <TopoDS_Face.hxx>
28 #include <Standard_Boolean.hxx>
29 #include <TopAbs_State.hxx>
30 class TopoDS_Face;
31 class gp_Pnt2d;
32
33
34 //! Class provides an algorithm to classify a 2d Point
35 //! in 2d space of face using boundaries of the face.
36 class IntTools_FClass2d 
37 {
38 public:
39
40   DEFINE_STANDARD_ALLOC
41
42   
43
44   //! Empty constructor
45   Standard_EXPORT IntTools_FClass2d();
46   
47
48   //! Initializes algorithm by the face F
49   //! and tolerance Tol
50   Standard_EXPORT IntTools_FClass2d(const TopoDS_Face& F, const Standard_Real Tol);
51   
52
53   //! Initializes algorithm by the face F
54   //! and tolerance Tol
55   Standard_EXPORT void Init (const TopoDS_Face& F, const Standard_Real Tol);
56   
57
58   //! Returns state of infinite 2d point relatively to (0, 0)
59   Standard_EXPORT TopAbs_State PerformInfinitePoint() const;
60   
61
62   //! Returns state of the 2d point Puv.
63   //! If RecadreOnPeriodic is true (defalut value),
64   //! for the periodic surface 2d point, adjusted to period, is
65   //! classified.
66   Standard_EXPORT TopAbs_State Perform (const gp_Pnt2d& Puv, const Standard_Boolean RecadreOnPeriodic = Standard_True) const;
67   
68
69   //! Destructor
70   Standard_EXPORT void Destroy();
71 ~IntTools_FClass2d()
72 {
73   Destroy();
74 }
75   
76
77   //! Test a point with +- an offset (Tol) and returns
78   //! On if some points are OUT an some are IN
79   //! (Caution: Internal use . see the code for more details)
80   Standard_EXPORT TopAbs_State TestOnRestriction (const gp_Pnt2d& Puv, const Standard_Real Tol, const Standard_Boolean RecadreOnPeriodic = Standard_True) const;
81   
82   Standard_EXPORT Standard_Boolean IsHole() const;
83
84
85
86
87 protected:
88
89
90
91
92
93 private:
94
95
96
97   BRepTopAdaptor_SeqOfPtr TabClass;
98   TColStd_SequenceOfInteger TabOrien;
99   Standard_Real Toluv;
100   TopoDS_Face Face;
101   Standard_Real U1;
102   Standard_Real V1;
103   Standard_Real U2;
104   Standard_Real V2;
105   Standard_Real Umin;
106   Standard_Real Umax;
107   Standard_Real Vmin;
108   Standard_Real Vmax;
109   Standard_Boolean myIsHole;
110
111
112 };
113
114
115
116
117
118
119
120 #endif // _IntTools_FClass2d_HeaderFile