Live data from Hacker News

Weird: Generative Art in Common Lisp

github.com

1–10 of 23 posts

Re: Weird: Generative Art in Common Lisp

#5
I've been trying to track that top image down for ages. This faux bokeh was a big inspiration for a VR piece I made: https://andybak.net/gossamer

(By "faux" I just mean this isn't simulating optics to any great level of realism)

I knew it was by inconvergent but I didn't think of looking on Github for some reason.

My implementation was actually different - I based mine on the work of Keijiro Takahashi: https://github.com/keijiro/VfxBokeh

Re: Weird: Generative Art in Common Lisp

#6
post #5

I've been trying to track that top image down for ages. This faux bokeh was a big inspiration for a VR piece I made: https://andybak.net/gossamer (By "faux" I just mean this isn't simulating optics to any great level of realism) I knew it was by inconvergent but I didn't think of looking on Github for some reason. My implementation was actually different - I based mine on the work of Keijiro Takahashi: https://github…

[deleted]

Re: Weird: Generative Art in Common Lisp

#7
post #5

I've been trying to track that top image down for ages. This faux bokeh was a big inspiration for a VR piece I made: https://andybak.net/gossamer (By "faux" I just mean this isn't simulating optics to any great level of realism) I knew it was by inconvergent but I didn't think of looking on Github for some reason. My implementation was actually different - I based mine on the work of Keijiro Takahashi: https://github…

in the event that you haven't seen it: https://inconvergent.net/2019/colour-shift/

Re: Weird: Generative Art in Common Lisp

#9
post #8

As a generative artist I love seeing what other people do. Sadly I am not conversant in CL so its difficult to understand.

the most interesting part (as far as i'm concerned. i have some bias here ...) is the stuff about manipulating the graph structure. the concept is described in the readme, and does not rely that heavily on CL knowledge. it's not that the method is new or anything, just that i think it's a neat way to think about it. if you are interested in the code at large, then, yeah .. this isn't a good intro to CL.

Re: Weird: Generative Art in Common Lisp

#10
For those inspired by this, they may also like context free art - https://www.contextfreeart.org

For example: https://www.contextfreeart.org/gallery/view.php?id=4223

  startshape lightning 
  
  shape lightning
  
  rule 20 {
      CIRCLE[r -60..60]
      lightning[y -1 s 0.99 r -10..10]
  }
  
  rule 1 {
      CIRCLE[r -60..60]
      lightning[y -1 s 0.5 r -50..-20]
      lightning[y -1 s 0.99 r -10..10]
  }
  
  rule 1 {
      CIRCLE[r -60..60]
      lightning[y -1 s 0.5 r 20..50]
      lightning[y -1 s 0.99 r -10..10]
  }
Post reply on HN