TerrainDisplay.Collision.BSPTree.BSPTree C# (CSharp) Method

BSPTree() private method

private BSPTree ( IList nodes ) : System
nodes IList
return System
        internal BSPTree(IList<BSPNode> nodes)
        {
            this.nodes = nodes.ToArray();
            rootId = FindRootNode(nodes);

            if (rootId == short.MinValue)
            {
                throw new InvalidDataException("No root node found for this BSP tree.");
            }
        }

Same methods

BSPTree::BSPTree ( short rootId, BSPNode nodes ) : System