Made adjustments to reflect the recent name change of Nuclex.SpecialFx to Nuclex.Graphics.Effects; fixed all remaining compiler warnings

git-svn-id: file:///srv/devel/repo-conversion/nusu@32 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2007-07-02 18:54:34 +00:00
parent 1ae0c7de63
commit b73d7846d8

View File

@ -31,6 +31,7 @@ namespace Nuclex.Support.SpatialPartitioning {
/// <param name="capacity">Number of items that can fit in the node</param> /// <param name="capacity">Number of items that can fit in the node</param>
public RTreeNode2(int capacity) { public RTreeNode2(int capacity) {
this.leafs = new RTreeLeaf2<ItemType>[capacity]; this.leafs = new RTreeLeaf2<ItemType>[capacity];
this.leafCount = 0;
} }
/// <summary>Inserts an item into this node</summary> /// <summary>Inserts an item into this node</summary>