This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from krita import Krita | |
| import array, math, time | |
| # ─── AYARLAR ────────────────────────────────────────────────── | |
| WAVE_COUNT = 24 | |
| TOTAL_FRAMES = 10 | |
| WAVEFORM = "sawtooth" # "triangle" | "sawtooth" | "sine" | |
| REVERSE = False | |
| FPS = 10 | |
| SRC_LAYER = "dem" # kaynak katman adı |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "image" | |
| "image/color" | |
| "math" | |
| "github.com/anthonynsimon/bild/blend" | |
| "github.com/anthonynsimon/bild/fcolor" | |
| "github.com/anthonynsimon/bild/imgio" |