예제 #1
0
 public BlockBasedSceneGraph(int numblocks)
 {
     blocks = new SceneGraphBlock[numblocks];
     for (int i = 0; i < numblocks; i++)
     {
         blocks[i] = new SceneGraphBlock(i);
     }
 }
예제 #2
0
 public BlockBasedSceneGraph(int numblocks)
 {
     blocks = new SceneGraphBlock[numblocks];
     for (int i = 0; i < numblocks; i++) blocks[i] = new SceneGraphBlock(i);
 }