Sohler Günther

Results 100 comments of Sohler Günther

Maybe you should look, how roof function translates any 2D polygon into an offset_extruded object. the polygons can even have holes and small noses. Depending on the shape of the...

Thank you for sharing your code with us. i was comparing your runOriginalD magic with mine and finally got also my code working. ( Definitely your CSG output is multicolor,...

@ochafik no problem. https://github.com/gsohler/openscad/blob/color/src/geometry/manifold/manifold-applyops.cc#L97-L136 you can here find a copy of your code ;)

Quite some time back I have disabled parseTopLevelGeometry in TabManager.cc due to duplicate parseTopLEvelDocument in my fork and I dont miss anything - not on startup, not by pressing "Save"and...

I think this is easier then calculating a determinant of a 4x4 matrix: for each of the triangles given with p1,p2,p3 sum up: +p1[0]*p2[1]*p3[2] +p1[1]*p2[2]*p3[0] +p1[2]*p2[0]*p3[1] -p1[2]*p2[1]*p3[0] -p1[0]*p2[2]*p3[1] -p1[1]*p2[0]*p3[2] and...

When looking at designs like this: https://www.thingiverse.com/thing:2676324 it might be fortunate to have a function which can calculate arbitrary characteristics of the design/ or sub parts (not only surface and...

yes!!! https://imgpile.com/i/Gfuwto openscad has it integrated On Mon, Nov 20, 2023 at 1:43 PM Giles Bathgate ***@***.***> wrote: > @gsohler I have a number of these 'auxiliary > modules' :...

Hi Carlos, I have it in my openscad code, but i just realized that it just works if the Topmost Geomery node is a PolySet. it does not work with...

isn't same as https://github.com/openscad/openscad/pull/4538 ? only difference it that the parameter name is called 'translate' and there is also a 'scale' parameter

you can easily fix the self intersection problem by extruding a limited angle only, but do that any times, finally merging all the parts. this is performed in https://github.com/openscad/openscad/pull/5110 This...