prepare for OCCT 7.3.1

This commit is contained in:
wmayer
2018-12-13 23:10:10 +01:00
parent 729b9e7afa
commit 60581cff90

View File

@@ -1609,9 +1609,9 @@ PyObject* TopoShapePy::makeChamfer(PyObject *args)
//Add edge to fillet algorithm
const TopoDS_Face& face = TopoDS::Face(mapEdgeFace.FindFromKey(edge).First());
#if OCC_VERSION_HEX > 0x070300
mkChamfer.Add(radius, TopoDS::Edge(edge), face);
#else
mkChamfer.Add(radius, radius, TopoDS::Edge(edge), face);
#else
mkChamfer.Add(radius, TopoDS::Edge(edge), face);
#endif
}
}