from visual import *
oberflaeche = frame ()
a=100
b=0.5
c=5
flaeche = box (frame = oberflaeche, pos = (0,0,0),\
                length=(a), height= (1), width= (a), color=color.blue)
#Aussenwaende:
wand1= box (frame = oberflaeche, pos = (0.5*a-0.5*b,2,0),\
            length=(b), width=(a), height=(1),color=color.blue)
wand2= box (frame = oberflaeche, pos = (-0.5*a+0.5*b,2,0),\
            length=(b), width=(a), height=(1), color=color.blue)
wand3= box (frame = oberflaeche, pos = (0,2,0.5*a-0.5*b),\
            length=(a), width=(b), height=(1), color=color.blue)
wand4= box (frame = oberflaeche, pos = (0,2,-0.5*a+0.5*b),\
            length=(a), width=(b), height=(1), color=color.blue)
#Kugel:
ball = sphere ( pos= (47.5,1.5,47.5),radius =( 1))
#Trennwaende:
wand5 = box(frame= oberflaeche, pos = ( 30,1,45),\
            length= (40), width = (1), height= (c),color=color.green ) #1
wand6 = box(frame= oberflaeche, pos = ( -20,1,45),\
            length= (40), width = (1), height= (c),color=color.green ) #2
wand7 = box(frame= oberflaeche, pos = ( 5,1,47),\
            length= (1), width = (5), height= (c),color=color.green )  #3
wand8 = box(frame= oberflaeche, pos = ( -40,1,47),\
            length= (1), width = (5), height= (c), color=color.green)  #4
wand9 = box(frame= oberflaeche, pos = ( -45,1,42.5),\
            length= (1), width = (5), height= (c),color=color.green )  #5
wand10 = box(frame= oberflaeche, pos = ( -22.5,1,40),\
            length= (35), width = (1), height= (c),color=color.green ) #6
wand11 = box(frame= oberflaeche, pos = ( 40,1,40),\
            length= (20), width = (1), height= (c),color=color.green ) #7
wand12  =box(frame= oberflaeche, pos = ( 25,1,41),\
            length= (1), width = (8), height= (c),color=color.green ) #8

#Zielfeld:
feld = box(frame = oberflaeche, pos = (47.5,0.51,42.5),\
            length=(5), width = (5), height=(0.1),color = color.red)

            