Skip to content

Instantly share code, notes, and snippets.

View setanarut's full-sized avatar

Barış setanarut

  • Türkiye
View GitHub Profile
@setanarut
setanarut / motion_to_curve.py
Created May 16, 2026 06:59
Blender 3.6 motion path to curve addon
bl_info = {
"name": "Motion Path to Curve",
"blender": (3, 6, 0),
"category": "Object",
}
import bpy
class OBJECT_OT_create_motion_curve(bpy.types.Operator):
bl_idname = "object.create_motion_curve"
@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"