polish filling feature

This commit is contained in:
wmayer
2017-04-14 15:04:01 +02:00
parent a5452e9363
commit 4b25a0febc
5 changed files with 214 additions and 406 deletions

View File

@@ -23,16 +23,17 @@
#include "PreCompiled.h"
#ifndef _PreComp_
#include <BRepBuilderAPI_MakeFace.hxx>
#include <BRepFill_Filling.hxx>
#include <BRep_Tool.hxx>
#include <gp_Pnt.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Face.hxx>
#include <TopoDS_Vertex.hxx>
#include <Precision.hxx>
#endif
#include "FeatureFilling.h"
#include <BRepFill_Filling.hxx>
#include <BRep_Tool.hxx>
#include <gp_Pnt.hxx>
#include <Base/Tools.h>
#include <Base/Exception.h>
#include <string>
@@ -45,412 +46,210 @@ PROPERTY_SOURCE(Surface::Filling, Part::Feature)
Filling::Filling()
{
ADD_PROPERTY(Border,(0,"TopoDS_Edge"));
ADD_PROPERTY_TYPE(Border,(0,""), "Filling", App::Prop_None, "Border Edges (C0 is required for edges without a corresponding face)");
ADD_PROPERTY_TYPE(BorderFaces,(0,""), "Filling", App::Prop_None, "Border Faces");
ADD_PROPERTY_TYPE(OrderBorderFaces,(-1), "Filling", App::Prop_None, "Order of constraint on border faces (C0, G1 and G2 are possible)");
ADD_PROPERTY(Curves,(0,"TopoDS_Edge"));
ADD_PROPERTY_TYPE(Curves,(0,""), "Filling", App::Prop_None, "Other Constraint Curves (C0 is required for edges without a corresponding face)");
ADD_PROPERTY_TYPE(CurveFaces,(0,""), "Filling", App::Prop_None, "Curve Faces");
ADD_PROPERTY_TYPE(OrderCurveFaces,(-1), "Filling", App::Prop_None, "Order of constraint on curve faces (C0, G1 and G2 are possible)");
ADD_PROPERTY(BFaces,(0,"TopoDS_Face"));
ADD_PROPERTY(orderB,(-1));
ADD_PROPERTY(CFaces,(0,"TopoDS_Face"));
ADD_PROPERTY(orderC,(-1));
ADD_PROPERTY_TYPE(FreeFaces,(0,""), "Filling", App::Prop_None, "Free constraint on a face");
ADD_PROPERTY_TYPE(OrderFreeFaces,(0), "Filling", App::Prop_None, "Order of constraint on free faces");
ADD_PROPERTY(Points,(0,"TopoDS_Vertex"));
ADD_PROPERTY_TYPE(Points,(0,""), "Filling", App::Prop_None, "Constraint Points (on Surface)");
ADD_PROPERTY_TYPE(InitialFace,(0), "Filling", App::Prop_None, "Initial surface to use");
ADD_PROPERTY(initFace,(0,"TopoDS_Face"));
ADD_PROPERTY(Degree,(3));
ADD_PROPERTY(NbPtsOnCur,(3));
ADD_PROPERTY(NbIter,(2));
ADD_PROPERTY(Anisotropie,(false));
ADD_PROPERTY(Tol2d,(0.00001));
ADD_PROPERTY(Tol3d,(0.0001));
ADD_PROPERTY(TolAng,(0.001));
ADD_PROPERTY(TolCurv,(0.01));
ADD_PROPERTY(MaxDeg,(8));
ADD_PROPERTY(MaxSegments,(10000));
ADD_PROPERTY_TYPE(Degree,(3), "Filling", App::Prop_None, "Starting degree");
ADD_PROPERTY_TYPE(PointsOnCurve,(3), "Filling", App::Prop_None, "Number of points on an edge for constraint");
ADD_PROPERTY_TYPE(Iterations,(2), "Filling", App::Prop_None, "Number of iterations");
ADD_PROPERTY_TYPE(Anisotropy,(false), "Filling", App::Prop_None, "Anisotropy");
ADD_PROPERTY_TYPE(Tolerance2d,(0.00001), "Filling", App::Prop_None, "2D Tolerance");
ADD_PROPERTY_TYPE(Tolerance3d,(0.0001), "Filling", App::Prop_None, "3D Tolerance");
ADD_PROPERTY_TYPE(TolAngular,(0.001), "Filling", App::Prop_None, "G1 tolerance");
ADD_PROPERTY_TYPE(TolCurvature,(0.01), "Filling", App::Prop_None, "G2 tolerance");
ADD_PROPERTY_TYPE(MaximumDegree,(8), "Filling", App::Prop_None, "Maximum curve degree");
ADD_PROPERTY_TYPE(MaximumSegments,(10000), "Filling", App::Prop_None, "Maximum number of segments");
}
//Define Functions
void appconstr_crv(BRepFill_Filling& builder,const App::PropertyLinkSubList& anEdge, Standard_Boolean bnd);
void appconstr_bface(BRepFill_Filling& builder,const App::PropertyLinkSubList& aFace, const App::PropertyIntegerList& Order);
void appconstr_crvface(BRepFill_Filling& builder, const App::PropertyLinkSubList& anEdge, const App::PropertyLinkSubList& aFace, const App::PropertyIntegerList& Order, Standard_Boolean bnd);
void appconstr_pt(BRepFill_Filling& builder,const App::PropertyLinkSubList& aVertex);
void appinitface(BRepFill_Filling& builder,const App::PropertyLinkSubList& aFace);
//Check if any components of the surface have been modified
short Filling::mustExecute() const
{
if (Border.isTouched() ||
BorderFaces.isTouched() ||
OrderBorderFaces.isTouched() ||
Curves.isTouched() ||
BFaces.isTouched() ||
orderB.isTouched() ||
CFaces.isTouched() ||
orderC.isTouched() ||
CurveFaces.isTouched() ||
OrderCurveFaces.isTouched() ||
FreeFaces.isTouched() ||
OrderFreeFaces.isTouched() ||
Points.isTouched() ||
initFace.isTouched() ||
InitialFace.isTouched() ||
Degree.isTouched() ||
NbPtsOnCur.isTouched() ||
NbIter.isTouched() ||
Anisotropie.isTouched() ||
Tol2d.isTouched() ||
Tol3d.isTouched() ||
TolAng.isTouched() ||
TolCurv.isTouched() ||
MaxDeg.isTouched() ||
MaxSegments.isTouched())
PointsOnCurve.isTouched() ||
Iterations.isTouched() ||
Anisotropy.isTouched() ||
Tolerance2d.isTouched() ||
Tolerance3d.isTouched() ||
TolAngular.isTouched() ||
TolCurvature.isTouched() ||
MaximumDegree.isTouched() ||
MaximumSegments.isTouched())
return 1;
return 0;
}
void Filling::addConstraints(BRepFill_Filling& builder,
const App::PropertyLinkSubList& edges,
const App::PropertyLinkSubList& faces,
const App::PropertyIntegerList& orders,
Standard_Boolean bnd)
{
auto edge_obj = edges.getValues();
auto edge_sub = edges.getSubValues();
auto face_obj = faces.getValues();
auto face_sub = faces.getSubValues();
auto contvals = orders.getValues();
if (edge_obj.size() == edge_sub.size() &&
edge_obj.size() == contvals.size()) {
for (std::size_t index = 0; index < edge_obj.size(); index++) {
App::DocumentObject* obj = edge_obj[index];
const std::string& sub = edge_sub[index];
if (obj && obj->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) {
const Part::TopoShape& shape = static_cast<Part::Feature*>(obj)->Shape.getShape();
TopoDS_Shape edge = shape.getSubShape(sub.c_str());
if (!edge.IsNull() && edge.ShapeType() == TopAbs_EDGE) {
GeomAbs_Shape cont = static_cast<GeomAbs_Shape>(contvals[index]);
if (cont == GeomAbs_C0) {
builder.Add(TopoDS::Edge(edge), cont, bnd);
}
else {
builder.Add(TopoDS::Edge(edge), cont, bnd);
}
}
}
}
}
else {
Standard_Failure::Raise("Number of links doesn't match with number of orders");
}
}
void Filling::addConstraints(BRepFill_Filling& builder,
const App::PropertyLinkSubList& faces,
const App::PropertyIntegerList& orders)
{
auto face_obj = faces.getValues();
auto face_sub = faces.getSubValues();
auto contvals = orders.getValues();
if (face_obj.size() == face_sub.size() &&
face_obj.size() == contvals.size()) {
for (std::size_t index = 0; index < face_obj.size(); index++) {
App::DocumentObject* obj = face_obj[index];
const std::string& sub = face_sub[index];
if (obj && obj->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) {
const Part::TopoShape& shape = static_cast<Part::Feature*>(obj)->Shape.getShape();
TopoDS_Shape face = shape.getSubShape(sub.c_str());
if (!face.IsNull() && face.ShapeType() == TopAbs_FACE) {
GeomAbs_Shape cont = static_cast<GeomAbs_Shape>(contvals[index]);
builder.Add(TopoDS::Face(face), cont);
}
}
}
}
else {
Standard_Failure::Raise("Number of links doesn't match with number of orders");
}
}
void Filling::addConstraints(BRepFill_Filling& builder,
const App::PropertyLinkSubList& pointsList)
{
auto points = pointsList.getSubListValues();
for (auto it : points) {
App::DocumentObject* obj = it.first;
std::vector<std::string> sub = it.second;
if (obj && obj->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) {
const Part::TopoShape& shape = static_cast<Part::Feature*>(obj)->Shape.getShape();
for (auto jt : sub) {
TopoDS_Shape subShape = shape.getSubShape(jt.c_str());
if (!subShape.IsNull() && subShape.ShapeType() == TopAbs_VERTEX) {
gp_Pnt pnt = BRep_Tool::Pnt(TopoDS::Vertex(subShape));
builder.Add(pnt);
}
}
}
}
}
App::DocumentObjectExecReturn *Filling::execute(void)
{
//Assign Variables
unsigned int degree = Degree.getValue();
unsigned int ptsoncurve = PointsOnCurve.getValue();
unsigned int numIter = Iterations.getValue();
bool anisotropy = Anisotropy.getValue();
double tol2d = Tolerance2d.getValue();
double tol3d = Tolerance3d.getValue();
double tolG1 = TolAngular.getValue();
double tolG2 = TolCurvature.getValue();
unsigned int maxdeg = MaximumDegree.getValue();
unsigned int maxseg = MaximumSegments.getValue();
try {
BRepFill_Filling builder(degree, ptsoncurve, numIter, anisotropy, tol2d,
tol3d, tolG1, tolG2, maxdeg, maxseg);
unsigned int Deg = Degree.getValue();
unsigned int NPOC = NbPtsOnCur.getValue();
unsigned int NI = NbIter.getValue();
bool Anis = Anisotropie.getValue();
double T2d = Tol2d.getValue();
double T3d = Tol3d.getValue();
double TG1 = TolAng.getValue();
double TG2 = TolCurv.getValue();
unsigned int Mdeg = MaxDeg.getValue();
unsigned int Mseg = MaxSegments.getValue();
if ((Border.getSize()) < 1) {
return new App::DocumentObjectExecReturn("Border must have at least one curve defined.");
}
//Perform error checking
// Load the initial surface if set
App::DocumentObject* initFace = InitialFace.getValue();
if (initFace && initFace->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) {
const Part::TopoShape& shape = static_cast<Part::Feature*>(initFace)->Shape.getShape();
std::vector<std::string> subNames = InitialFace.getSubValues();
for (auto it : subNames) {
TopoDS_Shape subShape = shape.getSubShape(it.c_str());
if (!subShape.IsNull() && subShape.ShapeType() == TopAbs_FACE) {
builder.LoadInitSurface(TopoDS::Face(subShape));
break;
}
}
}
// Add the constraints of border curves/faces (bound)
addConstraints(builder, Border, BorderFaces, OrderBorderFaces, Standard_True);
//Begin Construction
try{
// Add additional curves constraints if available (unbound)
if (Curves.getSize() > 0) {
addConstraints(builder, Curves, CurveFaces, OrderCurveFaces, Standard_False);
}
//Generate Builder with Algorithm Variables
// Add additional constraint on free faces
if (FreeFaces.getSize() > 0) {
addConstraints(builder, FreeFaces, OrderFreeFaces);
}
BRepFill_Filling builder(Deg,NPOC,NI,Anis,T2d,T3d,TG1,TG2,Mdeg,Mseg);
if((Border.getSize())<1){return new App::DocumentObjectExecReturn("Border must have at least one curve defined.");}
//Assign Boundaries
if(Border.getSize()>0){appconstr_crvface(builder, Border, BFaces, orderB, Standard_True);}
//Assign Additional Curves if available
if(Curves.getSize()>0){appconstr_crvface(builder, Curves, CFaces, orderC, Standard_False);}
/* //Assign Faces
if(BFaces.getSize()>0){appconstr_bface(builder, BFaces, orderBFaces);}
*/
//Assign Point Constraints
if(Points.getSize()>0){appconstr_pt(builder,Points);}
//Assign Initial Face
if(initFace.getSize()>0){appinitface(builder,initFace);}
printf("Building...\n");
// App point constraints
if (Points.getSize() > 0) {
addConstraints(builder, Points);
}
//Build the face
builder.Build();
if (!builder.IsDone()){Standard_Failure::Raise("Failed to create a face from constraints");}
printf("Build Complete\n");
if (!builder.IsDone()) {
Standard_Failure::Raise("Failed to create a face from constraints");
}
//Return the face
TopoDS_Face aFace = builder.Face();
if (aFace.IsNull()){
return new App::DocumentObjectExecReturn("Resulting shape is null");
}
this->Shape.setValue(aFace);
return App::DocumentObject::StdReturn;
} //End Try
}
catch (Standard_Failure) {
Handle_Standard_Failure e = Standard_Failure::Caught();
return new App::DocumentObjectExecReturn(e->GetMessageString());
} //End Catch
} //End execute
/*
void appconstr_crv(BRepFill_Filling& builder,const App::PropertyLinkSubList& anEdge, Standard_Boolean bnd){
printf("Inside appconstr_crv\n");
int res;
printf("Entering for loop\n");
for(int i=0; i<anEdge.getSize(); i++) {
printf("Processing curve %i\n",i);
Part::TopoShape ts;
// Part::TopoShape sub;
TopoDS_Shape sub;
TopoDS_Edge etmp;
//the subset has the documentobject and the element name which belongs to it,
// in our case for example the cube object and the "Edge1" string
// printf("Pre try\n");
//
// try{anEdge[i].obj;}
// catch(...){
// Standard_Failure::Raise("Check Boundary or Curve Definitions.\nShould be of form [(App.ActiveDocument.object, 'Edge Name'),...");
// return;
// }
//
// printf("Made it past try\n");
//
App::PropertyLinkSubList::SubSet set = anEdge[i];
printf("Past set = anEdge[i]\n");
//set.obj should be our box, but just to make sure no one set something stupid
if(set.obj->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) {
//we get the shape of the document object which resemble the whole box
ts = static_cast<Part::Feature*>(set.obj)->Shape.getShape();
//we want only the subshape which is linked
sub = ts.getSubShape(set.sub);
if(sub.ShapeType() == TopAbs_EDGE) {etmp = TopoDS::Edge(sub);} //Check Shape type and assign edge
else{Standard_Failure::Raise("Curves must be type TopoDS_Edge");return;} //Raise exception
}
else{Standard_Failure::Raise("Boundary or Curve not from Part::Feature");return;}
res = builder.Add(etmp,GeomAbs_C0,bnd);
printf("Result of builder.Add: %i\n",res);
}
}
*/
/*
void appconstr_bface(BRepFill_Filling& builder,const App::PropertyLinkSubList& aFace, const App::PropertyIntegerList& Order){
int res;
GeomAbs_Shape ordtmp;
std::vector<long int>::const_iterator bc = Order.getValues().begin(); //Get the order values
for(int i=0; i<aFace.getSize(); i++){
Part::TopoShape ts;
TopoDS_Shape sub;
TopoDS_Face ftmp;
App::PropertyLinkSubList::SubSet set = aFace[i];
if(set.obj->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) {
ts = static_cast<Part::Feature*>(set.obj)->Shape.getShape();
sub = ts.getSubShape(set.sub);
if(sub.ShapeType() == TopAbs_FACE) {ftmp = TopoDS::Face(sub);} //Check Shape type and assign edge
else{Standard_Failure::Raise("Faces must be type TopoDS_Face");} //Raise exception
}
else{Standard_Failure::Raise("Face not from Part::Feature");}
//PropertyEnumerateList doesn't exist yet. Fix when implemented
if(*bc==0){ordtmp = GeomAbs_C0;}
else if(*bc==1){ordtmp = GeomAbs_G1;}
else if(*bc==2){ordtmp = GeomAbs_G2;}
else{Standard_Failure::Raise("Continuity constraint must be 0, 1 or 2 for C0, G1, and G2.");return;}
printf("*bc: %li\n",*bc);
res = builder.Add(ftmp,ordtmp);
printf("res: %i\n",res);
bc++;
}
return;
}
*/
void appconstr_crvface(BRepFill_Filling& builder, const App::PropertyLinkSubList& anEdge, const App::PropertyLinkSubList& aFace, const App::PropertyIntegerList& Order, Standard_Boolean bnd){
#if 0
int res;
GeomAbs_Shape ordtmp;
std::vector<long int>::const_iterator bc = Order.getValues().begin(); //Get the order values
int fconit = 0;
for(int i=0; i<anEdge.getSize(); i++){
Part::TopoShape ts_edge;
TopoDS_Shape sub_edge;
Part::TopoShape ts_face;
TopoDS_Shape sub_face;
TopoDS_Edge etmp;
TopoDS_Face ftmp;
//Get Edge
App::PropertyLinkSubList::SubSet set_edge = anEdge[i];
if(set_edge.obj->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) {
ts_edge = static_cast<Part::Feature*>(set_edge.obj)->Shape.getShape();
//we want only the subshape which is linked
sub_edge = ts_edge.getSubShape(set_edge.sub);
if(sub_edge.ShapeType() == TopAbs_EDGE) {etmp = TopoDS::Edge(sub_edge);} //Check Shape type and assign edge
else{Standard_Failure::Raise("Curves must be type TopoDS_Edge");return;} //Raise exception
}
else{Standard_Failure::Raise("Boundary or Curve not from Part::Feature");return;}
/*********************************/
//Get Order
//PropertyEnumerateList doesn't exist yet. Fix when implemented
if(*bc==0){ordtmp = GeomAbs_C0;}
else if(*bc==1){ordtmp = GeomAbs_G1;}
else if(*bc==2){ordtmp = GeomAbs_G2;}
else{Standard_Failure::Raise("Continuity constraint must be 0, 1 or 2 for C0, G1, and G2.");return;}
/*********************************/
//Get Face if required
if(ordtmp==GeomAbs_C0){
res = builder.Add(etmp,ordtmp,bnd);
}
else{
// if(aFace.getSize()<anEdge.getSize()){
// Standard_Failure::Raise("Faces must be defined (even as null) for all edges if G1 or G2 constraints are used.");
// }
App::PropertyLinkSubList::SubSet set_face = aFace[fconit];
if(set_face.obj->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) {
ts_face = static_cast<Part::Feature*>(set_face.obj)->Shape.getShape();
sub_face = ts_face.getSubShape(set_face.sub);
if(sub_face.ShapeType() == TopAbs_FACE) {ftmp = TopoDS::Face(sub_face);} //Check Shape type and assign edge
else{Standard_Failure::Raise("Faces must be type TopoDS_Face");} //Raise exception
}
else{Standard_Failure::Raise("Face not from Part::Feature");}
printf("*bc: %li\n",*bc);
res = builder.Add(etmp,ftmp,ordtmp,bnd);
fconit++;
}
printf("res: %i\n",res);
bc++;
}
#endif
return;
}
void appconstr_pt(BRepFill_Filling& builder,const App::PropertyLinkSubList& aVertex){
#if 0
int res;
for(int i=0; i<aVertex.getSize(); i++) {
Part::TopoShape ts;
// Part::TopoShape sub;
TopoDS_Shape sub;
TopoDS_Vertex vtmp;
//the subset has the documentobject and the element name which belongs to it,
// in our case for example the cube object and the "Vertex1" string
App::PropertyLinkSubList::SubSet set = aVertex[i];
if(set.obj->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) {
//we get the shape of the document object which resemble the whole box
ts = static_cast<Part::Feature*>(set.obj)->Shape.getShape();
//we want only the subshape which is linked
sub = ts.getSubShape(set.sub);
if(sub.ShapeType() == TopAbs_VERTEX) {vtmp = TopoDS::Vertex(sub);} //Check Shape type and assign edge
else{Standard_Failure::Raise("Curves must be type TopoDS_Vertex");} //Raise exception
}
else{Standard_Failure::Raise("Point not from Part::Feature");}
res = builder.Add(BRep_Tool::Pnt(vtmp));
}
#endif
return;
}
void appinitface(BRepFill_Filling& builder,const App::PropertyLinkSubList& aFace){
#if 0
if(aFace.getSize()>1){Standard_Failure::Raise("Only one face may be used for the initial face");return;}
Part::TopoShape ts;
// Part::TopoShape sub;
TopoDS_Shape sub;
TopoDS_Face face;
//the subset has the documentobject and the element name which belongs to it,
// in our case for example the cube object and the "Vertex1" string
App::PropertyLinkSubList::SubSet set = aFace[0];
if(set.obj->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) {
//we get the shape of the document object which resemble the whole box
ts = static_cast<Part::Feature*>(set.obj)->Shape.getShape();
//we want only the subshape which is linked
sub = ts.getSubShape(set.sub);
if(sub.ShapeType() == TopAbs_FACE) {face = TopoDS::Face(sub);} //Check Shape type and assign edge
else{Standard_Failure::Raise("Faces must be type TopoDS_Face");} //Raise exception
}
else{Standard_Failure::Raise("Point not from Part::Feature");}
builder.LoadInitSurface(face);
#endif
return;
}

View File

@@ -28,6 +28,7 @@
#include <App/PropertyLinks.h>
#include "Mod/Part/App/PartFeature.h"
class BRepFill_Filling;
namespace Surface
{
@@ -39,39 +40,44 @@ public:
Filling();
//Properties of Curves
App::PropertyLinkSubList Border; // Border Edges (C0 is required for edges without a corresponding face)
App::PropertyLinkSubList Curves; // Other Constraint Curves (C0 is required for edges without a corresponding face)
App::PropertyLinkSubList BFaces; // Border Faces (C0, G1 and G2 are possible)
App::PropertyIntegerList orderB; // Order of constraint on border faces
App::PropertyLinkSubList CFaces; // Curve Faces (C0, G1 and G2 are possible)
App::PropertyIntegerList orderC; // Order of constraint on curve faces
App::PropertyLinkSubList Points; // Constraint Points (on Surface)
App::PropertyLinkSubList initFace; // Initial Face to use
App::PropertyLinkSubList Border; // Border Edges (C0 is required for edges without a corresponding face)
App::PropertyLinkSubList BorderFaces; // Border Faces (C0, G1 and G2 are possible)
App::PropertyIntegerList OrderBorderFaces; // Order of constraint on border faces
App::PropertyLinkSubList Curves; // Other Constraint Curves (C0 is required for edges without a corresponding face)
App::PropertyLinkSubList CurveFaces; // Curve Faces (C0, G1 and G2 are possible)
App::PropertyIntegerList OrderCurveFaces; // Order of constraint on curve faces
App::PropertyLinkSubList FreeFaces; // Free constraint on a face
App::PropertyIntegerList OrderFreeFaces; // Order of constraint on free faces
App::PropertyLinkSubList Points; // Constraint Points (on Surface)
App::PropertyLinkSub InitialFace; // Initial Face to use
//Algorithm Variables
App::PropertyInteger Degree; //Starting degree
App::PropertyInteger NbPtsOnCur; //Number of points on an edge for constraint
App::PropertyInteger NbIter; //Number of iterations
App::PropertyBool Anisotropie; //?
App::PropertyFloat Tol2d; //2D Tolerance
App::PropertyFloat Tol3d; //3D Tolerance
App::PropertyFloat TolAng; //G1 tolerance
App::PropertyFloat TolCurv; //G2 tolerance
App::PropertyInteger MaxDeg; //Maximum curve degree
App::PropertyInteger MaxSegments; //Maximum number of segments
App::PropertyInteger Degree; //Starting degree
App::PropertyInteger PointsOnCurve; //Number of points on an edge for constraint
App::PropertyInteger Iterations; //Number of iterations
App::PropertyBool Anisotropy; //Anisotropy
App::PropertyFloat Tolerance2d; //2D Tolerance
App::PropertyFloat Tolerance3d; //3D Tolerance
App::PropertyFloat TolAngular; //G1 tolerance
App::PropertyFloat TolCurvature; //G2 tolerance
App::PropertyInteger MaximumDegree; //Maximum curve degree
App::PropertyInteger MaximumSegments; //Maximum number of segments
// recalculate the feature
App::DocumentObjectExecReturn *execute(void);
short mustExecute() const;
/// returns the type name of the view provider
// const char* getViewProviderName(void) const {
// return "PartGui::ViewProviderFilling";
// }
private:
void addConstraints(BRepFill_Filling& builder,
const App::PropertyLinkSubList& edges,
const App::PropertyLinkSubList& faces,
const App::PropertyIntegerList& orders,
Standard_Boolean bnd);
void addConstraints(BRepFill_Filling& builder,
const App::PropertyLinkSubList& faces,
const App::PropertyIntegerList& orders);
void addConstraints(BRepFill_Filling& builder,
const App::PropertyLinkSubList& points);
};
} //Namespace Surface

View File

@@ -24,9 +24,12 @@
#ifndef SURFACE_FILLTYPE_H
#define SURFACE_FILLTYPE_H
enum filltype_t
enum FillType_t
{
InvalidStyle = 0, StretchStyle, CoonsStyle, CurvedStyle
InvalidStyle = 0,
StretchStyle,
CoonsStyle,
CurvedStyle
};
#endif // SURAFCE_FILLTYPE_H

View File

@@ -95,7 +95,7 @@ BSurf::~BSurf()
void BSurf::setEditedObject(Surface::BSurf* obj)
{
editedObject = obj;
oldFillType = (filltype_t)(editedObject->FillType.getValue());
oldFillType = (FillType_t)(editedObject->FillType.getValue());
switch(oldFillType)
{
case StretchStyle:
@@ -111,9 +111,9 @@ void BSurf::setEditedObject(Surface::BSurf* obj)
fillType = oldFillType;
}
filltype_t BSurf::getFillType() const
FillType_t BSurf::getFillType() const
{
filltype_t ret;
FillType_t ret;
if (ui->fillType_stretch->isChecked())
ret = StretchStyle;
else if (ui->fillType_coons->isChecked())

View File

@@ -49,7 +49,7 @@ namespace SurfaceGui
Q_OBJECT
protected:
filltype_t fillType, oldFillType;
FillType_t fillType, oldFillType;
Surface::BSurf* editedObject;
private:
@@ -72,7 +72,7 @@ namespace SurfaceGui
void on_fillType_stretch_clicked();
void on_fillType_coons_clicked();
void on_fillType_curved_clicked();
filltype_t getFillType() const;
FillType_t getFillType() const;
};
class TaskBSurf : public Gui::TaskView::TaskDialog