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
| 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" |
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" |