From e89eeddd1f6c4f761f5177a5e551aa9d969ef195 Mon Sep 17 00:00:00 2001 From: Igor V Belousov Date: Fri, 19 Nov 2021 16:53:28 +0300 Subject: [PATCH] Chapter 1 - Practice 1.5 (gif color changes) --- ch1/lissajous_1_5.go | 52 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 ch1/lissajous_1_5.go diff --git a/ch1/lissajous_1_5.go b/ch1/lissajous_1_5.go new file mode 100644 index 0000000..7eeb922 --- /dev/null +++ b/ch1/lissajous_1_5.go @@ -0,0 +1,52 @@ +// Lissajous генерирует анимированный gif из случайных +// фигур Лиссажу. +package main + +import ( + "image" + "image/color" + "image/gif" + "io" + "math" + "math/rand" + "os" + "time" +) + +var palette = []color.Color{color.Black, color.RGBA{0x00, 0xff, 0x00, 0xff}} + +const ( + whiteIndex = 0 // Первый цвет палитры + blackIndex = 1 // Следующий цвет палитры +) + +func main() { + lissajous(os.Stdout) +} + +func lissajous(out io.Writer) { + const ( + cycles = 5 // Количество полных колебаний x + res = 0.001 // Угловое разрешение + size = 100 // Канва изобрадения охватывает [size..+size] + nframes = 64 // Количество кадро анимации + delay = 8 // Задержка между кадрами (единица - 10мс) + ) + rand.Seed(time.Now().UTC().UnixNano()) + freq := rand.Float64() * 3.0 + anim := gif.GIF{LoopCount: nframes} + phase := 0.0 // Разность фаз + for i := 0; i < nframes; i++ { + rect := image.Rect(0, 0, 2*size+1, 2*size+1) + img := image.NewPaletted(rect, palette) + for t := 0.0; t < cycles*2*math.Pi; t += res { + x := math.Sin(t) + y := math.Sin(t*freq + phase) + img.SetColorIndex(size+int(x*size+0.5), size+int(y*size+0.5), blackIndex) + } + phase += 0.1 + anim.Delay = append(anim.Delay, delay) + anim.Image = append(anim.Image, img) + } + gif.EncodeAll(out, &anim) +}