Package org.jamesii.model.carules

Examples of org.jamesii.model.carules.CACell


    for (int z = 0; z < this.depth; z++) {
      for (int y = 0; y < this.height; y++) {
        for (int x = 0; x < this.width; x++) {
          this.cells[z][y][x] =
              new CACell(new int[] { x, y, z }, this.getDefaultState());
        }
      }
    }
    this.isInit = true;
  }
View Full Code Here

TOP

Related Classes of org.jamesii.model.carules.CACell

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.