|
| 1 | + |
| 2 | + StippleGen_2 |
| 3 | + |
| 4 | + SVG Stipple Generator, v. 2.02 |
| 5 | + Copyright (C) 2012 by Windell H. Oskay, www.evilmadscientist.com |
| 6 | + |
| 7 | + Full Documentation: http://wiki.evilmadscience.com/StippleGen |
| 8 | + Blog post about the release: http://www.evilmadscientist.com/go/stipple2 |
| 9 | + |
| 10 | + |
| 11 | + An implementation of Weighted Voronoi Stippling: |
| 12 | + http://mrl.nyu.edu/~ajsecord/stipples.html |
| 13 | + |
| 14 | + |
| 15 | + ******************************************************************************* |
| 16 | + |
| 17 | + Change Log: |
| 18 | + |
| 19 | + v 2.02 |
| 20 | + * Force files to end in .svg |
| 21 | + * Fix bug that gave wrong size to stipple files saved white stipples on black background |
| 22 | + |
| 23 | + v 2.01: |
| 24 | + * Improved handling of Save process, to prevent accidental "not saving" by users. |
| 25 | + |
| 26 | + v 2.0: |
| 27 | + * Add tone reversal option (white on black / black on white) |
| 28 | + * Reduce vertical extent of GUI, to reduce likelihood of cropping on small screens |
| 29 | + * Speling corections |
| 30 | + * Fixed a bug that caused unintended cropping of long, wide images |
| 31 | + * Reorganized GUI controls |
| 32 | + * Fail less disgracefully when a bad image type is selected. |
| 33 | + |
| 34 | + ******************************************************************************* |
| 35 | + |
| 36 | + Program is based on the Toxic Libs Library ( http://toxiclibs.org/ ) |
| 37 | + & example code: |
| 38 | + http://forum.processing.org/topic/toxiclib-voronoi-example-sketch |
| 39 | + |
| 40 | + |
| 41 | + Additional inspiration: |
| 42 | + Stipple Cam from Jim Bumgardner |
| 43 | + http://joyofprocessing.com/blog/2011/11/stipple-cam/ |
| 44 | + |
| 45 | + and |
| 46 | + |
| 47 | + MeshLibDemo.pde - Demo of Lee Byron's Mesh library, by |
| 48 | + Marius Watz - http://workshop.evolutionzone.com/ |
| 49 | + |
| 50 | + |
| 51 | + Requires ControlP5 library and Toxic Libs library: |
| 52 | + http://www.sojamo.de/libraries/controlP5/ |
| 53 | + http://hg.postspectacular.com/toxiclibs/downloads |
| 54 | + |
| 55 | + |
| 56 | + |
| 57 | + * This is free software; you can redistribute it and/or |
| 58 | + * modify it under the terms of the GNU Lesser General Public |
| 59 | + * License as published by the Free Software Foundation; either |
| 60 | + * version 2.1 of the License, or (at your option) any later version. |
| 61 | + * |
| 62 | + * http://creativecommons.org/licenses/LGPL/2.1/ |
| 63 | + * |
| 64 | + * This library is distributed in the hope that it will be useful, |
| 65 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 66 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 67 | + * Lesser General Public License for more details. |
| 68 | + * |
| 69 | + * You should have received a copy of the GNU Lesser General Public |
| 70 | + * License along with this library; if not, write to the Free Software |
| 71 | + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 commit comments