From f9b3f12a95036d1050199494bc26f180eed73565 Mon Sep 17 00:00:00 2001 From: Windell Oskay Date: Thu, 30 Mar 2017 18:34:52 -0700 Subject: [PATCH] Re-organize code for ease of use Added a "SquiggleDraw" directory with the sketch and a "data" folder. This prevents Processing from requesting that you move the sketch into a like-named folder. (And, thus, prevents the situation where the Carson image cannot be found because it wasn't moved along with the sketch.) Added note to the readme about ControlP5 dependency. Both of these changes are made in response to multiple instances reported to us of people running into these issues. --- README.md | 3 +++ SquiggleDraw.pde => SquiggleDraw/SquiggleDraw.pde | 0 {data => SquiggleDraw/data}/Rachel-Carson.jpg | Bin 3 files changed, 3 insertions(+) rename SquiggleDraw.pde => SquiggleDraw/SquiggleDraw.pde (100%) rename {data => SquiggleDraw/data}/Rachel-Carson.jpg (100%) diff --git a/README.md b/README.md index 63f53d4..fcda10d 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,9 @@ You can use the saved SVG file to print from Inkscape/AI/etc, draw with a pen on This is code for Processing (http://processing.org) +Additional dependency: Download and install controlP5 in your processing libraries directory. ( http://www.sojamo.de/libraries/controlP5/ ) + + Features: * Simple UI to load/save images, adjust parameters related to the sine waves, and basic image adjustements * Saved SVG is larger than original image for detail diff --git a/SquiggleDraw.pde b/SquiggleDraw/SquiggleDraw.pde similarity index 100% rename from SquiggleDraw.pde rename to SquiggleDraw/SquiggleDraw.pde diff --git a/data/Rachel-Carson.jpg b/SquiggleDraw/data/Rachel-Carson.jpg similarity index 100% rename from data/Rachel-Carson.jpg rename to SquiggleDraw/data/Rachel-Carson.jpg