teepee changed the topic of #openscad to: OpenSCAD - The Programmers Solid 3D CAD Modeller | This channel is logged! | Website: http://www.openscad.org/ | FAQ: https://goo.gl/pcT7y3 | Request features / report bugs: https://goo.gl/lj0JRI | Tutorial: https://bit.ly/37P6z0B | Books: https://bit.ly/3xlLcQq | FOSDEM 2020: https://bit.ly/35xZGy6 | Logs: https://bit.ly/32MfbH5
snakedGT has joined #openscad
snakedLX has quit [Ping timeout: 268 seconds]
J24k23 has joined #openscad
J24k61 has quit [Ping timeout: 250 seconds]
kintel has joined #openscad
<kintel> J24k23 Which exact version did you use?
LordOfBikes has quit [Ping timeout: 268 seconds]
<kintel> Looks fine from here using 2024.06.02 on macOS: https://imgur.com/a/54QMSOM
LordOfBikes has joined #openscad
extor has quit [Ping timeout: 252 seconds]
extor has joined #openscad
kintel has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mmu_man has quit [Ping timeout: 268 seconds]
RichardPotthoff has quit [Ping timeout: 260 seconds]
erectus has quit [Remote host closed the connection]
erectus has joined #openscad
stefanct has quit [Quit: quit]
stefanct has joined #openscad
teepee_ has joined #openscad
teepee has quit [Ping timeout: 260 seconds]
teepee_ is now known as teepee
<J24k23> using 2024.06.01 on Win64   it seems the Zebra (R) is causing it when rendered in higher resolution. ```linear_extrude(2,$fn=72)text(text="R",font="naturePro",size=5);```
<J24k23> kintel  No the Zebra costing time (and is weird) but also without  i get the issue linear_extrude(2,$fn=65)text(text="ABCDEFGHIJKLMNOPQSTUVWXYZ+-.,",font="naturePro",size=5);
<J24k23> it is the higher $fn probably causing it
<J24k23> kintel .. seems some number  work better than other $fn 120 is fine again ```linear_extrude(1,$fn=120)text(text="ABCDEFGHIJKLMNOPQSTUVWXYZ+-.,",font="naturePro",size=500);```
J24k23 has quit [Quit: Client closed]
J24k23 has joined #openscad
AzAv8r has quit [Quit: Client closed]
<J24k23> kintel .. removing the lion works (Y)  .. oh or putting the Y first works too, probably those glyphs are not ideal - but maybe showing some underlaying issue.
<J24k23> kintel the Zebra (R) shows different level of bottom and top face errors with different resolution https://imgur.com/a/Fxxbwi3
<J24k23> even on low res ($fn 15↦20) https://imgur.com/a/EhTZsGE
<J24k23> while the $fn for fonts is something different
J24k23 has quit [Quit: Client closed]
J24k23 has joined #openscad
<J24k23> and $fn=1 works fine for the zebra
<J24k23> at a closer look the zebra seems to have intersections within the polygon path https://imgur.com/a/gOdqcuk
<J24k23> (on multiple sections)
mmu_man has joined #openscad
killjoy has quit [Read error: Connection reset by peer]
teepee has quit [Remote host closed the connection]
teepee has joined #openscad
snakedGT has quit [Quit: Leaving]
cart_man has joined #openscad
<cart_man> What is the easiet way of making a slope like this using polygons -> https://imgur.com/a/Mf1CTH4
<cart_man> The slope in Red
<teepee> cart_man: if you have a math formula, that would be easy
<teepee> random example polygon([ [0, 0], each [ for (x = [0:0.1:10]) [x, 5 * (1 - log(x + 0.1))] ]]);
teepee_ has joined #openscad
teepee has quit [Ping timeout: 260 seconds]
teepee_ is now known as teepee
L29Ah has quit [Read error: Connection reset by peer]
L29Ah has joined #openscad
califax has quit [Remote host closed the connection]
califax has joined #openscad
<cart_man> teepee: Thanks you. I am not super familiar with pluggin in my functions yet
<teepee> cart_man: let me rewrite that example a bit
<teepee> all things separated...
<teepee> xrange = [0:0.1:10];
<teepee> function f(x) = 5 * (1 - log(x + 0.1));
<teepee> polygon([ [0, 0], each [ for (x = xrange) [x, f(x)] ] ]);
<InPhase> cart_man: https://bpa.st/XMHA
L29Ah has quit [Read error: Connection timed out]
L29Ah has joined #openscad
feuerrot has quit [Ping timeout: 256 seconds]
mmu_man has quit [Ping timeout: 256 seconds]
<ashafq> InPhase: Thanks for your help yesterday. I ended up using this approach to "dig" channels into the design: https://bpa.st/AMMA
<ashafq> Now, the wires can flow between each segments.
J24k75 has joined #openscad
<gbruno> [github] cjmayo opened pull request #5163 (Look up the Ubuntu code name in github-ci-linux-get-dependencies.sh) https://github.com/openscad/openscad/pull/5163
<gbruno> [github] cjmayo edited pull request #5163 (Look up the Ubuntu code name in github-ci-linux-get-dependencies.sh) https://github.com/openscad/openscad/pull/5163
feuerrot has joined #openscad
feuerrot has quit [Read error: Connection reset by peer]
J24k23 has quit [Ping timeout: 250 seconds]
feuerrot has joined #openscad
J24k5 has joined #openscad
J24k75 has quit [Ping timeout: 250 seconds]
mmu_man has joined #openscad
feuerrot has quit [Read error: Connection reset by peer]
feuerrot_ has joined #openscad
teepee_ has joined #openscad
teepee has quit [Ping timeout: 260 seconds]
teepee_ is now known as teepee
<InPhase> ashafq: Okay. I'm glad you got it working. :) But that was also not what you were proposing needing. (Which is what I was afraid of, and why I didn't try a second time to demonstrate how to do it.) That's not even what a U is shaped like, and doesn't match any of the drawings.
<cart_man> teepee: I took a screenshot of that little explanation :)
mmu_man has quit [Ping timeout: 264 seconds]
mmu_man has joined #openscad
rapha has joined #openscad
<rapha> hi all!
<rapha> is it not possible to do a minkowski() involving an import()ed .stl, or does it just take very, very long?
<Scopeuk> rapha it should work, depending on the stl complexity it could take some time
<rapha> hmm ok then perhaps it just got hung ... thanks!
mmu_man has quit [Ping timeout: 268 seconds]
mmu_man has joined #openscad
<InPhase> rapha: Make sure to use the nightly build for heavy loads like that.
<InPhase> rapha: The property of being on the scale of 20 times faster for that sort of thing will be worth it.
<InPhase> rapha: That requires enabling Manifold.
<InPhase> rapha: You will find this in the settings.
snaked has joined #openscad
cart_man has quit [Quit: Konversation terminated!]
mmu_man has quit [Ping timeout: 264 seconds]
mmu_man has joined #openscad
mmu_man has quit [Ping timeout: 246 seconds]
mmu_man has joined #openscad