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
buZz has joined #openscad
buZz is now known as Guest6917
guso78k has quit [Quit: Client closed]
J25k98 has quit [Quit: Client closed]
J25k98 has joined #openscad
nomike has quit [Quit: Leaving]
TheAssassin has quit [Quit: No Ping reply in 180 seconds.]
TheAssassin has joined #openscad
mmu_man has quit [Ping timeout: 244 seconds]
J25k98 has quit [Quit: Client closed]
J25k98 has joined #openscad
PaulWay has joined #openscad
<PaulWay> Hi all
<PaulWay> As an aside, I'm working on a Greek key generator of arbitrary complexity, for decorations :-)
ali12341 has joined #openscad
ali1234 has quit [Ping timeout: 246 seconds]
PaulWay has quit [Ping timeout: 248 seconds]
J25k33 has joined #openscad
J25k98 has quit [Ping timeout: 240 seconds]
aiyion has quit [Read error: Connection reset by peer]
teepee has quit [Remote host closed the connection]
GNUmoon has quit [Remote host closed the connection]
aiyion has joined #openscad
GNUmoon has joined #openscad
teepee has joined #openscad
void has joined #openscad
stealth_ has quit [Quit: Leaving]
aiyion has quit [Remote host closed the connection]
aiyion has joined #openscad
guso78k has joined #openscad
<guso78k> whats the point of beeing static and isn't it always false in the end ?
L29Ah has quit [Read error: Connection timed out]
<gbruno> [github] damienmarchal synchronize pull request #5779 (Refactor Preferences to extract the static part in a singleton) https://github.com/openscad/openscad/pull/5779
J25k33 has quit [Quit: Client closed]
J25k33 has joined #openscad
void has quit [Remote host closed the connection]
J25k33 has quit [Quit: Client closed]
J25k33 has joined #openscad
guso78k has quit [Quit: Client closed]
teepee_ has joined #openscad
teepee has quit [Ping timeout: 264 seconds]
teepee_ is now known as teepee
hyperair has quit [Remote host closed the connection]
<gbruno> [github] damienmarchal edited pull request #5773 (Fix issues #5318 and #5772) https://github.com/openscad/openscad/pull/5773
L29Ah has joined #openscad
ccox has quit [Ping timeout: 260 seconds]
ccox has joined #openscad
<InPhase> Privacy policy: "Some of the software logs stuff in temporary rotating logs, but frankly we have day jobs and are too busy to look at any of that crap unless the server is being flooded."
mmu_man has joined #openscad
<gbruno> [github] damienmarchal opened pull request #5783 ([CLEAN] Move getCodeLocation from MainWindow to Node::getCodeLocation) https://github.com/openscad/openscad/pull/5783
guso78k has joined #openscad
Guest6917 is now known as buZz
PaulWay has joined #openscad
PaulWay has quit [Ping timeout: 248 seconds]
Larinioides has joined #openscad
<Larinioides> Hi!
<othx> Welcome Larinioides!
<Larinioides> New to this, but love coding.
<Larinioides> Anyone wanna look real fast why I can't move my text where I want it? What is missing?
<Larinioides> Thanks in advance!
<Larinioides> {
<Larinioides> cube([600,200, 25]);
<Larinioides>     translate(0,0,0);
<Larinioides> linear_extrude()
<Larinioides>     text("STUPID TEXT",size=50,font="Times New Roman");
<Larinioides>     translate(50,0,0);
<Larinioides> }
<hramrach> how about linear_extrude() translate([50,50]) text(...
<hramrach> you shoukd be getting WARNING: Unable to convert translate(50) parameter to a vec3 or vec2
<Larinioides> WARNING: Too many unnamed arguments supplied in file LEON.scad, line 6
<Larinioides> WARNING: Unable to convert translate(0) parameter to a vec3 or vec2 of numbers in file LEON.scad, line 6
<Larinioides> WARNING: Too many unnamed arguments supplied in file LEON.scad, line 11
<Larinioides> WARNING: Unable to convert translate(50) parameter to a vec3 or vec2 of numbers in file LEON.scad, line 11
<Larinioides> These are the warnings I get, so you should be right.
<Larinioides> I'll try that, thanks!
<Larinioides> I also seem to have missed the [] for translate
<Larinioides> cube([600,200, 25]);
<Larinioides> linear_extrude()translate([50,0,0])
<Larinioides>     text("STUPID TEXT",size=50,font="Times New Roman");
<Larinioides> This works like a charm! Great, many thanks!
<Larinioides> Another quick question, if I may.
<Larinioides> difference();{
<Larinioides> cube([600,200,10]);
<Larinioides> cylinder(10,100,100);
<Larinioides> linear_extrude(25)translate([25,100,0])
<Larinioides>     text("LEON",size=100,font="Times New Roman");
<Larinioides> #cube([10,100,10]);
<Larinioides>     translate([10,10,10]);}
<Larinioides> Why doesnt the second cube move when I change values for its translate?
<guso78k> write: differene(){
<guso78k> no semicolon there
<Larinioides> Ah! You guys are made of gold!
<Larinioides> Thanks a bunch!
<hramrach> as in the semicolon terminates the command but the point of difference() is it becomes part of the following command and applies to it.
<hramrach> same with translate([])
<Larinioides> The last cube still doesn't move when I change the value for translate. What am I doing wrong? Haha.
<Larinioides> difference()
<Larinioides> {
<Larinioides> cube([600,200,10]);
<Larinioides> linear_extrude(25)translate([25,100,0])
<Larinioides>     text("LEON",size=100,font="Times New Roman");
<Larinioides> }
<Larinioides> {
<Larinioides> cylinder(10,100,100);
<Larinioides> }
<Larinioides> {
<Larinioides>     #cube([10,100,10]);
<Larinioides>     translate([100,10,10]);
<Larinioides> }
<guso78k> swap translate and cube position
<guso78k> translate([100,10,10]) cube([10,100,10]);
<Larinioides> Darn. Thanks, bro!
<guso78k> for some persons it might be unintuitive to put the transformatio statement BEFORE the the thing-to-create
<Larinioides> Yeah, that "some persons" is me, haha.
<Larinioides> I just want the soccer ball.
<guso78k> Ahh, the price ;) use cylinder(r,= h=, $fn=6,),  difference, translate ..
<Larinioides> Damn, thats a lot of coding, haha.
<Larinioides> Thanks mate!
J25k33 has quit [Quit: Client closed]
J25k33 has joined #openscad
guso78k has quit [Quit: Client closed]
Guest35 has joined #openscad
Larinioides has quit [Quit: Client closed]
Guest35 has quit [Client Quit]
pmn has joined #openscad
<pmn> besides github; is there another place where people share their scads? i'm looking for a starting point to build a sunshade for [my DIY monitor](https://community.frame.work/t/driver-for-samsung-atna33tp11-oled-panel/64287/14)
<pmn> basically panel + the driver board
guso78k has joined #openscad
<pmn> hmm, i guess `use <shimonbox/boards/cubieboard.scad>` is a good starting point
Larinioides has joined #openscad
guso78k has quit [Quit: Client closed]
guso78k has joined #openscad
guso78k has quit [Quit: Client closed]
rogeliodh has quit [Quit: The Lounge - https://thelounge.chat]
rogeliodh has joined #openscad
L29Ah has left #openscad [#openscad]
buZz has quit [Ping timeout: 265 seconds]
buZz has joined #openscad
buZz is now known as Guest513
J25k33 has quit [Quit: Client closed]
J25k33 has joined #openscad
kintel has joined #openscad
<kintel> guso78k preview_requested: I'd say it's a small mistake, probably shouldn't be static. Code was written by a new contributor, perhaps someone not too experience in C++
stealth_ has joined #openscad
fling has quit [Ping timeout: 264 seconds]
fling has joined #openscad
L29Ah has joined #openscad
J25k33 has quit [Quit: Client closed]
J25k33 has joined #openscad
<pmn> oh, they literally
<pmn> oops! sorry
<gbruno> [github] kintel closed pull request #5779 (Refactor Preferences to extract the static part in a singleton) https://github.com/openscad/openscad/pull/5779
<gbruno> [github] kintel pushed 12 modifications (Refactor Preferences to extract the static part in a singleton (#5779)) https://github.com/openscad/openscad/commit/40d54c8e3c942ab96cb235c9a0cddefa0e576291
<gbruno> [github] kintel closed pull request #5783 ([CLEAN] Move getCodeLocation from MainWindow to Node::getCodeLocation) https://github.com/openscad/openscad/pull/5783
<gbruno> [github] kintel pushed 3 modifications (Move the free function getCodeLocation from MainWindow to Node::getCodeLocation. (#5783)) https://github.com/openscad/openscad/commit/1e44e3e98c84491dc2456ffeb54be2451140202d
Guest49 has joined #openscad
Larinioides has quit [Quit: Client closed]
Guest49 has quit [Ping timeout: 240 seconds]
Larinioides has joined #openscad
pmn has left #openscad [WeeChat 4.7.0-dev]
TheMaker has joined #openscad
muesli has quit [Quit: NO CARRIER]
muesli has joined #openscad
Guest49 has joined #openscad
Guest49 has quit [Quit: Client closed]
guso78k has joined #openscad
<gbruno> [github] kintel opened issue #5784 (MouseSelector picking doesn't work for certain types of CSG trees) https://github.com/openscad/openscad/issues/5784
J25k33 has quit [Quit: Client closed]
J25k33 has joined #openscad
kintel has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
L29Ah has left #openscad [#openscad]
<guso78k> @kintel, what do you think about interactive OpenSCAD like this: you mark values with "" in the code and they are enabled for dragging.  Is  this something you like for OpenSCAD or is that too much of GUI  in a Source-Code Environment ?  https://www.youtube.com/watch?v=rtHItyofpxQ
<othx> guso78k linked to YouTube video "Interactive Open(Python)SCAD" => 1 IRC mentions
<guso78k> please note: the angle is updated in the source code.
guso78k has quit [Quit: Client closed]
guso78k has joined #openscad
<gbruno> [github] kintel pushed 3 modifications (Write debug output to /tmp/idcolors.png) https://github.com/openscad/openscad/commit/56604b950cf417be8570fa65ba27e71e87979b19
L29Ah has joined #openscad
<gbruno> [github] vortex64 opened issue #5785 (Ungrouped export) https://github.com/openscad/openscad/issues/5785
aiyion has quit [Ping timeout: 264 seconds]
aiyion has joined #openscad
hramrach has quit [Quit: 4]
hramrach has joined #openscad
PaulWay has joined #openscad
kintel has joined #openscad
<kintel> guso78k Make sense. That particular implementation isn't great of course, since "" makes it a literal string. This is a pretty hard UX challenge, but I'd welcome a good design :)
kintel has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<gbruno> [github] damienmarchal opened pull request #5786 (Removes the recursive calling to Preferences.) https://github.com/openscad/openscad/pull/5786
<gbruno> [github] damienmarchal edited pull request #5786 (Removes the recursive calling to Preferences.) https://github.com/openscad/openscad/pull/5786
<gbruno> [github] damienmarchal edited pull request #5786 (Removes the recursive calling to Preferences.) https://github.com/openscad/openscad/pull/5786
pbsds355 has joined #openscad
pbsds35 has quit [Ping timeout: 252 seconds]
pbsds355 is now known as pbsds35
PaulWay has quit [Ping timeout: 248 seconds]
TheMaker has quit [Quit: Konversation terminated!]
PaulWay has joined #openscad