animations with source on my tumblr

edited February 2014 in Share Your Work

I've been making animated gifs with processing for a while now, and they're posted on my tumblr: http://jordanorelli.tumblr.com/

most animations have links to their source, so you can tinker around with them if you'd like to.

Answers

  • edited February 2014 Answer ✓

    Wow. They're all fantastic! Congratz!!! =D>

    I believe you've published those 1st @ reddit.com/r/processing/new/.

    'Cuz I've got 1 I've tweaked from ya already: :ar!

    studio.processingtogether.com/sp/pad/export/ro.9AzN8ufMfio2x/latest

    I've even converted it to CoffeeScript mode: 3:-O

    # Square Flower (v2.1)
    # by  Jordan Orelli (2013/Dec)
    # mod GoToLoop
    # 
    # jordanorelli.tumblr.com/post/70910152988/square-flower
    # gist.github.com/jordanorelli/8100924
    
    DIM = `040`; CURVE = `-010`
    NUM = `050`; FRAMES = `0200`
    RAD = `0200`; LARGE = `0120`; FORM = 5
    BG  = -1; FG = 0xff0000FF
    
    SAVE_FRAMES = true; path = null
    
    setup: ->
      size 500, 500; frameRate 60
      smooth 4; rectMode CENTER
      strokeWeight 2; stroke FG; fill BG
      #path = dataPath "###.png"
    
    draw: ->
      background BG; translate width>>1, height>>1
      drawRect i for i in [0...NUM] by 1
      #saveFrame path if SAVE_FRAMES and frameCount <= FRAMES
      return
    
    drawRect = (i) ->
      n1 = TWO_PI * norm i, 0, NUM
      n2 = TWO_PI * norm frameCount, 0, FRAMES
      offset = RAD + LARGE * sin FORM*n1 + n2
    
      do pushMatrix; rotate n1
      rect offset, 0, DIM, DIM, CURVE
      do popMatrix
    
  • woah, cool! glad you liked it. Thanks for the kind words :)

  • also, it's always so cool to see when people adopt something that you've written. Very cool! and I think that's the first I've seen of Coffeescript mode.

  • Very nice work there, jordan! :)

Sign In or Register to comment.