23 lines
395 B
Markdown
23 lines
395 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, -3-2im, 2+2im)
|
|
```
|
|
The coördinates specified are the bottom left and top right, respectively.
|
|
|