Using this thread to post progress on https://genuary.art
I’m trying to make a Codea project per day that follows the prompt. Feel free to post your own.
Starting with
Genuary 1: One color, one shape
Genuary01.codea.zip (90.2 KB)
Using this thread to post progress on https://genuary.art
I’m trying to make a Codea project per day that follows the prompt. Feel free to post your own.
Starting with
Genuary01.codea.zip (90.2 KB)
Code for this one is in Discord project-sharing channel, w/instructions
Binary Tetris — lines are only possible when all columns OR to 1. Project attached
Genuary07.codea.zip (4.2 KB)
This one was about cellular automata. So here we have rules to create grass, trees, water and buildings based on an underlying noise map (dirt)
Code requires Codea 3.16 beta + Carbide
Paint the Town.codea.zip (13.2 KB)
Asteroid in polar coordinates. Requires Carbide and 3.16 beta to run.
Polaroid.codea.zip (5.8 KB)
A quine is a computer program that takes no input and produces a copy of its own source code as its only output
’code = [[function draw()
font("Menlo-Bold")
fontSize(20)
textStyle(TEXT_NATIVE)
textAlign(LEFT)
background(0)
text(
'code = '
.. string.gsub('<<', '<', '[')
.. code
.. string.gsub('>>', '>', ']')
.. '\nload(code)()',
WIDTH - 200, HEIGHT - 600
)
end]]
load(code)()