Within the #つぶやきProcessing community, I delve into the world of "tiny" coding, continually challenging myself to create visually impactful and interactive pieces with the least amount of code possible. Through optimization, abstraction and creativity techniques, I strive to push the limits of generative art, exploring new forms of visual expression while accepting the limitation on the number of characters.
As an example of a piece of tiny coding in action, consider the following code snippet that I published here->
t=2e1, draw=_=>{for(createCanvas(w=600,w), background(0), noStroke(), translate(w/2,w/2), scale(150), a=0; a<2.5; a+=4e-4) fill(150/a,80/a), x=1e10*a, y=noise(a)-sin(x)+t, e=cos(x)%a, f=.5+noise(sin(e)), circle(noise(tan(cos(y)))*e, atan(tan(sin(y)))*f, .014); t+=.03} //#つぶやきProcessing #p5js
This code, written in p5.js with only 280 characters, generates a visual representation reminiscent of microscopic sea creatures or amoebas. The code uses noise and trigonometric operations to create fluid-like organic shapes and movements. The noise function adds randomness and variation, imitating the unpredictable movement found in natural phenomena.
My contributions to the #つぶやきProcessing movement are characterized by a minimalist approach that focuses on geometric shapes, especially circles and points. I use a monochrome palette of black and white, taking advantage of contrast to create compositions that are visually striking. I often work with symmetry and the generation of rhythmic visual patterns.create visually striking compositions that captivate the viewer's attention.
At the core of my artistic process are mathematical functions such as sine, cosine, noise, and the modulo operator. These functions serve as the building blocks of my generative art, enabling me to explore patterns, rhythms, and textures with precision and elegance.
Through the interplay of simplicity and complexity, I seek to evoke a sense of harmony and balance in my creations. Each piece is a meditation on form, space, and movement, inviting viewers to contemplate the beauty of mathematical abstraction and the infinite possibilities of generative art.
s=20,t=1;setup=_=>{createCanvas(w=600,w),noStroke()},draw=_=>{for(x=-s;x<w+s;x+=s){for(y=0;y<w+s;y+=s){n=cos(t/6+x*30)*s,o=sin(t/6+y*30)*s,(x/s+y/s)%2==0?fill(255):fill(0),circle(x+n,y+o,2*s)}}t+=.25}//#つぶやきProcessing
t=f=s=21,setup=s=>{createCanvas(w=600,w),noStroke()},draw=r=>{for(scale(2.5),translate(-w/2,-w/2),l=-s;l<w;l+=s/2)for(e=-s;e<w;e+=s/2)n=4*sin(t/5-e/30)*s/4,a=2*sin(t/5-l/30)*s/4,(l/(s/2)+e/(s/2))%2==0?fill(255):fill(0),circle(l+n+a,e+n*2-a*2,s);t+=.2}//#つぶやきProcessing #p5js
t=0,s=20;draw=_=>{t||createCanvas(w=420,w),noStroke(),translate(w/2,w/2),scale(.25),rotate(t/80);for(e=0;e<w/.43;e+=s/2){a=sin(t/s-e/25)*80,l=cos(t/s-e/180)*108;e/(s/2)%2==0?fill(255):fill(0),circle(w/4-l+a/2,l+e/1.5,.05*a*s)}t-=.3}//#つぶやきProcessing #p5js