Refactored and cleaned up code for FeatureBezSurf and created a new common ancestor class for this and FeatureBSplineSurf.
104 lines
4.1 KiB
C++
104 lines
4.1 KiB
C++
|
|
/***************************************************************************
|
|
* Copyright (c) 2014 Balázs Bámer *
|
|
* *
|
|
* This file is part of the FreeCAD CAx development system. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this library; see the file COPYING.LIB. If not, *
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
|
* Suite 330, Boston, MA 02111-1307, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "PreCompiled.h"
|
|
|
|
#ifndef _PreComp_
|
|
#include <ShapeFix_Wire.hxx>
|
|
#include <ShapeExtend_WireData.hxx>
|
|
#include <BRepBuilderAPI_MakeWire.hxx>
|
|
#include <TopoDS.hxx>
|
|
#include <TopoDS_Wire.hxx>
|
|
#include <BRepBuilderAPI_Copy.hxx>
|
|
#include <Base/Tools.h>
|
|
#include <Base/Exception.h>
|
|
#endif
|
|
|
|
#include "FeatureBSurf.h"
|
|
|
|
using namespace Surface;
|
|
|
|
//Check if any components of the surface have been modified
|
|
short BSurf::mustExecute() const
|
|
{
|
|
if (aBList.isTouched() ||
|
|
filltype.isTouched())
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
void BSurf::getWire(TopoDS_Wire& aWire)
|
|
{
|
|
Handle(ShapeFix_Wire) aShFW = new ShapeFix_Wire;
|
|
Handle(ShapeExtend_WireData) aWD = new ShapeExtend_WireData;
|
|
|
|
if(aBList.getSize()>4){Standard_Failure::Raise("Only 2-4 continuous Bezier Curves are allowed");return;}
|
|
if(aBList.getSize()<2){Standard_Failure::Raise("Only 2-4 continuous Bezier Curves are allowed");return;}
|
|
|
|
for(int i=0; i<aBList.getSize(); i++){
|
|
|
|
Part::TopoShape ts; //Curve TopoShape
|
|
TopoDS_Shape sub; //Curve TopoDS_Shape
|
|
TopoDS_Edge etmp; //Curve TopoDS_Edge
|
|
|
|
//Get Edge
|
|
App::PropertyLinkSubList::SubSet set = aBList[i];
|
|
|
|
if(set.obj->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) {
|
|
|
|
ts = static_cast<Part::Feature*>(set.obj)->Shape.getShape();
|
|
|
|
//we want only the subshape which is linked
|
|
sub = ts.getSubShape(set.sub);
|
|
// make a copy of the shape and the underlying geometry to avoid to affect the input shapes
|
|
BRepBuilderAPI_Copy copy(sub);
|
|
sub = copy.Shape();
|
|
|
|
if(sub.ShapeType() == TopAbs_EDGE) { //Check Shape type and assign edge
|
|
etmp = TopoDS::Edge(sub);
|
|
}
|
|
else {
|
|
Standard_Failure::Raise("Curves must be type TopoDS_Edge");
|
|
return; //Raise exception
|
|
}
|
|
aWD->Add(etmp);
|
|
|
|
}
|
|
else{Standard_Failure::Raise("Curve not from Part::Feature");return;}
|
|
|
|
}
|
|
|
|
//Reorder the curves and fix the wire if required
|
|
|
|
aShFW->Load(aWD); //Load in the wire
|
|
aShFW->FixReorder(); //Fix the order of the edges if required
|
|
aShFW->ClosedWireMode() = Standard_True; //Enables closed wire mode
|
|
aShFW->FixConnected(); //Fix connection between wires
|
|
aShFW->FixSelfIntersection(); //Fix Self Intersection
|
|
aShFW->Perform(); //Perform the fixes
|
|
|
|
aWire = aShFW->Wire(); //Healed Wire
|
|
|
|
if(aWire.IsNull()){Standard_Failure::Raise("Wire unable to be constructed");return;}
|
|
}
|