Five fiuto-toned gen techniques: flow, growth, packing, lissajous, plasma#7
Open
darioabc wants to merge 1 commit into
Open
Five fiuto-toned gen techniques: flow, growth, packing, lissajous, plasma#7darioabc wants to merge 1 commit into
darioabc wants to merge 1 commit into
Conversation
…, plasma Apply the established "light in the dark" finishing pass and fiuto tones to five non-harmonograph techniques, each with high-variance variants. All share a new gen/Ink.kt helper (tones + SCREEN-bloom + grain finishing pass + a plasma colour ramp). Tones (from the fiuto repo): navy ground #071426, teal #00D3BB, purple #5E49D6, white. - FlowInk (3): simplex-noise flow-field streamlines (laminar / turbulent / vortex). - GrowInk (3): differential growth, bounded by maxRadius, teal-core->purple-rim bands. NB: Growth uses the engine's global RNG, so it is not byte-reproducible by GART_SEED. - PackInk (3): largest-fit circle packing drawn as nested glowing rings. - LissaInk (10): nested concentric Lissajous across frequency ratios 1:2..7:9 + 2 damped. - PlasmaInk (10): per-pixel sum-of-sines mapped through a fiuto colour ramp. 16:9 (GART_SIZE sets height, width derived). Committed PNGs are 960x540 drafts (seed 173). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Five non-harmonograph generative techniques, each with high-variance variants, all using
the established "light in the dark" finishing pass and fiuto tones so the whole
family is visually consistent. Follows the same approach as the harmonograph pieces.
A new shared gen/Ink.kt centralises the tones, the
SCREEN-bloom + noise-grain finishing pass, and a plasma colour ramp.
Tones lifted from the fiuto repo: navy ground
#071426, teal#00D3BB, purple#5E49D6, white.FlowInkGrowInkmaxRadius)PackInkLissaInkPlasmaInkNotes
and purple as distinct colours naturally; Lissajous is drawn as nested concentric
figures (teal core → purple rim) so the two accents separate radially.
Growthuses the engine's global RNG internally, so itsoutput is not byte-for-byte reproducible by
GART_SEED(the other four are).GART_SIZEsets the height, width derived. The committed PNGs are960×540 drafts (seed 173); re-run without
GART_SIZEfor 1920×1080.Reproduce
🤖 Generated with Claude Code