0024624: Lost word in license statement in source files
[occt.git] / src / ShapeUpgrade / ShapeUpgrade_ShapeDivideAngle.cxx
1 // Created on: 1999-05-06
2 // Created by: Pavel DURANDIN
3 // Copyright (c) 1999-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 #include <ShapeUpgrade_ShapeDivideAngle.ixx>
18 #include <ShapeUpgrade_SplitSurfaceAngle.hxx>
19 #include <ShapeUpgrade_FaceDivide.hxx>
20
21 //=======================================================================
22 //function : ShapeUpgrade_ShapeDivideAngle
23 //purpose  : 
24 //=======================================================================
25
26 ShapeUpgrade_ShapeDivideAngle::ShapeUpgrade_ShapeDivideAngle (const Standard_Real MaxAngle)
27 {
28   InitTool ( MaxAngle );
29 }
30
31 //=======================================================================
32 //function : ShapeUpgrade_ShapeDivideAngle
33 //purpose  : 
34 //=======================================================================
35
36 ShapeUpgrade_ShapeDivideAngle::ShapeUpgrade_ShapeDivideAngle(const Standard_Real MaxAngle,
37                                                              const TopoDS_Shape& S):
38        ShapeUpgrade_ShapeDivide(S)
39 {
40   InitTool ( MaxAngle );
41 }
42
43 //=======================================================================
44 //function : InitTool
45 //purpose  : 
46 //=======================================================================
47
48 void ShapeUpgrade_ShapeDivideAngle::InitTool (const Standard_Real MaxAngle)
49 {
50   Handle(ShapeUpgrade_FaceDivide) tool = GetSplitFaceTool();
51   tool->SetSplitSurfaceTool ( new ShapeUpgrade_SplitSurfaceAngle (MaxAngle) );
52   tool->SetWireDivideTool ( 0 ); // no splitting of wire
53   SetSplitFaceTool(tool);
54 }
55      
56 //=======================================================================
57 //function : SetMaxAngle
58 //purpose  : 
59 //=======================================================================
60
61 void ShapeUpgrade_ShapeDivideAngle::SetMaxAngle (const Standard_Real MaxAngle)
62 {
63   InitTool ( MaxAngle );
64 }
65      
66 //=======================================================================
67 //function : MaxAngle
68 //purpose  : 
69 //=======================================================================
70
71 double ShapeUpgrade_ShapeDivideAngle::MaxAngle () const
72 {
73   Handle(ShapeUpgrade_FaceDivide) faceTool = GetSplitFaceTool();
74   if ( faceTool.IsNull() ) return 0.;
75   Handle(ShapeUpgrade_SplitSurfaceAngle) tool = 
76     Handle(ShapeUpgrade_SplitSurfaceAngle)::DownCast ( faceTool );
77   return ( tool.IsNull() ? 0. : tool->MaxAngle() );
78 }
79