56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
|
|
#include "chars.inc"
|
|
|
|
/* ===========================================================*/
|
|
/*
|
|
* see 'gare.inc' for usage
|
|
*/
|
|
#declare Enseigne_Hello = object
|
|
{
|
|
union
|
|
{
|
|
object { char_H translate x*-27.5 }
|
|
object { char_E translate x*-22.5 }
|
|
object { char_L translate x*-17.5 }
|
|
object { char_L translate x*-12.5 }
|
|
object { char_O translate x*-7.5 }
|
|
|
|
object { char_W translate x*2.5 }
|
|
object { char_O translate x*7.5 }
|
|
object { char_R translate x*12.5 }
|
|
object { char_L translate x*17.5 }
|
|
object { char_D translate x*22.5 }
|
|
}
|
|
texture { PinkAlabaster scale 3 }
|
|
}
|
|
/* ===========================================================*/
|
|
#declare Enseigne_Corail_plaque = object
|
|
{
|
|
box { <-0.8, -0.01, -3.5>, <0.8, 0.01, 3.5> }
|
|
pigment { color Blue }
|
|
rotate z*90
|
|
}
|
|
/* ----------------------------------------------------------- */
|
|
#declare Enseigne_Corail_texte = object
|
|
{
|
|
text { ttf "data/tintin_talking.ttf" ,
|
|
"Bourtoulots Express", 0.06, 0.0
|
|
pigment{ White }
|
|
}
|
|
translate -3.6*x
|
|
rotate -90 * y
|
|
translate <0.03, -0.19, 0.00>
|
|
}
|
|
/* ----------------------------------------------------------- */
|
|
#declare Enseigne_Corail_texte = object
|
|
{
|
|
union {
|
|
object { Enseigne_Corail_plaque }
|
|
object { Enseigne_Corail_texte }
|
|
}
|
|
}
|
|
/* ===========================================================*/
|
|
/* ===========================================================*/
|
|
|
|
/* (c) Oulala 2025 */
|