no milestones reached
This commit is contained in:
48
incs/ridelles.inc
Normal file
48
incs/ridelles.inc
Normal file
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* LES JOUETS DE TONTON TH
|
||||
* le wagon-ridelles
|
||||
*/
|
||||
//-----------------------------------------------------------------
|
||||
|
||||
#declare Ridelle_Cote = object
|
||||
{
|
||||
union {
|
||||
cylinder { <0, 4.5, -11>, <0, 4.5, 11>, 0.5 }
|
||||
box { <-.5, 4, -11>, <.5, 4.5, 11> }
|
||||
#declare foo=0;
|
||||
#while (foo<6)
|
||||
box { <-.4, 0, foo*4-10-.3>, <.4, 4, foo*4-10+.3> }
|
||||
#declare foo=foo+1;
|
||||
#end
|
||||
}
|
||||
texture {
|
||||
pigment { color MediumWood }
|
||||
finish { roughness .83 }
|
||||
}
|
||||
translate y*5.75
|
||||
}
|
||||
|
||||
#declare Ridelle_Bout = object
|
||||
{
|
||||
box { <-4, 6.2, -0.3>, <4, 9.7, 0.3> }
|
||||
texture {
|
||||
pigment { color MediumWood }
|
||||
finish { roughness .73 }
|
||||
}
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------
|
||||
|
||||
#declare Wagon_Ridelles = object
|
||||
{
|
||||
union
|
||||
{
|
||||
object { Base_Courte }
|
||||
object { Ridelle_Cote translate x*3.5 }
|
||||
object { Ridelle_Cote translate x*-3.5 }
|
||||
object { Ridelle_Bout translate z*11.3 }
|
||||
object { Ridelle_Bout translate z*-11.3 }
|
||||
}
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------
|
||||
Reference in New Issue
Block a user