1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/TopOpeBRepBuild/TopOpeBRepBuild_WireToFace.cxx

75 lines
2.4 KiB
C++

// Created on: 1996-01-29
// Created by: Jean Yves LEBEY
// Copyright (c) 1996-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 <TopOpeBRepBuild_Builder.hxx>
#include <TopOpeBRepBuild_FaceBuilder.hxx>
#include <TopOpeBRepBuild_WireEdgeSet.hxx>
#include <TopOpeBRepBuild_WireToFace.hxx>
#include <TopOpeBRepDS_BuildTool.hxx>
//=======================================================================
//function : TopOpeBRepBuild_WireToFace
//purpose :
//=======================================================================
TopOpeBRepBuild_WireToFace::TopOpeBRepBuild_WireToFace()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void TopOpeBRepBuild_WireToFace::Init()
{
myLW.Clear();
}
//=======================================================================
//function : AddWire
//purpose :
//=======================================================================
void TopOpeBRepBuild_WireToFace::AddWire(const TopoDS_Wire& W)
{
myLW.Append(W);
}
//=======================================================================
//function : MakeFaces
//purpose :
//=======================================================================
void TopOpeBRepBuild_WireToFace::MakeFaces(const TopoDS_Face& F,
TopTools_ListOfShape& LF)
{
LF.Clear();
TopOpeBRepBuild_WireEdgeSet wes(F);
for (TopTools_ListIteratorOfListOfShape it(myLW);it.More();it.Next())
wes.AddShape(it.Value());
Standard_Boolean ForceClass = Standard_True;
TopOpeBRepBuild_FaceBuilder FB;
FB.InitFaceBuilder(wes,F,ForceClass);
TopOpeBRepDS_BuildTool BT(TopOpeBRepTool_APPROX);
TopOpeBRepBuild_Builder B(BT);
B.MakeFaces(F,FB,LF);
}