Physics / Cosmology / Simulation
Computational Neurographica: Methodologies for Generative and Moving Neurographic Art Visualizations
Report summary
Neurographic art, formalized under the trademark Neurographica, is a structured, transformational drawing methodology developed in April 2014 by Russian psychologist, architect, and professor Pavel Piskarev1. At its theoretical foundation, the practice merges visual thinking with the established law
Key topics
- Physics / Cosmology / Simulation
- Physics
- Cosmology
- Simulation
- AI
- .NET
- Python
- Research Archive
- Audit
Research provenance
For citation, use the report title and canonical URL. Archival presence does not establish authorship or promote report statements into portfolio evidence.
This page renders the archived Markdown as safe, formatted HTML. It is background research and does not become a portfolio claim without evidence review.
Full report
On this page
Introduction to the Neurographic Framework and Digital Transposition
Neurographic art, formalized under the trademark Neurographica, is a structured, transformational drawing methodology developed in April 2014 by Russian psychologist, architect, and professor Pavel Piskarev1. At its theoretical foundation, the practice merges visual thinking with the established laws of neuropsychology, analytical psychology, Gestalt psychology, psychosynthesis, and modern management theory to facilitate profound emotional healing, stress reduction, and cognitive reorganization1. The analog practice relies on the somatic engagement of fine motor skills—using simply a pen and paper—to bypass the brain's critical faculties, externalizing subconscious tension into a visual format5. Since its inception, the method has proliferated globally, reaching over ten million practitioners across thirty-eight countries and gaining recognition in clinical art therapy and corporate coaching3.
The transition of Neurographica from a static, paper-bound exercise into the realm of dynamic, moving digital visualizations represents a highly complex convergence of psychological theory and computational geometry. Translating this method into real-time generative art, interactive installations, and virtual reality (VR) requires a rigorous understanding of the proprietary algorithms that define the method. It is not merely the creation of abstract generative line art; it is the algorithmic encoding of psychological harmonization. By synthesizing organic growth simulations—such as differential line growth and Physarum polycephalum (slime mold) networks—with advanced rendering techniques like Signed Distance Fields (SDFs) and smooth minimum operators, creative technologists can construct digital environments that simulate, and interactively expand upon, the neuroplastic benefits of the original analog method7.
This report exhaustively investigates the intersection of Neurographica and computational arts. It outlines the translation of the proprietary psychological algorithms into programmable logic, details the mathematical and physics-based engines required to generate moving neuro-lines, evaluates the software ecosystems capable of real-time execution, and proposes comprehensive interactive visualization frameworks that leverage biofeedback, spatial computing, and projection mapping.
Deconstructing the Psychological Algorithms for Computation
To computationalize Neurographica, the generative system must strictly adhere to the proprietary rules established by the Institute of Psychology of Creativity. The practice is not intuitive doodling; it is governed by a precise, seven-step Basic Algorithm designed to systematically guide the practitioner's consciousness from surface-level awareness to deep subconscious integration10.
The Core Algorithmic Steps and Computational Equivalents
The Basic Algorithm serves as the underlying structure for over forty copyrighted algorithmic variations, including the Algorithm for Removing Limitations (ARL), NeuroComposition, and NeuroMandala3. For a moving digital visualization to authentically replicate Neurographica, the software pipeline must mirror these foundational steps.
| Neurographica Basic Algorithm Step | Psychological Purpose | Computational and Generative Pipeline Equivalent |
|---|---|---|
| 1\. Theme and Goal Setting | Establishing the cognitive focus or problem to be addressed. | Defining the initial state, boundary conditions, and global variables of the simulation environment (e.g., setting the "attractors" in a particle system). |
| 2\. Composition / Catharsis | An emotional "throw" or release onto the canvas, expressing internal tension through rapid, chaotic lines. | The initial burst of generative data. This can be achieved through a rapid randomized noise injection or a burst of high-velocity particles driven by curl noise12. |
| 3\. Conjoining (Rounding) | The vital process of softening all sharp intersections to harmonize conflict and reduce psychological stress. | The application of Signed Distance Fields (SDFs) and smooth minimum (smin) mathematical operators to dynamically fillet the intersections of digital splines1. |
| 4\. Integration (Shapes & Background) | Uniting fragmented parts into a whole by extending lines into the background and grouping regions by color. | Executing flood-fill algorithms, Voronoi fracturing, or reaction-diffusion texturing to unify negative space and apply cohesive color palettes based on proximity14. |
| 5\. Field Lines | Drawing thick, powerful lines that traverse the composition, representing a connection to higher environmental or spiritual forces. | Introducing secondary, low-frequency, high-amplitude splines that act as gravitational attractors or overriding velocity fields, altering the path of the existing neuro-lines14. |
| 6\. Fixing the Solution | Emphasizing the most critical shapes or insights discovered during the drawing process. | Enhancing the scale, luminosity, or bloom of specific geometric clusters to create visual hierarchy in the generative output16. |
| 7\. Final Reflection | Assessing the shifted emotional state and cognitive resolution. | The steady-state equilibrium of the simulation, where rapid growth ceases and the visualization enters a state of balanced, cyclical flow. |
The Typology of Lines and Shapes
The primary graphical asset of the method is the "Piskarev Line" (or neuro-line). The precise definition of a neurographic line dictates that it must not repeat itself on any segment of its movement, and it must be led to a place where the conscious mind does not expect it1. In algorithmic terms, this strictly prohibits the use of simple sine waves or linear interpolations. A programmatic neuro-line requires multi-octave noise displacement—where high-frequency noise creates localized jitter and low-frequency noise dictates overarching, unpredictable directional shifts—mirroring the complexity of biological forms like cracked earth, branching tree roots, or vascular networks1.
Furthermore, the integration of archetypal shapes carries explicit symbolic weight. Circles represent harmony, unity, wholeness, and softness. Squares introduce structure, stability, boundaries, and groundedness. Triangles symbolize dynamic action, direction, and transformation, often used to break through cognitive blocks10. In a moving visualization, these geometric primitives can function as bounding volumes, collision objects, or force fields within the generative simulation, actively interacting with the meandering neuro-lines. A critical safety precaution taught to certified instructors highlights the danger of leaving sharp intersections unresolved, particularly when utilizing triangles; a generative system must ensure that the line thickness at these intersections precisely matches the thickness of the converging lines, ensuring a seamless, non-threatening visual topology17.
Mathematical and Physics-Based Engines for Organic Growth
Static neurographic art is drawn by human hands, limited by the speed of physical movement. To create a continuously evolving, moving visualization that operates independently or interactively, developers must employ sophisticated growth algorithms. The most effective computational paradigms for mimicking the Piskarev line are differential line growth and slime mold simulations.
Differential Line Growth Dynamics
Differential line growth is a classic computational geometry technique that perfectly mimics the meandering, non-intersecting, and densely packed nature of biological tissues, such as brain coral, intestinal folding, or the cerebral cortex7. The algorithm operates on a polyline (a curve composed of discrete interconnected points) using a continuous, iterative feedback loop governed by three distinct forces.
The first force is relaxation or smoothing, wherein each point on the line continually attempts to average its position relative to its immediate neighbors, minimizing the second derivative of the curve and preventing unnatural, jagged artifacts20. The second force is repulsion. Every point exerts a spatial repulsive force against all other points within a defined search radius. This guarantees that as the line grows and folds back onto itself within a constrained space, it never self-intersects21. The third force is adaptive resampling. As points are pushed apart by the repulsive forces, the line segments between them stretch. When a segment exceeds a maximum length threshold, the algorithm dynamically inserts a new point at the midpoint24. This continuous injection of new geometry drives the "growth" of the structure.
In visual effects software such as SideFX Houdini, differential growth is typically orchestrated using a Solver SOP (Surface Operator) that recursively evaluates Point VOPs (Vector Operations), or by hijacking physical simulation engines like the Vellum soft-body solver22. By applying multi-frequency unified noise or curl noise to the velocity fields guiding the points, the simulated lines emulate the highly erratic, non-repeating requirements of the neuro-line7. When this differential growth is constrained to adhere to the surface of a specific geometry (e.g., using inverse surface normals to advect the particles along a 3D boundary), the moving visualization becomes a mesmerizing, infinitely expanding neurographic web that slowly fills its container, symbolizing the expansion of consciousness and the release of internal psychological tension20.
Physarum Polycephalum (Slime Mold) Network Optimization
While differential growth perfectly models a single, infinitely folding line, neurographic art explicitly requires multiple lines to intersect, branch, and form complex neural nodes1. The behavior of Physarum polycephalum (slime mold) provides a biologically accurate algorithm for this dynamic network formation26.
The Slime Mould Algorithm (SMA) is a population-based meta-heuristic model inspired by the foraging behavior of the eukaryotic organism8. In computational modeling, thousands of autonomous digital agents navigate a virtual grid. As they move, they deposit a chemical trail (a chemoattractant) into the environment8. Concurrently, the grid processes the diffusion and decay of this chemical over time29. Each agent is equipped with sensory antennae configured by specific parameters—such as sensor angle and sensor offset—that sample the chemical concentration ahead of them. The agents continuously rotate their trajectory toward the highest concentration of the attractant, creating a positive feedback loop8.
This decentralized intelligence yields highly organic, resilient, and optimized branching networks that are visually indistinguishable from neurological pathways1. The parameters of the Physarum model map seamlessly to the generation of moving Neurographica. The "Sensor Angle" determines the agent's field of view; a narrow angle produces rigid paths, while a wide angle encourages the erratic branching characteristic of Piskarev lines8. The "Decay Rate" dictates how quickly the chemical trail vanishes, allowing the visualization to continually prune unused pathways and dynamically shift focus, mirroring the psychological process of letting go of obsolete thought patterns8.
Furthermore, researchers have utilized Physarum algorithms to solve complex spatial problems, such as finding the Steiner Minimal Tree or replicating the efficiency of the Tokyo railway system27. By placing static "food sources" in the simulation grid, the digital slime mold will automatically generate the most optimal, organically meandering connections between them8. In a neurographic visualization, these food sources act as the archetypal shapes (circles, squares, triangles) placed during the "Composition" phase. The moving slime mold network naturally seeks out these geometric anchors, thickening at the intersections due to heavy agent traffic, and autonomously generating the connective "field lines" required by the Neurographica Basic Algorithm8.
Reaction-Diffusion Morphogenesis
A third computational approach involves Reaction-Diffusion (R-D) systems, which describe how the concentration of distinct substances distributed in space changes under the influence of local chemical reactions and spatial diffusion15. Mathematical models like the Gray-Scott equation generate self-organizing Turing patterns—spots, stripes, and winding labyrinthine forms15.
In real-time rendering environments, reaction-diffusion is implemented using GPU-accelerated feedback loops, where a texture is iteratively blurred (simulating diffusion), subjected to a mathematical threshold (simulating reaction), and fed back into the subsequent frame34. By manipulating the feed and kill rates of the algorithm dynamically, the resulting visuals can perfectly emulate the dense, interconnected background textures, color blocking, and cellular integration phases seen in advanced neurographic compositions5.
The Mathematics of Conjoining: Rendering Smooth Intersections
Generating the organic movement of the lines is only the first computational challenge. The psychological core and distinguishing visual hallmark of Neurographica is the "conjoining" or "rounding" process1. Wherever two lines cross, the resulting sharp angles (both acute and obtuse) must be filled in with soft, concave curves, effectively smoothing out the intersection and eliminating any sharp corners that the brain might perceive as threatening1.
In a moving visualization where hundreds of lines constantly intersect, separate, and shift in real time, traditional vector graphics algorithms (such as calculating Boolean unions and generating explicit geometric fillets) are mathematically unstable and computationally prohibitive37. The definitive solution for real-time intersection smoothing lies in the use of Signed Distance Fields (SDFs) rendered via the OpenGL Shading Language (GLSL)9.
Signed Distance Fields and the Smooth Minimum
An SDF is a mathematical function that calculates the shortest distance from any arbitrary point in space to the surface of a shape23. If the point is outside the shape, the distance is positive; if the point is inside, the distance is negative; if the point rests exactly on the boundary, the distance is exactly zero39. In advanced shader programming, highly complex scenes are not constructed from explicit polygon meshes, but rather by mathematically combining simple SDF primitives (such as lines, circles, and boxes) using constructive solid geometry operations40.
If a generative system contains two intersecting neuro-lines, the standard mathematical method to combine their distance fields is a simple minimum function: [Figure omitted from source export]. However, this operation creates a sharp crease or corner at the exact point of intersection—precisely the visual artifact that Neurographica seeks to eliminate1. To computationally replicate the manual rounding effect, developers rely on the "smooth minimum" function (smin), heavily popularized in the computer graphics community by rendering architect Inigo Quilez9.
The polynomial smooth minimum acts as a mathematical fillet, blending the transition between two distance fields based on a controllable smoothing radius, [Figure omitted from source export]9. The GLSL implementation of this function is highly optimized for parallel GPU evaluation:
[Figure omitted from source export]
[Figure omitted from source export]
Where [Figure omitted from source export] and [Figure omitted from source export] are the distances to the two intersecting neuro-lines, and [Figure omitted from source export] dictates the size of the rounded corner9. By passing the coordinates of the dynamic biological simulations (differential growth or Physarum) through this smin function in the fragment shader, every single intersection is instantly, flawlessly, and organically rounded9.
This implementation yields a profound second-order insight regarding the intersection of mathematics and psychology. The explicitly stated goal of Neurographica is to reduce internal conflict by manually smoothing sharp corners1. The smin function achieves the exact same result in computational geometry by minimizing the second derivative (the abrupt change in slope) at the intersection23. Therefore, the mathematical elimination of stress in the geometric topology serves as a perfect literal translation of the psychological elimination of emotional stress.
Furthermore, archetypal shapes can be seamlessly integrated into this SDF environment. If a square (representing boundaries or stability) is introduced, the smin function allows the erratic neuro-lines to organically melt into the rigid geometric primitive, creating a cohesive visual structure that honors the "Integration" phase of the Neurographica Basic Algorithm10. The parameters of the distance field, such as exponential mappings and squircle algorithms (superellipses), can be tuned to ensure that the line thickness at the conjoined points perfectly matches the original splines, adhering strictly to the safety precautions of the methodology17.
Software Ecosystems and Real-Time Toolchains
Developing high-fidelity moving neurographic visualizations requires sophisticated software environments capable of processing massive datasets, executing complex particle simulations, and rendering heavy fragment shaders at interactive frame rates (typically 60 to 120 frames per second).
Derivative's TouchDesigner (2025/2026 Ecosystem)
Derivative’s TouchDesigner is widely regarded as the premier visual programming environment for real-time generative art, interactive installations, and projection mapping16. Following the extensive platform updates in 2025 and 2026, TouchDesigner introduced Point Operators (POPs), a new family of nodes that run geometry and general numeric data entirely on the GPU48. Prior to POPs, moving large point clouds (such as the millions of agents required for a robust Physarum simulation) was bottlenecked by CPU calculations. POPs allow for the instantaneous creation, modification, and simulation of 3D data points, particle systems, and spline curves, unlocking new levels of real-time performance48.
The TouchDesigner community has rapidly expanded upon this architecture. Custom extensions like POPX provide GPU-accelerated frameworks for generating and modifying geometry with unprecedented speed49. Additionally, the integration of artificial intelligence directly into the node network has fundamentally changed the generative workflow. Tools like LOPs (Language/Learning/Logic/Latent Operators) and Dylan Roscover's "Embody" (a Model Context Protocol utilizing Claude Code) allow artists to use natural language to direct the generation of complex GLSL shaders49. A creative technologist can prompt the system to generate a raymarching SDF shader with specific smin constraints, drastically reducing the programming friction required to perfect the neurographic rounding effect49. Furthermore, for interactive inputs, the YOLO TouchDesigner Plugin enables multi-person pose, object, and face tracking via machine learning, allowing the generative neuro-lines to dynamically respond to human movement within physical spaces49.
SideFX Houdini
For offline generation, pre-computed assets, or highly art-directed commercial visualizations, SideFX Houdini is the industry standard7. Its procedural, node-based architecture offers granular control over topological growth. Houdini's extensive toolset includes the Labs Curve Branches node, which scatters and grows curves over other curves recursively, approximating L-Systems with high controllability—ideal for generating the hierarchical structure of thick field lines spawning thinner neurographic tributaries7. The software's Vellum solver can simulate the physical properties of the lines, treating them as soft bodies, strings, or hair that actively push against each other and conform to environmental collision objects25. The resulting geometric data can be exported as Alembic caches or Vertex Animation Textures (VATs) for real-time playback in game engines like Unreal Engine54.
WebGL and p5.js
For browser-based, highly accessible interactive web visualizations, the combination of p5.js and raw WebGL fragment shaders provides a robust platform39. While web environments cannot handle the extreme particle counts of desktop applications like TouchDesigner, they excel at 2D SDF rendering37. By passing uniform variables (such as elapsed time, mouse position, and touch pressure) from the p5.js canvas to a compiled GLSL shader, developers can deploy web applications where users interactively draw their own paths. The fragment shader then utilizes the smin algorithm to instantaneously and mathematically round the intersections of their strokes on the screen, providing a lightweight, universally accessible digital tool for neurographic practice39.
Interactive and Immersive Formats: Visualizing the Subconscious
Translating Neurographica from a static drawing on paper to a moving visualization opens vast avenues for interactive installations, therapeutic clinical tools, and immersive somatic experiences. The digital transposition addresses distinct neural networks, expanding the efficacy of the method through real-time feedback loops.
1. Biofeedback-Driven Neurographica (EEG and BCI Integration)
The ultimate goal of Neurographica is the psychological regulation of the practitioner, shifting their cognitive state from high-anxiety (characterized by rapid, high-amplitude beta brainwaves) to states of relaxation, flow, and deep focus (characterized by alpha and theta brainwaves)58. By integrating Brain-Computer Interfaces (BCI) or consumer-grade wearable EEG headsets (such as the Cyton board) into the generative pipeline, the visualization acts as a real-time neurofeedback loop59.
Research indicates that flow states—the deeply immersive psychological state highly correlated with effective art therapy—are marked by significant positive correlations with EEG activity in the delta, theta, and alpha bands, particularly in the frontal lobes59. Sustained delta oscillations act as a safeguard, tuning out irrelevant sensory information and facilitating deep concentration, while alpha power increases during periods of high flow compared to boredom59.
| Brainwave Band | Psychological State | Algorithmic Mapping in Digital Neurographica |
|---|---|---|
| Beta (13–30 Hz) | Stress, anxiety, active analytical thought59. | Physarum agents move rapidly; sensor angles are narrowed creating erratic, sharp lines. The smoothing factor ([Figure omitted from source export]) in the smin GLSL shader is minimized, leaving intersections visually sharp and unresolved. |
| Alpha (8–12 Hz) | Relaxation, passive attention, flow onset59. | Movement slows, lines begin to meander smoothly. The distance field begins to thicken, and shapes (circles) slowly merge into the foreground61. |
| Theta (4–8 Hz) | Deep flow, meditation, sub-conscious access59. | Agents exhibit wide, branching behavior; the [Figure omitted from source export] parameter expands drastically, deeply filleting all intersections into a hyper-connected, organic, fluid network, symbolizing complete psychological harmonization. |
| Delta (0.5–4 Hz) | Unconscious repair, deep emotional engagement, sensory isolation59. | The overall speed of the simulation approaches a steady, breathing rhythm. High-amplitude "Field Lines" traverse the composition, grounding the neural network14. |
In this configuration, the user does not manually draw the lines. Instead, they sit before a screen and attempt to regulate their breathing and cognitive state64. As they successfully calm their mind, they watch their raw neurophysiological data literally "round out" and harmonize the digital canvas in real time. This creates a powerful closed-loop clinical tool where the user is rewarded with visual harmony for achieving physiological calm60.
2. Spatial Neurographica in Virtual Reality (VR)
Traditional Neurographica is fundamentally constrained to a two-dimensional plane5. Transposing this methodology into a three-dimensional immersive environment using VR headsets radically alters the somatic and proprioceptive experience64.
Companies in the digital health sector, such as PsyTech VR, are actively utilizing virtual reality to deliver exposure therapy, safe-space generation, and stress management tools64. Integrating a 3D generative neurographic environment allows for profound new therapeutic modalities. Utilizing spatial tracking controllers, the user physically walks around a room-scale volume, drawing massive three-dimensional splines in space. A real-time compute shader continuously analyzes the proximity of all splines within the environment. When two 3D lines approach each other, volumetric metaballs or 3D Signed Distance Fields instantly generate bridging geometric tissue between them, dynamically smoothing the intersections in three dimensions23.
This spatial interaction significantly impacts the user's cognitive load and embodiment63. Instead of observing a problem on a piece of paper, the user physically constructs their cognitive blockages as massive digital structures, and then uses their full body to walk through, around, and inside them, modifying the structure until the environment feels safe, rounded, and harmonized63. This engages the sensorimotor cortex in unprecedented ways, establishing new neural pathways that a purely 2D analog practice cannot trigger6.
3. Projection Mapped Urban Generative Art
Neurographica's underlying philosophy centers on the harmonization of systems and the connection to larger environmental fields1. This concept can be extrapolated from the individual psyche to a macroscopic scale through projection mapping on urban infrastructure47.
Using tools within TouchDesigner, a 3D model of a building's facade is used to calibrate high-lumen projectors47. A Physarum simulation can be deployed across this geometry, specifically programmed to treat architectural features (windows, doors, structural columns) as the "food source" attractors8. The digital slime mold searches the facade, projecting glowing neuro-lines that crawl across the building.
To introduce interactivity, computer vision algorithms (such as YOLO multi-person pose tracking) monitor the public plaza below the projection49. When individuals enter the space, their physical coordinates are translated into new attractors within the simulation. The neuro-lines reach down the building to connect to the physical location of the spectators, dynamically conjoining and smoothing the intersections where multiple public nodes cross. This transforms a static piece of civic architecture into a living, breathing neurographic canvas that visually harmonizes the public space and connecting the community through a shared, generative algorithm49.
Psychological Efficacy: Digital vs. Analog Modalities
The transition from manual drawing to digital interaction necessitates a rigorous examination of the therapeutic efficacy of the medium. Traditional Neurographica relies heavily on the tactile, somatic feedback of a physical pen dragging across paper. This fine motor engagement directly stimulates specific neuroplastic pathways and activates the Default Mode Network (DMN), promoting creativity and emotional integration3. Furthermore, manual drawing facilitates a direct hand-brain connection, where the physical slowness of the process forces the mind to bypass executive functioning and engage in non-verbal reflection3.
A critical query emerges: does a moving, computationally generated visualization retain these psychological benefits if the user is merely observing, or interacting via digital peripherals?
Current research suggests that digital and analog art therapies are not in competition, nor is one inherently superior; rather, they operate on complementary neural mechanisms72. While observing a pre-generated algorithm reduces the fine motor engagement of the hand, it significantly amplifies visual and auditory stimulation. Immersive digital art has been shown to effectively induce flow states, lower cognitive load, and reduce the somatic symptoms associated with anxiety, PTSD, and depression by stimulating frontal, emotional, and sensory circuits59. Traditional Cognitive Behavioral Therapy (CBT) relies on verbal processing and prefrontal-limbic circuit regulation, which can be difficult for traumatized patients6. Digital neurographic art bypasses this verbal barrier, offering an entirely visual metaphor for cognitive restructuring6.
Moreover, digital implementations provide accessibility for individuals with severe motor limitations or spatial constraints where tactile materials are uncomfortable or impossible to use73. When moving neurographic visualizations are coupled with interactive elements—such as full-body spatial tracking in VR or real-time biofeedback—the somatic engagement is not lost; it is simply transposed from the hand to the entire body or directly to the autonomic nervous system60. The instantaneous algorithmic rounding of complex intersections serves as an immediate, mathematically perfect feedback mechanism that the brain subconsciously interprets as conflict resolution and harmonization1.
Synthesis and Future Outlook
The convergence of Pavel Piskarev’s proprietary Neurographica method with contemporary computational design yields an exceptionally potent synthesis of neuropsychology, mathematics, and generative art. By abstracting the foundational rules of the method—specifically the non-repeating Piskarev line and the rigorous conjoining of all intersections—computational artists can leverage advanced simulation logic like differential line growth and Physarum polycephalum to simulate the organic complexity of human thought.
Crucially, the application of Signed Distance Fields and the mathematical smin function provides a flawless, real-time computational equivalent to the psychological process of rounding and removing internal conflict. The mathematics of geometric smoothing perfectly mirrors the psychology of emotional smoothing.
Supported by the rapid advancement of GPU-accelerated ecosystems like TouchDesigner 2026, procedural engines like Houdini, and accessible WebGL frameworks, moving neurographic visualizations have transcended the limitations of a two-dimensional analog canvas. These technologies invite transformative applications ranging from EEG-driven clinical biofeedback tools to immersive VR environments and large-scale, interactive public installations. Ultimately, generative Neurographica proves that the algorithms governing organic computational growth and the psychological frameworks required for human neuroplasticity are remarkably aligned, establishing a profound new frontier for therapeutic, interactive, and moving digital art.
Works cited
1. Introducing Neurographic Art \- Play Art With Kim, https://playartwithkim.com/neurographic-art/
2. Neurographica \- Neurolines and Rounding \- How to series \- YouTube, https://www.youtube.com/watch?v=7hZPC1ESTXM
3. The NeuroGraphica® Method: History, Science & Pavel Piskarev, D, https://zulfiyageorgiou.com/neurographica-method
4. About | Neurographica, https://english.neurographica.com/about
5. What is Neurographic Art? \- Gel Press, https://gelpress.com/blogs/art-and-inspiration/what-is-neurographic-art
6. Neurographic Art vs. Traditional Therapy \- Which is BEST? \- npnHub, https://npnhub.com/neurographic-art-vs-traditional-therapy-which-is-best/
7. Houdini Branching & Roots Tool (Procedural) \- YouTube, https://www.youtube.com/watch?v=JAdrRro5Zu8
8. Biomimetic Urbanism: Physarum polycephalum network study | CAD, https://scripting.molab.eu/tutorials/slime-mold/
9. Shadertoy Tutorial Part 5 \- 2D SDF Operations and More 2D Shapes, https://inspirnathan.com/posts/51-shadertoy-tutorial-part-5/
10. Neurographica Algorithm: Draw Neurographic Art for Balance, https://expansionink.com/neurographica-algorithm/
11. Seven Steps of a Neurographica Algorithm (DOWNLOAD a PDF doc), https://neurographic.art/2024/08/28/seven-steps-of-a-neurographica-algorithm-download-a-pdf-doc/
12. The difference between the basic algorithm, ARL and other, https://english.neurographica.com/post/the-difference-between-the-base-algorithm-arl-and-other-algorithms-of-neurographica
13. TouchDesigner Tutorial: Cyberpunk Generative Art (Easy) \- YouTube, https://www.youtube.com/watch?v=O\_ydmsbj3kw
14. Glossary \- Neurographica, https://english.neurographica.com/glossary
15. REACTION DIFFUSION \- TOUCHDESIGNER TUTORIAL \[19\], https://derivative.ca/community-post/tutorial/reaction-diffusion-touchdesigner-tutorial-19/71701
16. generative art | Derivative \- TouchDesigner, https://derivative.ca/tags/generative-art
17. Safety precautions to follow when working with Neurographica, https://english.neurographica.com/post/safety-precautions-to-follow-when-working-with-neurographica-part-1
18. Basic User of NeuroGraphica (TM) \- Introduction to the Method, https://www.lettherebelightart.com/neurographica/basic-user-neurographica
19. The popularity and risks associated with Drawing Neurographica, https://english.neurographica.com/post/the-popularity-and-risks-associated-with-drawing-neurographica
20. Differential Line Growth \- Entagma, https://entagma.com/differential-line-growth/
21. Differential Line Growth \- The Quick Way \- YouTube, https://www.youtube.com/watch?v=SOk5qVXrFQA
22. 3D Differential Growth in Houdini \- simpler than you think \- YouTube, https://www.youtube.com/shorts/mRK1DKQ1uGw
23. Blurred rounded rectangles | Raph Levien's blog, https://raphlinus.github.io/graphics/2020/04/21/blurred-rounded-rects.html
24. Differential curve growth \- Effects \- od|force forums, https://forums.odforce.net/topic/25534-differential-curve-growth/
25. Algorithmic Live \- Differential Growth with Vellum \- SideFX, https://www.sidefx.com/tutorials/houdini-algorithmic-live-differential-growth-with-vellum/
26. Slime Mould Algorithm: A Comprehensive Survey of Its Variants and, https://pmc.ncbi.nlm.nih.gov/articles/PMC9838547/
27. Slime Mold Applications in Science: Networks, Medicine, Robotics, https://blob-info.com/en/slime-mold-science-applications/
28. How to extract organic, "thick" paths from a Slime Mold (Physarum, https://www.reddit.com/r/learnpython/comments/1pxof8y/how\_to\_extract\_organic\_thick\_paths\_from\_a\_slime/
29. \[OC\] Slime Mold Simulation using Dijkstra's Algorithm. Solver written, https://www.reddit.com/r/dataisbeautiful/comments/12qpjr4/oc\_slime\_mold\_simulation\_using\_dijkstras/
30. A mathematical model to predict network growth in Physarum, https://royalsocietypublishing.org/rsif/article/22/224/20240720/341/A-mathematical-model-to-predict-network-growth-in
31. Bottom-up robust modeling for the foraging behavior of Physarum, https://arxiv.org/html/2412.19790v1
32. Emergent networks: A slime mold simulation, https://staff.fnwi.uva.nl/b.bredeweg/pdf/BSc/20102011/Semmler.pdf
33. Monte Carlo Physarum Machine: Characteristics of Pattern, https://direct.mit.edu/artl/article/28/1/22/108680/Monte-Carlo-Physarum-Machine-Characteristics-of
34. Reaction-diffusion in 20 seconds (Touchdesginer tutorial) \- YouTube, https://www.youtube.com/watch?v=CzmRMKQBMSw
35. Reaction Diffusion Effect Techniques | Derivative \- TouchDesigner, https://derivative.ca/community-post/tutorial/reaction-diffusion-effect-techniques/69616
36. NEUROGRAPHIC ART 101: BENEFITS, TECHNIQUES & A SIMPLE, https://toratherapeutics.com/wp-content/uploads/2024/02/neurographic-art-101-plus-examples-handout.pdf
37. solution to rounding corners \- p5.js Web Editor, https://editor.p5js.org/shristinos/sketches/WsGW6LZLu
38. Procedural texturing of solid wood with knots \- ResearchGate, https://www.researchgate.net/publication/360311826\_Procedural\_Texturing\_of\_Solid\_Wood\_with\_Knots
39. How to Create Stunning SDF and GLSL Art on the Web \- Medium, https://medium.com/@banyapon/how-to-create-stunning-sdf-and-glsl-art-on-the-web-adb0f4f9ed7e
40. A Journey Into Shaders \- Antoine Mayerowitz, https://www.mayerowitz.io/blog/a-journey-into-shaders
41. Rounded Rectangle Drawing using OpenGL GLSL \- YouTube, https://www.youtube.com/watch?v=IYUF\_Ofhb58
42. Smoothen your functions \- C0DE517E, http://c0de517e.blogspot.com/2014/04/smoothen-your-functions.html
43. Distance Estimator Compendium (DEC), https://jbaker.graphics/writings/DEC.html
44. A series of tricks and techniques I learned doing tiny GLSL demos, https://blog.pkh.me/p/48-a-series-of-tricks-and-techniques-i-learned-doing-tiny-glsl-demos.html
45. I'm working on a SDF Engine where you can freely update ... \- Reddit, https://www.reddit.com/r/GraphicsProgramming/comments/1btifiq/im\_working\_on\_a\_sdf\_engine\_where\_you\_can\_freely/
46. Ways to Create Generative Art with TouchDesigner, https://interactiveimmersive.io/blog/touchdesigner-operators-tricks/ways-to-create-generative-art-with-touchdesigner/
47. TouchDesigner Projection Mapping \- The Interactive & Immersive HQ, https://interactiveimmersive.io/blog/touchdesigner-lessons/3d-projection-mapping-in-touchdesigner/
48. What's New in the 2025 TouchDesigner Release, https://interactiveimmersive.io/blog/touchdesigner-resources/whats-new-in-the-2025-touchdesigner-release/
49. 2026 TouchDesigner Community Tools, https://interactiveimmersive.io/blog/touchdesigner-resources/2026-touchdesigner-community-tools/
50. Main Page | Derivative \- TouchDesigner, https://derivative.ca/UserGuide/Main\_Page
51. GLSL Shaders for Generative Visuals (TouchDesigner \+ Claude, https://derivative.ca/community-post/tutorial/glsl-shaders-generative-visuals-touchdesigner-claude-code/74828
52. Labs Curve Branches geometry node \- SideFX, https://www.sidefx.com/docs/houdini/nodes/sop/labs--curve\_branches.html
53. Houdini Algorithmic Live \#053 \- Differential Growth with Vellum Part 1, https://www.youtube.com/watch?v=tcckNTS9-Os
54. \#generative \#newmediaart \#visualprogramming \#touchdesigner, https://derivative.ca/tags/generative-newmediaart-visualprogramming-touchdesigner-shader-glsl
55. 20: Intro to WEBGL-3D Graphics in p5.js: How to Code Generative Art, https://www.youtube.com/watch?v=HJ7D0ysUL74
56. WebGL Shaders and GLSL, https://webglfundamentals.org/webgl/lessons/webgl-shaders-and-glsl.html
57. Add a rounded border to a texture with a fragment shader, https://gamedev.stackexchange.com/questions/205467/add-a-rounded-border-to-a-texture-with-a-fragment-shader
58. How Neurographic Art Supports SPIRE Well-Being, https://wholebeinginstitute.com/how-neurographic-art-supports-spire-well-being/
59. Exploring the Neural Correlates of Flow Experience with ... \- PMC, https://pmc.ncbi.nlm.nih.gov/articles/PMC10975495/
60. Regulation of brain cognitive states through auditory, gustatory, and, https://pmc.ncbi.nlm.nih.gov/articles/PMC10409795/
61. OpenBCI Research Collection (see openbci.com/citations) \- Google, https://docs.google.com/spreadsheets/d/1WvolD2-QJ5aUJy5o0Dq5wdFQtLMkMtppZT8s\_ihYyA4/edit?usp=sharing
62. (PDF) Brain-Computer Interfaces for Non-clinical (Home, Sports, Art, https://www.researchgate.net/publication/359280749\_Brain-Computer\_Interfaces\_for\_Non-clinical\_Home\_Sports\_Art\_Entertainment\_Education\_Well-being\_Applications
63. A systematic literature review to unveil users' objective reaction to, https://arxiv.org/pdf/2507.19104
64. PsyTech VR: Clinical VR Exposure Therapy Software, https://psytechvr.com/
65. Design for an Art Therapy Robot: An Explorative Review of ... \- MDPI, https://www.mdpi.com/2414-4088/2/3/52
66. CAD Scripting and Visual Programming Languages for, https://www.researchgate.net/publication/274531480\_CAD\_Scripting\_and\_Visual\_Programming\_Languages\_for\_Implementing\_Computational\_Design\_Concepts\_A\_Comparison\_from\_a\_Pedagogical\_Point\_of\_View
67. (PDF) Art Therapy as an Effective Means of Overcoming Stress, https://www.researchgate.net/publication/374495211\_Art\_Therapy\_as\_an\_Effective\_Means\_of\_Overcoming\_Stress\_Neurophysiological\_Features
68. Art therapy and neuroscience: evidence, limits, and myths \- PMC, https://pmc.ncbi.nlm.nih.gov/articles/PMC11480049/
69. Projection mapping | Derivative \- TouchDesigner, https://derivative.ca/feature/projection-mapping/14
70. Critical Suicide Studies \- MDPI, https://mdpi-res.com/bookfiles/book/11506/Critical\_Suicide\_Studies.pdf?v=1758267076
71. Projection Mapping | Derivative \- TouchDesigner, https://derivative.ca/UserGuide/Projection\_Mapping
72. Digital Art Therapy: Using Technology and Creativity for Mental Wellne, https://www.biripublishing.com/blogs/art-therapy-techniques/digital-art-therapy-using-technology-and-creativity-for-mental-wellness
73. The Role of Digital Art Therapy in Clinical Practice | SVA NYC, https://sva.edu/features/the-role-of-digital-art-therapy-in-clinical-practice