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
mmu_man has quit [Ping timeout: 252 seconds]
mmu_man has joined #openscad
hyvoid has quit [Quit: WeeChat 4.2.1]
hyvoid has joined #openscad
teepee_ has joined #openscad
teepee has quit [Ping timeout: 260 seconds]
teepee_ is now known as teepee
kintel has joined #openscad
mmu_man has quit [Ping timeout: 264 seconds]
mmu_man has joined #openscad
mmu_man has quit [Ping timeout: 264 seconds]
LordOfBikes has quit [Ping timeout: 260 seconds]
LordOfBikes has joined #openscad
<gbruno> [github] kintel pushed 1 modifications (Create better geometry for cones) https://github.com/openscad/openscad/commit/1a5129f164ef609bdb559d27e3f2e098bd97245a
<gbruno> [github] kintel opened pull request #5062 (Create better geometry for cones) https://github.com/openscad/openscad/pull/5062
<gbruno> [github] kintel closed pull request #5054 (chore(python): remove py2 import) https://github.com/openscad/openscad/pull/5054
<gbruno> [github] kintel pushed 1 modifications (chore(python): remove py2 import (#5054)) https://github.com/openscad/openscad/commit/0ac066a013320968605502cc076e3f9ef0e4e275
gbruno has quit [Ping timeout: 240 seconds]
ndnihil has quit [Ping timeout: 256 seconds]
ndnihil has joined #openscad
ndnihil has quit [Changing host]
ndnihil has joined #openscad
gbruno has joined #openscad
kintel has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
J24k59 has joined #openscad
J24k64 has quit [Ping timeout: 250 seconds]
R2robot has joined #openscad
Nagiv has joined #openscad
Nagiv has quit [Ping timeout: 250 seconds]
Nagiv has joined #openscad
Nagiv has left #openscad [#openscad]
L29Ah has quit [Ping timeout: 264 seconds]
L29Ah has joined #openscad
<gbruno> [github] schiele synchronize pull request #4538 (implement new scale and translate parameter to rotate_extrude) https://github.com/openscad/openscad/pull/4538
mohammad1722 has joined #openscad
mmu_man has joined #openscad
mmu_man has quit [Ping timeout: 255 seconds]
mmu_man has joined #openscad
mmu_man has quit [Ping timeout: 252 seconds]
mmu_man has joined #openscad
mmu_man has quit [Ping timeout: 264 seconds]
mmu_man has joined #openscad
mmu_man has quit [Ping timeout: 256 seconds]
mmu_man has joined #openscad
<gbruno> [github] kintel closed pull request #5062 (Create better geometry for cones) https://github.com/openscad/openscad/pull/5062
<gbruno> [github] kintel pushed 1 modifications (Create better geometry for cones (#5062)) https://github.com/openscad/openscad/commit/480f33c8d48917329e0b09dfddab4cc3726d0c0a
<gbruno> [github] kintel pushed 1 modifications (Test macOS 14 GitHub runner) https://github.com/openscad/openscad/commit/4b6cebbdf2c4e73aece1a3bb41ab9e399b89df37
<gbruno> [github] kintel synchronize pull request #4984 (Test macOS 14 GitHub runner) https://github.com/openscad/openscad/pull/4984
teepee_ has joined #openscad
mohammad35 has joined #openscad
teepee has quit [Ping timeout: 260 seconds]
teepee_ is now known as teepee
mohammad35 has quit [Quit: Client closed]
teepee has quit [Remote host closed the connection]
teepee has joined #openscad
mohammad1722 has quit [Quit: Client closed]
mmu_man has quit [Ping timeout: 255 seconds]
snaked has joined #openscad
mmu_man has joined #openscad
L29Ah has left #openscad [#openscad]
silviocezar5 has joined #openscad
silviocezar5 has quit [Client Quit]
mmu_man has quit [Ping timeout: 255 seconds]
mmu_man has joined #openscad
Smeef has quit [Ping timeout: 272 seconds]
mmu_man has quit [Ping timeout: 255 seconds]
J24k59 has quit [Quit: Client closed]
J24k59 has joined #openscad
snaked has quit [Ping timeout: 260 seconds]
Smeef has joined #openscad
L29Ah has joined #openscad
teepee_ has joined #openscad
teepee has quit [Ping timeout: 260 seconds]
teepee_ is now known as teepee
snaked has joined #openscad
mmu_man has joined #openscad
kintel has joined #openscad
<kintel> Man, _every_ time glib updates, they break something new. ..and every time I start down the rabbit hole of removing glib as a build dependency.
<teepee> :(
<JordanBrown> InPhase: the formatting problem is not with writing C++ code that formats numbers. That's easy. The goal was to have an OpenSCAD-language "format" function that behaved like libfmt, accepting a format string and some number of values to insert into the format string.
<JordanBrown> I don't remember the details of the libfmt language, but it has a construct equivalent to printf's "%*d", which takes a width argument and a number. I had the function pretty much working, so that you could hand it a format string and an array of OpenSCAD Value objects, and it would format them appropriately... except for that "*" case, supplying a width or precision, and there it really really wanted a C++ integer type.
<JordanBrown> From the OpenSCAD-language side, it looked like format(fmtstr, arg, ...) and returned a string.