I am not aware of OCC functions but here is what I think is a way:
i. get the vertices that makes the wire/edges which you want to test may be you can use TopExp.
ii. now loop over over the edges that make the shell and test if any of the vertices obtained in i are outside or inside the edges.
this class gives me the wires of a Shell, and it does it very well.
But there is a way to know which Wire is the external and which is the holes of the Shell?
Wed, 01/12/2011 - 21:16
My question was too wrong / fool, or nobody knows?
Wed, 01/12/2011 - 21:40
I am not aware of OCC functions but here is what I think is a way:
i. get the vertices that makes the wire/edges which you want to test may be you can use TopExp.
ii. now loop over over the edges that make the shell and test if any of the vertices obtained in i are outside or inside the edges.
V
Thu, 01/13/2011 - 11:35
Hi,
You may find something useful in ShapeAnalysis package.
Regards
Thu, 01/13/2011 - 14:36
Hi,
I've found what I need in ShapeAnalysis_FreeBounds.
Thank you
Thu, 01/13/2011 - 16:04
Hi Sergey,
this class gives me the wires of a Shell, and it does it very well.
But there is a way to know which Wire is the external and which is the holes of the Shell?
Thank you.