• iWire, made in C++...

    From Chris M. Thomasson@3:633/280.2 to All on Tue Mar 5 16:54:13 2024
    Fwiw, one of my iWire renderings made it into the AMS 2025 calendar! Nice.

    https://gallery.bridgesmathart.org/exhibitions/2024-joint-mathematics-meetings/chris-m-thomasson

    --- MBSE BBS v1.0.8.4 (Linux-x86_64)
    * Origin: A noiseless patient Spider (3:633/280.2@fidonet)
  • From Tristan Wibberley@3:633/280.2 to All on Wed Mar 6 01:13:54 2024
    On 05/03/2024 05:54, Chris M. Thomasson wrote:
    Fwiw, one of my iWire renderings made it into the AMS 2025 calendar! Nice.

    https://gallery.bridgesmathart.org/exhibitions/2024-joint-mathematics-meetings/chris-m-thomasson

    Awesome! I'd like to see that in a sweetshop window, made of gelatine ropes!

    --- MBSE BBS v1.0.8.4 (Linux-x86_64)
    * Origin: A noiseless patient Spider (3:633/280.2@fidonet)
  • From Chris M. Thomasson@3:633/280.2 to All on Wed Mar 6 08:07:37 2024
    On 3/5/2024 6:13 AM, Tristan Wibberley wrote:
    On 05/03/2024 05:54, Chris M. Thomasson wrote:
    Fwiw, one of my iWire renderings made it into the AMS 2025 calendar!
    Nice.

    https://gallery.bridgesmathart.org/exhibitions/2024-joint-mathematics-meetings/chris-m-thomasson

    Awesome! I'd like to see that in a sweetshop window, made of gelatine
    ropes!

    Thanks. :^)

    Fwiw, here are some strange infinite hallways using two of my IFS's wrt probabilities:

    https://i.ibb.co/xY2JjhL/image.png

    https://i.ibb.co/N20Jm8Y/image.png

    One of them can be found here along with my pseudo code such that
    anybody can recreate it on their end:

    https://youtu.be/XKhS_nklCkE

    description:

    A highly experimental #iterated function system of mine that creates
    many #fractal #bifurcation diagrams locked in the unit square. Afaict,
    the animation makes it appear as if everything is rotating around a
    cylinder. Here is my #IFS that was used to create this animation: ______________
    // px_mutation interpolates from -4...4 across each frame; 1440 here.

    render frames:
    _________
    // angle interpolates from 0...pi2 across iterations
    // px = py = 0

    // Iteration:
    px = sin(angle * px_mutation);
    py = cos(angle * py);
    ______________

    Plot every pixel in the ifs. Actually, I am adding color to each pixel
    visited during iteration.

    --- MBSE BBS v1.0.8.4 (Linux-x86_64)
    * Origin: A noiseless patient Spider (3:633/280.2@fidonet)