Box stroke width

Hello,
I’ve just started learning how to use p5.js in a 3D environment.
I made a simple array of boxes with different heights (here’s the code, it is very simple p5.js Web Editor)

However, when two boxes with differents heights touch each other, the stroke isn’t very bold (which is normal I guess).I don’t know if what I’m saying is clear so here’s an image showing it

Is there any way I can make the lines circled in red a little bit more thick ?

Thanks in advance

1 Like

box (24,h,24 );

Chrisir

1 Like

I found it 5 minutes after sending my message haha thanks !

1 Like

Hey, and welcome to the forum!

Great to have you here!

1 Like

An alternative solution:

translate(26*i, h/2, 26*j);
1 Like

thanks for your solutions ! if anyone is interested in seeing the result, here it is

1 Like

Thanks, it is beautiful!