Exemplo n.º 1
0
        private void SweepPoints(SweepContext tcx)
        {
            for (int i = 1; i < tcx.PointCount(); i++)
            {
                TriPoint point = tcx.GetPoint(i);
                Node     node  = PointEvent(tcx, point);

                if (point.EdgeList != null)
                {
                    for (int j = 0; j < point.EdgeList.Count; j++)
                    {
                        EdgeEvent(tcx, point.EdgeList[j], node);
                    }
                }
            }
        }