hello to all,
I need to extract all mesh edges.
I’m doing this:
List<Curve> lstCurves = new List<Curve>();
int edgesCount = m.TopologyEdges.Count;
for(int i = 0; i < edgesCount; i++) {
lstCurves.Add(m.TopologyEdges.EdgeLine(i).ToNurbsCurve());
}
What should be the less consuming way to do it?
thanks in advance.
Carlos