Skip to content

Instantly share code, notes, and snippets.

View setanarut's full-sized avatar

Barış setanarut

  • Türkiye
View GitHub Profile
@setanarut
setanarut / halftone.py
Created February 27, 2026 04:46
Krita Halftone script
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ı
@setanarut
setanarut / main.go
Created May 3, 2025 01:47
FM effect
package main
import (
"image"
"image/color"
"math"
"github.com/anthonynsimon/bild/blend"
"github.com/anthonynsimon/bild/fcolor"
"github.com/anthonynsimon/bild/imgio"