100 Abandoned Artworks
Generative art ideas and source code.      By zenbullets.
 
 Subscribe
You may also like the Abandoned Art Vimeo Channel.
25: Natzke Ribbons

source code

With respect to Erik Natzke obviously, but also to James Alliban, who saved me the trouble of converting Natzke’s algorithms to Processing. This is very satisfying to do with mouse control, but I’m presenting you with the more lazy, RSI-friendly version.

« 24: Unknown Pleasures 26: Smoking Ribbon »



6 Responses to “25: Natzke Ribbons”
  • John Harrison Says:

    This is a beautiful effect. Seeing it in motion makes it all the more interesting. I might have to steal it for my iTunes visualizer, good thing you provided source…

  • kanoto's clipp Says:

    Kramer auto Pingback[...] 25: Natzke Ribbons | 100 Abandoned Artworks [...]

  • Jez Nicholson Says:

    Hey Matt,

    I just pinched the colourSample code, but it looks like it only samples the top line rather than the whole picture because the step size is 1 pixel. I’ve changed mine to:

    void sampleColour() {
    PImage img = loadImage(”data/bottles.jpg”);
    image(img,0,0);
    int count = 0;
    int stepX = img.width / floor(sqrt(numcols));
    int stepY = img.height / floor(sqrt(numcols));
    for (int x=0; x < img.width; x+=stepX){
    for (int y=0; y < img.height; y+=stepY) {
    if (count < numcols) {
    color c = get(x,y);
    colArr[count] = c;
    }
    count++;
    }
    }
    }

  • zenbullets Says:

    Thanks Jez.

    Bad thing about open source – everyone sees your mistakes.
    Good thing about open source – nice folks correct them for you.

  • weevil's Bookmarks on Delicious Says:

    Kramer auto Pingback[...] 25: Natzke Ribbons | 100 Abandoned Artworks SAVE [...]

  • Rodrigo Medina Says:

    This looks great i´ll take a look to the code and try to do something fun !!





Add your comment



"Art is never finished, only abandoned."
- Leonardo da Vinci



archive:

February 2010 (1)
January 2010 (8)
December 2009 (6)
November 2009 (3)
October 2009 (5)
September 2009 (1)
August 2009 (4)
May 2009 (5)
April 2009 (6)
March 2009 (4)
February 2009 (7)
January 2009 (9)
December 2008 (11)
November 2008 (4)
October 2008 (5)
September 2008 (1)




Creative Commons License







Coming Soon: The Book
Generative Art Book