00:02
buZz has joined #openscad
00:02
buZz is now known as Guest6917
00:30
guso78k has quit [Quit: Client closed]
00:32
J25k98 has quit [Quit: Client closed]
00:32
J25k98 has joined #openscad
00:32
nomike has quit [Quit: Leaving]
01:43
TheAssassin has quit [Quit: No Ping reply in 180 seconds.]
01:45
TheAssassin has joined #openscad
02:00
mmu_man has quit [Ping timeout: 244 seconds]
02:07
J25k98 has quit [Quit: Client closed]
02:07
J25k98 has joined #openscad
02:14
PaulWay has joined #openscad
02:36
<
PaulWay >
As an aside, I'm working on a Greek key generator of arbitrary complexity, for decorations :-)
02:38
ali12341 has joined #openscad
02:38
ali1234 has quit [Ping timeout: 246 seconds]
04:07
PaulWay has quit [Ping timeout: 248 seconds]
04:14
J25k33 has joined #openscad
04:18
J25k98 has quit [Ping timeout: 240 seconds]
05:00
aiyion has quit [Read error: Connection reset by peer]
05:00
teepee has quit [Remote host closed the connection]
05:00
GNUmoon has quit [Remote host closed the connection]
05:00
aiyion has joined #openscad
05:01
GNUmoon has joined #openscad
05:02
teepee has joined #openscad
06:18
void has joined #openscad
06:23
stealth_ has quit [Quit: Leaving]
06:33
aiyion has quit [Remote host closed the connection]
06:38
aiyion has joined #openscad
07:12
guso78k has joined #openscad
07:44
<
guso78k >
whats the point of beeing static and isn't it always false in the end ?
07:54
L29Ah has quit [Read error: Connection timed out]
07:59
J25k33 has quit [Quit: Client closed]
07:59
J25k33 has joined #openscad
08:17
void has quit [Remote host closed the connection]
08:52
J25k33 has quit [Quit: Client closed]
08:52
J25k33 has joined #openscad
09:09
guso78k has quit [Quit: Client closed]
09:24
teepee_ has joined #openscad
09:26
teepee has quit [Ping timeout: 264 seconds]
09:26
teepee_ is now known as teepee
09:59
hyperair has quit [Remote host closed the connection]
11:00
L29Ah has joined #openscad
11:32
ccox has quit [Ping timeout: 260 seconds]
11:34
ccox has joined #openscad
11:42
<
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."
11:59
mmu_man has joined #openscad
12:12
guso78k has joined #openscad
12:29
Guest6917 is now known as buZz
13:01
PaulWay has joined #openscad
13:12
PaulWay has quit [Ping timeout: 248 seconds]
13:28
Larinioides has joined #openscad
13:29
<
othx >
Welcome Larinioides!
13:29
<
Larinioides >
New to this, but love coding.
13:29
<
Larinioides >
Anyone wanna look real fast why I can't move my text where I want it? What is missing?
13:29
<
Larinioides >
Thanks in advance!
13:29
<
Larinioides >
cube([600,200, 25]);
13:29
<
Larinioides >
translate(0,0,0);
13:29
<
Larinioides >
linear_extrude()
13:29
<
Larinioides >
text("STUPID TEXT",size=50,font="Times New Roman");
13:29
<
Larinioides >
translate(50,0,0);
13:40
<
hramrach >
how about linear_extrude() translate([50,50]) text(...
13:41
<
hramrach >
you shoukd be getting WARNING: Unable to convert translate(50) parameter to a vec3 or vec2
13:41
<
Larinioides >
WARNING: Too many unnamed arguments supplied in file LEON.scad, line 6
13:41
<
Larinioides >
WARNING: Unable to convert translate(0) parameter to a vec3 or vec2 of numbers in file LEON.scad, line 6
13:41
<
Larinioides >
WARNING: Too many unnamed arguments supplied in file LEON.scad, line 11
13:41
<
Larinioides >
WARNING: Unable to convert translate(50) parameter to a vec3 or vec2 of numbers in file LEON.scad, line 11
13:42
<
Larinioides >
These are the warnings I get, so you should be right.
13:42
<
Larinioides >
I'll try that, thanks!
13:43
<
Larinioides >
I also seem to have missed the [] for translate
13:43
<
Larinioides >
cube([600,200, 25]);
13:43
<
Larinioides >
linear_extrude()translate([50,0,0])
13:43
<
Larinioides >
text("STUPID TEXT",size=50,font="Times New Roman");
13:44
<
Larinioides >
This works like a charm! Great, many thanks!
14:02
<
Larinioides >
Another quick question, if I may.
14:02
<
Larinioides >
difference();{
14:02
<
Larinioides >
cube([600,200,10]);
14:02
<
Larinioides >
cylinder(10,100,100);
14:02
<
Larinioides >
linear_extrude(25)translate([25,100,0])
14:02
<
Larinioides >
text("LEON",size=100,font="Times New Roman");
14:02
<
Larinioides >
#cube([10,100,10]);
14:02
<
Larinioides >
translate([10,10,10]);}
14:03
<
Larinioides >
Why doesnt the second cube move when I change values for its translate?
14:07
<
guso78k >
write: differene(){
14:07
<
guso78k >
no semicolon there
14:07
<
Larinioides >
Ah! You guys are made of gold!
14:07
<
Larinioides >
Thanks a bunch!
14:09
<
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.
14:10
<
hramrach >
same with translate([])
14:13
<
Larinioides >
The last cube still doesn't move when I change the value for translate. What am I doing wrong? Haha.
14:13
<
Larinioides >
difference()
14:14
<
Larinioides >
cube([600,200,10]);
14:14
<
Larinioides >
linear_extrude(25)translate([25,100,0])
14:14
<
Larinioides >
text("LEON",size=100,font="Times New Roman");
14:14
<
Larinioides >
cylinder(10,100,100);
14:14
<
Larinioides >
#cube([10,100,10]);
14:14
<
Larinioides >
translate([100,10,10]);
14:18
<
guso78k >
swap translate and cube position
14:18
<
guso78k >
translate([100,10,10]) cube([10,100,10]);
14:19
<
Larinioides >
Darn. Thanks, bro!
14:20
<
guso78k >
for some persons it might be unintuitive to put the transformatio statement BEFORE the the thing-to-create
14:34
<
Larinioides >
Yeah, that "some persons" is me, haha.
14:36
<
Larinioides >
I just want the soccer ball.
14:42
<
guso78k >
Ahh, the price ;) use cylinder(r,= h=, $fn=6,), difference, translate ..
14:44
<
Larinioides >
Damn, thats a lot of coding, haha.
14:44
<
Larinioides >
Thanks mate!
14:59
J25k33 has quit [Quit: Client closed]
14:59
J25k33 has joined #openscad
15:04
guso78k has quit [Quit: Client closed]
15:06
Guest35 has joined #openscad
15:07
Larinioides has quit [Quit: Client closed]
15:07
Guest35 has quit [Client Quit]
15:22
pmn has joined #openscad
15:24
<
pmn >
basically panel + the driver board
15:34
guso78k has joined #openscad
15:46
<
pmn >
hmm, i guess `use <shimonbox/boards/cubieboard.scad>` is a good starting point
16:14
Larinioides has joined #openscad
16:19
guso78k has quit [Quit: Client closed]
16:22
guso78k has joined #openscad
16:30
guso78k has quit [Quit: Client closed]
16:48
rogeliodh has joined #openscad
16:53
L29Ah has left #openscad [#openscad]
16:57
buZz has quit [Ping timeout: 265 seconds]
16:57
buZz has joined #openscad
16:58
buZz is now known as Guest513
17:02
J25k33 has quit [Quit: Client closed]
17:02
J25k33 has joined #openscad
17:07
kintel has joined #openscad
17:08
<
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++
17:10
stealth_ has joined #openscad
17:18
fling has quit [Ping timeout: 264 seconds]
17:19
fling has joined #openscad
17:29
L29Ah has joined #openscad
17:36
J25k33 has quit [Quit: Client closed]
17:36
J25k33 has joined #openscad
17:41
<
pmn >
oh, they literally
17:49
Guest49 has joined #openscad
17:54
Larinioides has quit [Quit: Client closed]
17:59
Guest49 has quit [Ping timeout: 240 seconds]
18:00
Larinioides has joined #openscad
18:01
pmn has left #openscad [WeeChat 4.7.0-dev]
18:07
TheMaker has joined #openscad
18:17
muesli has quit [Quit: NO CARRIER]
18:18
muesli has joined #openscad
18:41
Guest49 has joined #openscad
18:47
Guest49 has quit [Quit: Client closed]
19:46
guso78k has joined #openscad
20:04
J25k33 has quit [Quit: Client closed]
20:04
J25k33 has joined #openscad
20:05
kintel has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
20:45
L29Ah has left #openscad [#openscad]
21:03
<
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
21:03
<
othx >
guso78k linked to YouTube video "Interactive Open(Python)SCAD" => 1 IRC mentions
21:06
<
guso78k >
please note: the angle is updated in the source code.
21:20
guso78k has quit [Quit: Client closed]
21:23
guso78k has joined #openscad
21:42
L29Ah has joined #openscad
22:15
aiyion has quit [Ping timeout: 264 seconds]
22:25
aiyion has joined #openscad
22:48
hramrach has quit [Quit: 4]
22:49
hramrach has joined #openscad
22:55
PaulWay has joined #openscad
23:13
kintel has joined #openscad
23:14
<
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 :)
23:15
kintel has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
23:34
pbsds355 has joined #openscad
23:35
pbsds35 has quit [Ping timeout: 252 seconds]
23:35
pbsds355 is now known as pbsds35
23:49
PaulWay has quit [Ping timeout: 248 seconds]
23:52
TheMaker has quit [Quit: Konversation terminated!]
23:58
PaulWay has joined #openscad