tmacedo29 Tue, 11/11/2008 - 22:10 Forums: Other usage issuesHi All, Is there some method (or way) to find out if the transition between two faces is smooth? Thanks in Advance, Best Regards, Rob Bachrach Tue, 11/11/2008 - 22:45 As long as you know the edge along which you are checking, you can use: GeomAbs_Shape result = BRep_Tool::Continuity(edge, face1, face2); Depending on your definition of "smooth", you can compare the result to different levels of continuity. I typically look for tangency: if (result != GeomAbs_C0) {...} Log in to post comments tmacedo29 Wed, 11/12/2008 - 14:08 Hi Rob Bachrach, thank you for your answer! I'll try your solution! Best Regards, Log in to post comments
Tue, 11/11/2008 - 22:45
As long as you know the edge along which you are checking, you can use:
GeomAbs_Shape result = BRep_Tool::Continuity(edge, face1, face2);
Depending on your definition of "smooth", you can compare the result to different levels of continuity. I typically look for tangency:
if (result != GeomAbs_C0) {...}
Wed, 11/12/2008 - 14:08
Hi Rob Bachrach,
thank you for your answer!
I'll try your solution!
Best Regards,