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());
        }