Compare commits

...

3 Commits

Author SHA1 Message Date
c9c29f980d change iterations from /64 to /128
All checks were successful
continuous-integration/drone/push Build is passing
2024-12-01 14:56:37 -07:00
4b811dc8d7 upgrade golang.orx/x/image from 0.18.0 to 0.22.0 2024-12-01 14:56:26 -07:00
62eed5a9ee remove ca-certificates 2024-12-01 14:56:01 -07:00
5 changed files with 4 additions and 3411 deletions

View File

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

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 go 1.22
require golang.org/x/image v0.18.0 require golang.org/x/image v0.22.0

2
go.sum
View File

@ -1,2 +1,4 @@
golang.org/x/image v0.18.0 h1:jGzIakQa/ZXI1I0Fxvaa9W7yP25TqT6cHIHn+6CqvSQ= 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.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 ( const (
Size = 128 Size = 128
//Iterations = (1<<16 - 1) / 256 //Iterations = (1<<16 - 1) / 256
Iterations = (1<<16 - 1) / 64 Iterations = (1<<16 - 1) / 128
) )
var ( var (