Search found 1 match
- Mon Sep 09, 2024 4:42 am
- Forum: DG Kernel discussions
- Topic: Boundary of a stl surface
- Replies: 1
- Views: 2831
Re: Boundary of a stl surface
I think IVertex_DG.IsInteriorVertex is what you need. Use IMesh_DG.GetVertexList(), then loop all and select ones which are not interior. It will give you a list. Its order I expect will be random. Sorting it in, say CCW order will need more work. Sadly, there is no GetSegmentList() in IMesh_DG. You...