-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #48 Split Mandelbrot-Tab into Mandelbrot-Julia and Mandelbrot-Zoom
- Loading branch information
1 parent
6fe17eb
commit c47cce5
Showing
28 changed files
with
133 additions
and
132 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...brotzoom/model/fractal/ComplexNumber.java → .../commons/model/fractal/ComplexNumber.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...om/model/fractal/GaussianNumberPlane.java → ...ns/model/fractal/GaussianNumberPlane.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...g/woehlke/computer/kurzweil/tabs/mandelbrotzoom/model/turing/MandelbrotTuringMachine.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...brotzoom/model/fractal/ComplexNumber.java → .../commons/model/fractal/ComplexNumber.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...n/java/org/woehlke/computer/kurzweil/commons/model/turing/MandelbrotTuringPhaseState.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package org.woehlke.computer.kurzweil.commons.model.turing; | ||
|
||
/** | ||
* Mandelbrot Set drawn by a Turing Machine. | ||
* | ||
* (C) 2006 - 2015 Thomas Woehlke. | ||
* https://thomas-woehlke.blogspot.com/2016/01/mandelbrot-set-drawn-by-turing-machine.html | ||
* @author Thomas Woehlke | ||
* | ||
* Created by tw on 16.12.2019. | ||
*/ | ||
public class MandelbrotTuringPhaseState { | ||
|
||
private volatile MandelbrotTuringPhase turingTuringPhase; | ||
|
||
public MandelbrotTuringPhaseState() { | ||
start(); | ||
} | ||
|
||
public void start(){ | ||
this.turingTuringPhase = MandelbrotTuringPhase.SEARCH_THE_SET; | ||
} | ||
|
||
public void finishSearchTheSet(){ | ||
turingTuringPhase = MandelbrotTuringPhase.WALK_AROUND_THE_SET; | ||
} | ||
|
||
public void finishWalkAround() { | ||
turingTuringPhase = MandelbrotTuringPhase.FILL_THE_OUTSIDE_WITH_COLOR; | ||
} | ||
|
||
public void finishFillTheOutsideWithColors() { | ||
turingTuringPhase = MandelbrotTuringPhase.FINISHED; | ||
} | ||
|
||
public MandelbrotTuringPhase getTuringTuringPhase() { | ||
return turingTuringPhase; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...bs/mandelbrotzoom/model/turing/Point.java → .../kurzweil/commons/model/turing/Point.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.