“pchj03” challenge — Picks

NEORT
NEORT
Published in
2 min readOct 2, 2020

Thank you for using NEORT.

Along with the recent “Processing Community Hangout Japan Vol.3” event, a project was held at NEORT to recruit “つぶやきProcessing” artworks that produce Processing (or p5.js) artworks within the character limit of tweets. Despite the small amount of code, many original and exciting works were collected.

In this article, we will introduce the artworks that our NEORT team was interested in.

Check this challenge.

root bone / ア

# .pyde
# https://twitter.com/yuruyurau/status/1296743992856461314

W=540;T=translate
def setup():
size(W*2,W,P3D)
def draw():

Check this.

Downdraft2 / ryotako

add_library(“PixelFlow”)
W=800
def setup():size(W,W,P2D);global F;F=DwFluid2D(DwPixelFlow(this),W,W,1)
def draw():background(-1);x=W/2*(1+cos(frameCount*3.13));F.addTemperature(x,700,9,-1.9);F.update();F.renderFluidTextures(g,1);filter(12)
#つぶやきProcessing #pchj03

Check this.

Cyber Honeycomb / はぅ君

作品URL
https://twitter.com/Hau_kun/status/1296095482939236354

ソースコード(Processing (Java))
float t,x,y,i;
void setup(){size(1920,1080);noStroke();colorMode(HSB);}
void draw(){clear();t+=.005;
for(y=0;y<1140;y+=60)

Check this.

blue dragon / 黒狐

ドラゴン曲線に沿って正方形を配置してみました。

Check this.

Sea / ntsutae

https://twitter.com/ntsutae/status/1297454534411919361

ドットを打つか否かの判別式にy+x&y-xを含めるとパスカルの三角形の一部が表示されがちになる。その性質を利用した。判別式を工夫すればもっと面白いパターンが出来そう。

Check this.

--

--