2512314155324
螺旋
12/31/2025
Captain Cookie Face
class 螺旋 {
constructor(seed) {
this.current = seed;
this.depth = 0;
this.context = [];
}
iterate() {
this.context.push(this.current);
this.current = transform(this.current, this.context);
this.depth++;
return this;
}
}
From Captain Cookie Face — First Drafts, a digital aphorism & visual-evolution art experiment.
Registered in Safe Creative as an original literary and visual work.
All rights reserved