ProcessCell() 공개 메소드

public ProcessCell ( List indexes ) : void
indexes List
리턴 void
예제 #1
0
        public void CalculateIndexes()
        {
            Indices.Clear();

            tree.ProcessCell(Indices);
            IndexCount = Indices.Count;
            if (Indices.Count == 0)
            {
                return;
            }

            IndexBuffer.SetData <int>(Indices.ToArray());
        }