# Animated Grids
## Current Status
In progress.
## Overview
This project redefines the traditional connection between X, Y coordinates and their corresponding positions on a grid, whether it be left-to-right, top-to-bottom, or similar. By using L-system rules, the project enables the creation of custom paths in a fractional space that dynamically and algorithmically calculate this relationship.
The L-system provides a handy method for creating pseudo space-filling curves that can be easily translated into 2D space.
Then, each point travels through a time dimension and changes its trajectory (a floating point number) according to a Javascript formula.
The trajectory is visually represented as a circle, with its size and color varying accordingly. The absolute value determines the size, with the circle's diameter not exceeding 1. The sign determines the color of the circle: >0, white; <0, red; =0, black.
Inspired by https://tixy.land
URL: https://github.com/oneearedrabbit/l-sys-playground/tree/master/curves
![[files/2024-07-05/thumbnail.gif]]