Skip to content
Snippets Groups Projects
Commit f8f536f4 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

tentative fix for inconsistent curve/reverse curve when orientation is internal or external

parent d3465297
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,11 @@ ...@@ -34,6 +34,11 @@
OCCEdge::OCCEdge(GModel *m, TopoDS_Edge edge, int num, GVertex *v1, GVertex *v2) OCCEdge::OCCEdge(GModel *m, TopoDS_Edge edge, int num, GVertex *v1, GVertex *v2)
: GEdge(m, num, v1, v2), c(edge), trimmed(0) : GEdge(m, num, v1, v2), c(edge), trimmed(0)
{ {
// force orientation of internal/external edges: otherwise reverse will not
// produce the expected result
if (c.Orientation() == TopAbs_INTERNAL || c.Orientation() == TopAbs_EXTERNAL){
c = TopoDS::Edge(c.Oriented(TopAbs_FORWARD));
}
curve = BRep_Tool::Curve(c, s0, s1); curve = BRep_Tool::Curve(c, s0, s1);
// build the reverse curve // build the reverse curve
c_rev = c; c_rev = c;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment