mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-30 13:05:50 +03:00
Update BOP commands to use progress indicator Deleted wrong usage of progress indicator from bop operations Added UserBreak() method to break execution boolean operation if progress indicator is used Added method AnalyzeProgress() to calculate steps of progress indicator Introduce BOPAlgo_ParallelAlgo which has myRange as a field to be used in parallel vector. Provide suitable way of keeping the progress steps of operations. Give meaningful names to progress scopes. Propagate progress indicator into deeper methods of BOA. Add progress indicator to BOPAlgo_BuilderFace and BOPAlgo_WireSplitter, BOPAlgo_BuilderSolid and BOPAlgo_ShellSplitter
208 lines
6.7 KiB
C++
208 lines
6.7 KiB
C++
// Created on: 1995-08-31
|
|
// Created by: Remi LEQUETTE
|
|
// Copyright (c) 1995-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 <BRepFilletAPI_MakeFillet2d.hxx>
|
|
#include <TopoDS_Edge.hxx>
|
|
#include <TopoDS_Face.hxx>
|
|
#include <TopoDS_Shape.hxx>
|
|
#include <TopoDS_Vertex.hxx>
|
|
|
|
//=======================================================================
|
|
//function : BRepFilletAPI_MakeFillet2d
|
|
//purpose :
|
|
//=======================================================================
|
|
BRepFilletAPI_MakeFillet2d::BRepFilletAPI_MakeFillet2d()
|
|
{
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : BRepFilletAPI_MakeFillet2d
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
BRepFilletAPI_MakeFillet2d::BRepFilletAPI_MakeFillet2d(const TopoDS_Face& F)
|
|
{
|
|
myMakeChFi2d.Init(F);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Init
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void BRepFilletAPI_MakeFillet2d::Init(const TopoDS_Face& F)
|
|
{
|
|
myMakeChFi2d.Init(F);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Init
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void BRepFilletAPI_MakeFillet2d::Init(const TopoDS_Face& RefFace, const TopoDS_Face& ModFace)
|
|
{
|
|
myMakeChFi2d.Init(RefFace, ModFace);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : AddFillet
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Edge BRepFilletAPI_MakeFillet2d::AddFillet(const TopoDS_Vertex& V, const Standard_Real Radius)
|
|
{
|
|
return myMakeChFi2d.AddFillet(V, Radius);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ModifyFillet
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Edge BRepFilletAPI_MakeFillet2d::ModifyFillet(const TopoDS_Edge& Fillet, const Standard_Real Radius)
|
|
{
|
|
return myMakeChFi2d.ModifyFillet(Fillet, Radius);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RemoveFillet
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Vertex BRepFilletAPI_MakeFillet2d::RemoveFillet(const TopoDS_Edge& Fillet)
|
|
{
|
|
return myMakeChFi2d.RemoveFillet(Fillet);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : AddChamfer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Edge BRepFilletAPI_MakeFillet2d::AddChamfer(const TopoDS_Edge& E1, const TopoDS_Edge& E2, const Standard_Real D1, const Standard_Real D2)
|
|
{
|
|
return myMakeChFi2d.AddChamfer(E1, E2, D1, D2);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : AddChamfer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Edge BRepFilletAPI_MakeFillet2d::AddChamfer(const TopoDS_Edge& E, const TopoDS_Vertex& V, const Standard_Real D, const Standard_Real Ang)
|
|
{
|
|
return myMakeChFi2d.AddChamfer(E, V, D, Ang);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ModifyChamfer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Edge BRepFilletAPI_MakeFillet2d::ModifyChamfer(const TopoDS_Edge& Chamfer, const TopoDS_Edge& E1, const TopoDS_Edge& E2, const Standard_Real D1, const Standard_Real D2)
|
|
{
|
|
return myMakeChFi2d.ModifyChamfer(Chamfer, E1, E2, D1, D2);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ModifyChamfer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Edge BRepFilletAPI_MakeFillet2d::ModifyChamfer(const TopoDS_Edge& Chamfer, const TopoDS_Edge& E, const Standard_Real D, const Standard_Real Ang)
|
|
{
|
|
return myMakeChFi2d.ModifyChamfer(Chamfer, E, D, Ang);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RemoveChamfer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Vertex BRepFilletAPI_MakeFillet2d::RemoveChamfer(const TopoDS_Edge& Chamfer)
|
|
{
|
|
return myMakeChFi2d.RemoveChamfer(Chamfer);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : BasisEdge
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const TopoDS_Edge& BRepFilletAPI_MakeFillet2d::BasisEdge(const TopoDS_Edge& E) const
|
|
{
|
|
return myMakeChFi2d.BasisEdge(E);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Build
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void BRepFilletAPI_MakeFillet2d::Build(const Message_ProgressRange& /*theRange*/)
|
|
{
|
|
// test if the operation is done
|
|
if (Status() == ChFi2d_IsDone) {
|
|
Done();
|
|
myShape = myMakeChFi2d.Result();
|
|
}
|
|
else
|
|
NotDone();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Modified
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const TopTools_ListOfShape& BRepFilletAPI_MakeFillet2d::Modified(const TopoDS_Shape& E)
|
|
{
|
|
myGenerated.Clear();
|
|
myGenerated.Append(DescendantEdge(TopoDS::Edge(E)));
|
|
return myGenerated;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : NbCurves
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Integer BRepFilletAPI_MakeFillet2d::NbCurves() const
|
|
{
|
|
return NbFillet() + NbChamfer();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : NewEdges
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const TopTools_ListOfShape& BRepFilletAPI_MakeFillet2d::NewEdges(const Standard_Integer I)
|
|
{
|
|
myGenerated.Clear();
|
|
if (I <= NbFillet())
|
|
myGenerated.Append(FilletEdges()(I));
|
|
else
|
|
myGenerated.Append(ChamferEdges()(I-NbFillet()));
|
|
|
|
return myGenerated;
|
|
}
|
|
|
|
|