helvede.net is one of the many independent Mastodon servers you can use to participate in the fediverse.
Velkommen til Helvede, fediversets hotteste instance! Vi er en queerfeministisk server, der shitposter i den 9. cirkel. Welcome to Hell, We’re a DK-based queerfeminist server. Read our server rules!

Server stats:

172
active users

#FlitterLang

0 posts0 participants0 posts today

Seeking generative/procedural artist beta users! (PLEASE BOOST!)

It’s now 2 years since I open-sourced my pet language, Flitter. I’ve used it for multiple live gigs, interactive installations and video artworks

However, I have no idea if it has value beyond my use. I need people to try it, tell me what they hate and what sucks most in the docs

You need to be comfortable at the CLI, example visuals on the #FlitterLang tag

github.com/jonathanhogg/flitter

GitHubGitHub - jonathanhogg/flitter: A functional programming language and declarative system for describing 2D and 3D visualsA functional programming language and declarative system for describing 2D and 3D visuals - jonathanhogg/flitter

Tried something different for Tiny Code Christmas today: an attempt at doing the most literal translation of the “Rasterbars" problem that I can do into Flitter. I was interested in seeing how close I could get to the TIC-80 demo and the starting code.

The core drawing function is surprisingly close to the Lua original, despite Flitter being a completely different paradigm:

github.com/jonathanhogg/flitte

Continued thread

And one more showing the actual "portal" part of the installation.

We had two vans set up at two locations with a WebRTC connection between them relaying the live depth camera view. At both ends the software merges the two depth views and mixes them into the virtual 3D scene.

The local figures are in pink and the remote figures in green. Participants could interact with each other across the two sites.

As promised, here's a video from last night's first unveiling of my "magic portal" installation at the Hour House event in Skelton and Guisborough.

The participants here are being captured with a Kinect depth camera and inserted into a 3D scene with virtual lighting. Depth information is used to allow the live figures to stand behind, in-front of or even over virtual objects.

So I was inspired by a recent post by @noneuclideandreamer to have a go at making a ringed planet in Flitter.

As usual, I spent too long on it and ended up having to implement new features to make it work the way I wanted… 🤷

The planet would likely be simpler to describe as an SDF, but here I'm leaning heavily on the Flitter mesh CSG operations to build an insane 180k triangle model.

Code here:
github.com/jonathanhogg/flitte

Experiments in mixed rendering in Flitter

The lava blobs are SDF surfaces rendered with a custom shader and the green sphere is a triangle mesh rendered with the normal lighting shader. The same lighting is passed into both renderers and they output into the same colour and depth buffers

Code here if anyone is interested:
github.com/jonathanhogg/flitte

Genuary day 29: “Signed Distance Functions”, handily also covering day 12: “lava lamp” and day 30: "shaders”.

This uses the recent custom 3D shader support in Flitter. A simple physics system is used to determine the position, size and temperature of a bunch of spheres and then these are "smooth” union-ed and rendered with a custom ray-marching SDF shader. A satisfying blobiness in this.

github.com/jonathanhogg/flitte

Genuary day 9: ASCII. This is a fairly simple sketch, an homage to my first computer and – for many of my generation – first program. I'm using an actual BBC Micro bitmapped font here and creating little red, green and blue blobs for each pixel – because of that, this demo also works as an entry for day 4.

github.com/jonathanhogg/flitte

[Edited to fix super-annoying glitch in video]

Genuary day 6: "screensaver”

This is my homage to the legendary After Dark flying toaster screensaver, from my student days working on 68k Macs. I've challenged myself here to make something resembling a toaster, wings and toast using no external models or textures. The solution is entirely functional, with no state.

github.com/jonathanhogg/flitte