Warnings on vc14 were eliminated
[occt.git] / src / ShapeUpgrade / ShapeUpgrade_ShapeDivideAngle.hxx
1 // Created on: 1999-05-06
2 // Created by: Pavel DURANDIN
3 // Copyright (c) 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 _ShapeUpgrade_ShapeDivideAngle_HeaderFile
18 #define _ShapeUpgrade_ShapeDivideAngle_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <ShapeUpgrade_ShapeDivide.hxx>
25 #include <Standard_Real.hxx>
26 class TopoDS_Shape;
27
28
29 //! Splits all surfaces of revolution, cylindrical, toroidal,
30 //! conical, spherical surfaces in the given shape so that
31 //! each resulting segment covers not more than defined number
32 //! of degrees (to segments less than 90).
33 class ShapeUpgrade_ShapeDivideAngle  : public ShapeUpgrade_ShapeDivide
34 {
35 public:
36
37   DEFINE_STANDARD_ALLOC
38
39   
40   //! Empty constructor.
41   Standard_EXPORT ShapeUpgrade_ShapeDivideAngle(const Standard_Real MaxAngle);
42   
43   //! Initialize by a Shape.
44   Standard_EXPORT ShapeUpgrade_ShapeDivideAngle(const Standard_Real MaxAngle, const TopoDS_Shape& S);
45   
46   //! Resets tool for splitting face with given angle
47   Standard_EXPORT void InitTool (const Standard_Real MaxAngle);
48   
49   //! Set maximal angle (calls InitTool)
50   Standard_EXPORT void SetMaxAngle (const Standard_Real MaxAngle);
51   
52   //! Returns maximal angle
53   Standard_EXPORT Standard_Real MaxAngle() const;
54
55
56
57
58 protected:
59
60
61
62
63
64 private:
65
66
67
68
69
70 };
71
72
73
74
75
76
77
78 #endif // _ShapeUpgrade_ShapeDivideAngle_HeaderFile