0024023: Revamp the OCCT Handle -- ambiguity
[occt.git] / src / ShapeUpgrade / ShapeUpgrade_ShapeDivideAngle.cxx
CommitLineData
b311480e 1// Created on: 1999-05-06
2// Created by: Pavel DURANDIN
3// Copyright (c) 1999-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
17#include <ShapeUpgrade_ShapeDivideAngle.ixx>
18#include <ShapeUpgrade_SplitSurfaceAngle.hxx>
19#include <ShapeUpgrade_FaceDivide.hxx>
c04c30b3 20#include <ShapeUpgrade_WireDivide.hxx>
7fd59977 21
22//=======================================================================
23//function : ShapeUpgrade_ShapeDivideAngle
24//purpose :
25//=======================================================================
26
27ShapeUpgrade_ShapeDivideAngle::ShapeUpgrade_ShapeDivideAngle (const Standard_Real MaxAngle)
28{
29 InitTool ( MaxAngle );
30}
31
32//=======================================================================
33//function : ShapeUpgrade_ShapeDivideAngle
34//purpose :
35//=======================================================================
36
37ShapeUpgrade_ShapeDivideAngle::ShapeUpgrade_ShapeDivideAngle(const Standard_Real MaxAngle,
38 const TopoDS_Shape& S):
39 ShapeUpgrade_ShapeDivide(S)
40{
41 InitTool ( MaxAngle );
42}
43
44//=======================================================================
45//function : InitTool
46//purpose :
47//=======================================================================
48
49void ShapeUpgrade_ShapeDivideAngle::InitTool (const Standard_Real MaxAngle)
50{
51 Handle(ShapeUpgrade_FaceDivide) tool = GetSplitFaceTool();
52 tool->SetSplitSurfaceTool ( new ShapeUpgrade_SplitSurfaceAngle (MaxAngle) );
53 tool->SetWireDivideTool ( 0 ); // no splitting of wire
54 SetSplitFaceTool(tool);
55}
56
57//=======================================================================
58//function : SetMaxAngle
59//purpose :
60//=======================================================================
61
62void ShapeUpgrade_ShapeDivideAngle::SetMaxAngle (const Standard_Real MaxAngle)
63{
64 InitTool ( MaxAngle );
65}
66
67//=======================================================================
68//function : MaxAngle
69//purpose :
70//=======================================================================
71
72double ShapeUpgrade_ShapeDivideAngle::MaxAngle () const
73{
74 Handle(ShapeUpgrade_FaceDivide) faceTool = GetSplitFaceTool();
75 if ( faceTool.IsNull() ) return 0.;
76 Handle(ShapeUpgrade_SplitSurfaceAngle) tool =
5e5b6f81 77 Handle(ShapeUpgrade_SplitSurfaceAngle)::DownCast (faceTool->GetSplitSurfaceTool());
7fd59977 78 return ( tool.IsNull() ? 0. : tool->MaxAngle() );
79}
80