no milestones reached

This commit is contained in:
le vieux
2021-03-07 20:58:18 +01:00
parent d779a45c92
commit 59caab29a2
31 changed files with 2288 additions and 0 deletions

22
incs/galerie.inc Normal file
View File

@@ -0,0 +1,22 @@
/*
LE TRAIN MINIATURE DE TONTON TH
*/
#macro galerie(Larg, Long, Diam, Coin)
#local Larg2 = Larg / 2.0;
#local Long2 = Long / 2.0;
union
{
cylinder { <-Larg2, 0, -Long2>, < Larg2, 0, -Long2>, Diam }
cylinder { <-Larg2, 0, Long2>, < Larg2, 0, Long2>, Diam }
cylinder { <-Larg2, 0, -Long2>, <-Larg2, 0, Long2>, Diam }
cylinder { < Larg2, 0, -Long2>, < Larg2, 0, Long2>, Diam }
sphere { <-Larg2, 0, -Long2>, Diam }
sphere { <-Larg2, 0, Long2>, Diam }
sphere { <-Larg2, 0, -Long2>, Diam }
sphere { < Larg2, 0, -Long2>, Diam }
}
#end