Depth constructor

Depth()

Implementation

Depth() {
  // initialize depth array to a sentinel value
  for (int i = 0; i < 2; i++) {
    for (int j = 0; j < 3; j++) {
      depth[i][j] = NULL_VALUE;
    }
  }
}