View Javadoc
1   package org.woehlke.computer.kurzweil.mandelbrot.julia.model.turing;
2   
3   /**
4    * Mandelbrot Set drawn by a Turing Machine.
5    * (C) 2006 - 2022 Thomas Woehlke.
6    * @author Thomas Woehlke
7    *
8    * @see <a href="https://thomas-woehlke.blogspot.com/2016/01/mandelbrot-set-drawn-by-turing-machine.html">Blog Article</a>
9    * @see <a href="https://github.com/Computer-Kurzweil/mandelbrot-julia">Github Repository</a>
10   * @see <a href="https://java.woehlke.org/mandelbrot-julia/">Maven Project Repository</a>
11   *
12   * Created by tw on 18.08.15.
13   */
14  public enum TuringPhase {
15      SEARCH_THE_SET,
16      WALK_AROUND_THE_SET,
17      FILL_THE_OUTSIDE_WITH_COLOR,
18      FINISHED
19  }