Drawbot – Zigzag
- This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Shop › Forum › Makelangelo Polargraph Art Robot › Drawbot – Zigzag
Hi,
Is it possible to increase the density of the zigzag filter ? Right now the drawing doesn’t look like the original jpeg because the lines are too gross, I need more details.
There is no “Zigzag” Filter java class, how is it possible to increase the density of the lines?
Thanks !
filter_generatortsp is the java class you want.
in Convert() you will see…
// resize & flip as needed
Filter_Resize rs = new Filter_Resize(250,250);
img = rs.Process(img);
change the 250 to a larger number and you’ll get more dots, which makes for denser zigzag. Warning! doubling these numbers is EXPONENTIALLY slower, so you could be sitting there for 10 minutes waiting for the drawing to finish.
There is a 10 minute time limit on conversion, but if you can code well enough to change 250 you can also find and adjust the time limit.
I’m very interested in Voronoi stippling, it’s a way to get better looking pictures with less dots. it also lets you control exactly how many dots you want, which is nice.