23 lines
408 B
Markdown
23 lines
408 B
Markdown
# Boundary Bad Apple!!
|
|
|
|
Boundary-aware Bad Apple!! animation generation
|
|
|
|
## Fractal
|
|
|
|
Usage:
|
|
|
|
Load an image with `Images`
|
|
|
|
```julia
|
|
using Images, FileIO
|
|
img = load("examples/frame.png")
|
|
```
|
|
Then generate the fractal using the pseudomandelbrot function
|
|
|
|
```julia
|
|
include("src/fractal.jl")
|
|
mandel(img, -0.53+0.60im, -0.51+0.62im)
|
|
```
|
|
The coördinates specified are the bottom left and top right, respectively.
|
|
|