Search found 1 match

by Anand Prashar
Mon Sep 09, 2024 4:42 am
Forum: DG Kernel discussions
Topic: Boundary of a stl surface
Replies: 1
Views: 815

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...