/** * Subtractive Animation: The Triad Revealed * * Demonstrates "creation is removing what obscures" * through ASCII art frames. Each frame removes noise * to reveal the essential form. * * Inspired by Gabriel Santos (Stone Story RPG): * "I start with the full pyramid and I erase it layer by layer." * * Usage: * import { frames, getFrame } from './subtractive-animation'; * // Animate by iterating through frames * // Or display final frame as static art */ /** * All frames in order (0 = most obscured, 5 = revealed) */ export declare const frames: string[]; /** * Get a specific frame by index */ export declare function getFrame(index: number): string; /** * Get the final revealed frame (for static display) */ export declare function getFinalFrame(): string; /** * Animation metadata */ export declare const animationMeta: { name: string; frameCount: number; concept: string; technique: string; source: string; philosophy: string; };