コード例 #1
0
ファイル: CoordsTests.cs プロジェクト: toxicFork/vox
 public override TestOctreeNode <T> ConstructNode(Bounds bounds, TestOctreeNode <T> parent,
                                                  OctreeNode.ChildIndex indexInParent)
 {
     return(new TestOctreeNode <T>(bounds, parent, indexInParent, this));
 }
コード例 #2
0
ファイル: CoordsTests.cs プロジェクト: toxicFork/vox
 public TestOctreeNode(Bounds bounds, TestOctreeNode <T> parent, ChildIndex indexInParent,
                       TestOctree <T> tree) : base(bounds, parent, indexInParent, tree)
 {
 }