From f7c55fd75ac357054bc6276eca251342fcee49aa Mon Sep 17 00:00:00 2001 From: Grimsace Date: Mon, 23 Mar 2026 19:38:01 +0100 Subject: [PATCH] Made things a bit clearer in the comments --- solid_noise/solid_noise.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solid_noise/solid_noise.py b/solid_noise/solid_noise.py index 48fd4a3..88cd128 100644 --- a/solid_noise/solid_noise.py +++ b/solid_noise/solid_noise.py @@ -2,7 +2,7 @@ Solid Noise Generator — Krita Plugin Generates Perlin noise at canvas resolution with configurable octaves (1-16). -Speed strategy: compile a tiny C shared library at first use via gcc + ctypes. +Compile a tiny C shared library at first use via gcc + ctypes. This gives near-native performance (~0.1s at 1080p, 4 octaves) while requiring zero third-party Python packages. If gcc is unavailable we fall back to a pure-Python path automatically.