TriangleNet.Quality.TallyEncs C# (CSharp) Method

TallyEncs() private method

Traverse the entire list of subsegments, and check each to see if it is encroached. If so, add it to the list.
private TallyEncs ( ) : void
return void
        private void TallyEncs()
        {
            Osub subsegloop = default(Osub);
            subsegloop.orient = 0;

            foreach (var seg in mesh.subsegs.Values)
            {
                subsegloop.seg = seg;
                // If the segment is encroached, add it to the list.
                CheckSeg4Encroach(ref subsegloop);
            }
        }