1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-07-10 12:25:50 +03:00
occt/src/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.cxx
bugmster 973c2be1e1 0024428: Implementation of LGPL license
The copying permission statements at the beginning of source files updated to refer to LGPL.
Copyright dates extended till 2014 in advance.
2013-12-17 12:42:41 +04:00

204 lines
6.5 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 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.ixx>
//=======================================================================
//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()
{
// 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;
}