1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-07-30 13:05:50 +03:00
occt/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideContinuity.cxx
abv 42cf5bc1ca 0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl":
- WOK-generated header files from inc and sources from drv are moved to src
- CDL files removed
- All packages are converted to nocdlpack
2015-07-12 07:42:38 +03:00

129 lines
5.0 KiB
C++

// Created on: 1999-04-30
// Created by: data exchange team
// Copyright (c) 1999-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <Precision.hxx>
#include <ShapeUpgrade_FaceDivide.hxx>
#include <ShapeUpgrade_ShapeDivideContinuity.hxx>
#include <ShapeUpgrade_SplitCurve2dContinuity.hxx>
#include <ShapeUpgrade_SplitCurve3dContinuity.hxx>
#include <ShapeUpgrade_SplitSurfaceContinuity.hxx>
#include <ShapeUpgrade_WireDivide.hxx>
#include <TopoDS_Shape.hxx>
//=======================================================================
//function : ShapeUpgrade_ShapeDivideContinuity
//purpose :
//=======================================================================
ShapeUpgrade_ShapeDivideContinuity::ShapeUpgrade_ShapeDivideContinuity()
{
myCurve3dCriterion = GeomAbs_C1;
myCurve2dCriterion = GeomAbs_C1;
mySurfaceCriterion = GeomAbs_C1;
myTolerance3d = Precision::Confusion();
myTolerance2d = Precision::PConfusion();
}
//=======================================================================
//function : ShapeUpgrade_ShapeDivideContinuity
//purpose :
//=======================================================================
ShapeUpgrade_ShapeDivideContinuity::ShapeUpgrade_ShapeDivideContinuity(const TopoDS_Shape& S):
ShapeUpgrade_ShapeDivide(S)
{
myCurve3dCriterion = GeomAbs_C1;
myCurve2dCriterion = GeomAbs_C1;
mySurfaceCriterion = GeomAbs_C1;
myTolerance3d = Precision::Confusion();
myTolerance2d = Precision::PConfusion();
}
//=======================================================================
//function : SetTolerance
//purpose :
//=======================================================================
void ShapeUpgrade_ShapeDivideContinuity::SetTolerance(const Standard_Real Tol)
{
myTolerance3d = Tol;
}
//=======================================================================
//function : SetTolerance2d
//purpose :
//=======================================================================
void ShapeUpgrade_ShapeDivideContinuity::SetTolerance2d(const Standard_Real Tol)
{
myTolerance2d = Tol;
}
//=======================================================================
//function : SetBoundaryCriterion
//purpose :
//=======================================================================
void ShapeUpgrade_ShapeDivideContinuity::SetBoundaryCriterion(const GeomAbs_Shape Criterion)
{
myCurve3dCriterion = Criterion;
}
//=======================================================================
//function : SetPCurveCriterion
//purpose :
//=======================================================================
void ShapeUpgrade_ShapeDivideContinuity::SetPCurveCriterion(const GeomAbs_Shape Criterion)
{
myCurve2dCriterion = Criterion;
}
//=======================================================================
//function : SetSurfaceCriterion
//purpose :
//=======================================================================
void ShapeUpgrade_ShapeDivideContinuity::SetSurfaceCriterion(const GeomAbs_Shape Criterion)
{
mySurfaceCriterion = Criterion;
}
//=======================================================================
//function : GetSplitFaceTool
//purpose :
//=======================================================================
Handle(ShapeUpgrade_FaceDivide) ShapeUpgrade_ShapeDivideContinuity::GetSplitFaceTool() const
{
Handle(ShapeUpgrade_SplitCurve2dContinuity) theSplitCurve2dTool = new ShapeUpgrade_SplitCurve2dContinuity;
Handle(ShapeUpgrade_SplitCurve3dContinuity) theSplitCurve3dTool = new ShapeUpgrade_SplitCurve3dContinuity;
Handle(ShapeUpgrade_SplitSurfaceContinuity) theSplitSurfaceTool = new ShapeUpgrade_SplitSurfaceContinuity;
theSplitCurve2dTool->SetCriterion (myCurve2dCriterion);
theSplitCurve3dTool->SetCriterion (myCurve3dCriterion);
theSplitSurfaceTool->SetCriterion (mySurfaceCriterion);
theSplitCurve2dTool->SetTolerance (myTolerance2d);
theSplitCurve3dTool->SetTolerance (myTolerance3d);
theSplitSurfaceTool->SetTolerance (myTolerance3d);
Handle(ShapeUpgrade_WireDivide) theSplitWireTool = new ShapeUpgrade_WireDivide;
theSplitWireTool->SetSplitCurve2dTool ( theSplitCurve2dTool );
theSplitWireTool->SetSplitCurve3dTool ( theSplitCurve3dTool );
Handle(ShapeUpgrade_FaceDivide) theSplitFaceTool = new ShapeUpgrade_FaceDivide;
theSplitFaceTool->SetSplitSurfaceTool ( theSplitSurfaceTool );
theSplitFaceTool->SetWireDivideTool ( theSplitWireTool );
return theSplitFaceTool;
}