Compare commits

..

No commits in common. "c9c29f980da54153d073c95ada2d449b1d61317d" and "1dd6fa470eb2fb89920adfd1cf60aacd2ae01e5a" have entirely different histories.

5 changed files with 3411 additions and 4 deletions

View File

@ -1,5 +1,6 @@
FROM scratch
LABEL maintainer="himself@stevenpolley.net"
COPY mandelmapper /
COPY ca-certificates.crt /etc/ssl/certs/
EXPOSE 6161:6161
ENTRYPOINT ["/mandelmapper"]

3408
ca-certificates.crt Normal file

File diff suppressed because it is too large Load Diff

2
go.mod
View File

@ -2,4 +2,4 @@ module deadbeef.codes/steven/mandelmapper
go 1.22
require golang.org/x/image v0.22.0
require golang.org/x/image v0.18.0

2
go.sum
View File

@ -1,4 +1,2 @@
golang.org/x/image v0.18.0 h1:jGzIakQa/ZXI1I0Fxvaa9W7yP25TqT6cHIHn+6CqvSQ=
golang.org/x/image v0.18.0/go.mod h1:4yyo5vMFQjVjUcVk4jEQcU9MGy/rulF5WvUILseCM2E=
golang.org/x/image v0.22.0 h1:UtK5yLUzilVrkjMAZAZ34DXGpASN8i8pj8g+O+yd10g=
golang.org/x/image v0.22.0/go.mod h1:9hPFhljd4zZ1GNSIZJ49sqbp45GKK9t6w+iXvGqZUz4=

View File

@ -24,7 +24,7 @@ import (
const (
Size = 128
//Iterations = (1<<16 - 1) / 256
Iterations = (1<<16 - 1) / 128
Iterations = (1<<16 - 1) / 64
)
var (