[TD]split GeometryObject

This commit is contained in:
wandererfan
2023-08-12 15:10:38 -04:00
committed by WandererFan
parent b1e03c2292
commit 41817c188f
20 changed files with 577 additions and 470 deletions

View File

@@ -546,7 +546,7 @@ TopoDS_Shape DrawUtil::vectorToCompound(std::vector<TopoDS_Edge> vecIn, bool inv
builder.Add(compOut, v);
}
if (invert) {
return TechDraw::mirrorShape(compOut);
return ShapeUtils::mirrorShape(compOut);
}
return compOut;
}
@@ -561,7 +561,7 @@ TopoDS_Shape DrawUtil::vectorToCompound(std::vector<TopoDS_Wire> vecIn, bool inv
builder.Add(compOut, v);
}
if (invert) {
return TechDraw::mirrorShape(compOut);
return ShapeUtils::mirrorShape(compOut);
}
return compOut;
}