PovJouets/incs/galerie.inc

23 lines
554 B
PHP
Raw Normal View History

2021-03-07 20:58:18 +01:00
/*
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