Posts

Showing posts from December, 2011

From Vases to Etch-a-Sketches: My Journey into Processing and Arduino

Image
  I've always been fascinated by the intersection of art and technology. There's something magical about using code to create something visually beautiful or interactive. That's what drew me to Processing, a Java-based language designed for visual artists and creative coding. My initial foray into Processing involved a simple concept: drawing vases . I wanted to explore how code could be used to generate organic shapes and experiment with color gradients. The result was a series of vase silhouettes, each with its own unique form and color palette. Here's the Processing code that brought my vases to life: <!DOCTYPE html> <html>   <head>   <script src="http://mshan.ca/js/processing-1.4.1.min.js"></script></head>   <body>     <script type="application/processing"> /* OpenProcessing Tweak of *@*http://www.openprocessing.org/sketch/116402*@* */ /* !do not delete the line above, required for linking your twea...