I'm having trouble getting 2D multi-threads to run for long.
and/or a complex hulled 2D object.
Something that renders longer than a blink.
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.
View this message in context: http://forum.openscad.org/Anyone-got-a-complex-polygon-they-can-share-tp21257.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
If it is a problem to find data at all, the multithread approach might be
overkill.
--
View this message in context: http://forum.openscad.org/Anyone-got-a-complex-polygon-they-can-share-tp21257p21261.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
Fractals?
2017-04-17 4:51 GMT-03:00 MichaelAtOz oz.at.michael@gmail.com:
I'm having trouble getting 2D multi-threads to run for long.
and/or a complex hulled 2D object.
Something that renders longer than a blink.
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the
Public Domain; to the extent possible under law, I have waived all
copyright and related or neighbouring rights to this work. Obviously
inclusion of works of previous authors is not included in the above.
View this message in context: http://forum.openscad.org/
Anyone-got-a-complex-polygon-they-can-share-tp21257.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
OpenSCAD mailing list
Discuss@lists.openscad.org
http://lists.openscad.org/mailman/listinfo/discuss_lists.openscad.org
fractals are a good suggestion and you can get some ones that get weird
fast if you throw in trig functions:
http://www.mathrecreation.com/2009/08/hypocycloid-scrambler.html
I have an openScad program that does just that but I seem to have some bugs
in mine so the layers have gaps... and there are intersection problems...
On Mon, Apr 17, 2017 at 3:51 AM, MichaelAtOz oz.at.michael@gmail.com
wrote:
I'm having trouble getting 2D multi-threads to run for long.
and/or a complex hulled 2D object.
Something that renders longer than a blink.
Admin - PM me if you need anything, or if I've done something stupid...
Unless specifically shown otherwise above, my contribution is in the
Public Domain; to the extent possible under law, I have waived all
copyright and related or neighbouring rights to this work. Obviously
inclusion of works of previous authors is not included in the above.
View this message in context: http://forum.openscad.org/
Anyone-got-a-complex-polygon-they-can-share-tp21257.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
OpenSCAD mailing list
Discuss@lists.openscad.org
http://lists.openscad.org/mailman/listinfo/discuss_lists.openscad.org
Don't need trigs. Sierpinski triangles grow exponentially, both in time and
space, with base 3.
size = 10;
tri = size*[[0,0],[1,0],[1/2,1]];
module Sierpinsky(n=2) {
if(n==0) polygon(tri);
else scale(1/2) {
translate(tri[0]) Sierpinsky(n-1);
translate(tri[1]) Sierpinsky(n-1);
translate(tri[2]) Sierpinsky(n-1);
}
}
//hull()
Sierpinsky(9);