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
redlizard has quit [Ping timeout: 264 seconds]
LordOfBikes has quit [Ping timeout: 256 seconds]
LordOfBikes has joined #openscad
redlizard has joined #openscad
neur0 has quit [Ping timeout: 268 seconds]
neur0 has joined #openscad
To_Aru_Shiroi_Ne has joined #openscad
ToAruShiroiNeko has quit [Ping timeout: 276 seconds]
Guest2616 has joined #openscad
<Guest2616> I am trying to download OpenScad on my  Mac (  macOS Monterey) but the system will not allow it. Getting error message: "OpenSCAD” cannot be opened because the developer cannot be verified."
<Guest2616> ...and "macOS cannot verify that this app is free from malware."
Guest2616 has quit [Quit: Client closed]
J1A8483 has joined #openscad
J1A84 has quit [Ping timeout: 252 seconds]
teepee has quit [Remote host closed the connection]
teepee has joined #openscad
teepee has quit [Remote host closed the connection]
teepee has joined #openscad
ur5us has joined #openscad
teepee has quit [Remote host closed the connection]
teepee has joined #openscad
KimK has quit [Ping timeout: 248 seconds]
KimK has joined #openscad
lastrodamo has joined #openscad
KimK has quit [Ping timeout: 264 seconds]
<gbruno> [github] frazar opened issue #4288 (CGAL error when using `projection(cut=true)`) https://github.com/openscad/openscad/issues/4288
teepee has quit [Remote host closed the connection]
<gbruno> [github] frazar edited issue #4288 (CGAL error when using `projection(cut=true)`) https://github.com/openscad/openscad/issues/4288
<gbruno> [github] frazar edited issue #4288 (CGAL error when using `projection(cut=true)`) https://github.com/openscad/openscad/issues/4288
teepee has joined #openscad
ur5us has quit [Ping timeout: 248 seconds]
teepee_ has joined #openscad
teepee has quit [Ping timeout: 268 seconds]
teepee_ is now known as teepee
<J1A8483> rounding polygons points and offset  https://pasteboard.co/zKkhDM6MFQaa.png
<muesli> I use openscad's text() to render some 3d text. Eventually I want to 3d print an outline of each letter in a different color, which the original letters should fit in to. I'm wondering if anyone has successfully tried that before. I naively tried scaling the text() output a bit, but the letters don't quite fit.
<teepee> I think that would only work with offset() or minkowski()
<teepee> something like module t() text("Hallo", 50); difference() { offset(2) t(); offset(0.1) t(); }
<teepee> for the border
<teepee> module t() text("Hallo", 50); color("red") difference() { offset(2) t(); offset(1) t(); } color("yellow") t();
<J1A8483> yupp offset .. using the same code for Rand to generate a rim around polygons
teepee has quit [Ping timeout: 268 seconds]
teepee has joined #openscad
<J1A8483> https://pasteboard.co/3Rb8xuuTWjw1.png   with  some more offset +- you can meld the outlines together
<muesli> thanks, will try that!
<J1A8483> muesli keep in mind if you + offset the whole text the letters may merge together .. so either only use negative offset or make each letter separately
<J1A8483> (or use text(spacing=5))
<muesli> thanks for the reminder, printing them individually indeed :)
<muesli> here's another solution(?) I just played with:
<muesli> ignore that
<muesli> Ok, offset looks like the proper solution indeed :)
<muesli> A bit random, but a big thank you to everyone involved in OpenSCAD!
<J1A8483> you can use offset also with delta to make something like https://www.thingiverse.com/thing:276836
<othx> J1A8483 linked to "Heatwave 3d Printable Typeface by LorenIPSVM" on thingiverse => 1 IRC mentions
<muesli> fancy
TheAssassin has quit [Quit: No Ping reply in 180 seconds.]
TheAssassin has joined #openscad
GNUmoon has quit [Remote host closed the connection]
tcurdt has quit [Quit: bye]
Junxter has joined #openscad
tcurdt has joined #openscad
teepee has quit [Remote host closed the connection]
teepee has joined #openscad
tcurdt has quit [Quit: bye]
lastrodamo has quit [Quit: Leaving]
tcurdt has joined #openscad
tcurdt has quit [Quit: bye]
tcurdt has joined #openscad
Junxter has quit [Quit: Leaving]
TheAssassin has quit [Remote host closed the connection]
teepee has quit [Remote host closed the connection]
TheAssassin has joined #openscad
teepee has joined #openscad
teepee has quit [Ping timeout: 268 seconds]
TheAssassin has quit [Remote host closed the connection]
TheAssassin has joined #openscad
teepee has joined #openscad
niyawe_ has quit [*.net *.split]
regrin[m] has quit [*.net *.split]
joseph_ has quit [*.net *.split]
niyawe has joined #openscad
joseph_ has joined #openscad
snaked has quit [Ping timeout: 256 seconds]
regrin[m] has joined #openscad
joseph_alt has joined #openscad
<joseph_alt> joseph_: test
tcurdt has quit [Quit: bye]
<joseph_> InPhase: I saw your messages on Tuesday, thanks for the advice/suggestions. Sorry for not responding earlier, I've been busier than usual because of logistics for a surgery I have scheduled in a week and a half. I have been trying to see if just for testing I can pass in a shader filename using stdin through docker, but this might be harder than just going right to a Qt menu item. Hopefully ready to start at least a draft PR soon
<joseph_> Also I received a cryptic message from my IRC bouncer. "erbium.libera.chat: Server Terminating. tomaw". What's strange is that everything seems to be working as it has since I set it all up. I just confirmed that at least my push notifications still work, so hopefully it stays that way
<InPhase> There was a server reboot a couple days ago. It's a rare event, but happens.
snaked has joined #openscad
ur5us has joined #openscad
<InPhase> And yeah, my general advice for that development is to keep going along iteratively, and get as quickly as you can to something where you can start inserting shaders rapidly. That will help you check a whole bunch of assumptions you built up, which is very valuable. It will also help you get your changes into the "always working" state where you have a reference point of behavior that you can keep
<InPhase> monitoring as you build up the infrastructure to inject those shaders properly.
<InPhase> Even if there are more steps that way, it tends to go faster due to fewer accumulated errors from the short self-feedback cycles.
tcurdt has joined #openscad
snaked has quit [Ping timeout: 246 seconds]
joseph_alt has quit [Quit: Konversation terminated!]
snaked has joined #openscad
ur5us has quit [Ping timeout: 248 seconds]
tcurdt has quit [Ping timeout: 248 seconds]