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

24
incs/voiture.inc Normal file
View File

@@ -0,0 +1,24 @@
/*
*/
#declare Roue = object
{
torus { .5, .2 pigment { color Gray50 } finish { phong 0.8 } }
rotate x*90
translate y*0.75
}
#declare Voiture = object
{
union
{
object { Roue translate <-2, 0, -1> }
object { Roue translate < 2, 0, -1> }
object { Roue translate <-2, 0, 1> }
object { Roue translate < 2, 0, 1> }
}
}