1 package org.woehlke.computer.kurzweil.mandelbrot.model.turing; 2 3 /** 4 * Mandelbrot Set drawn by a Turing Machine. 5 * 6 * (C) 2006 - 2015 Thomas Woehlke. 7 * https://thomas-woehlke.blogspot.com/2016/01/mandelbrot-set-drawn-by-turing-machine.html 8 * @author Thomas Woehlke 9 * 10 * Created by tw on 18.08.15. 11 */ 12 public enum TuringPhase { 13 SEARCH_THE_SET, 14 WALK_AROUND_THE_SET, 15 FILL_THE_OUTSIDE_WITH_COLOR, 16 FINISHED 17 }