from visual import *
from random import *

zufallszahlX = random()*10+3
zufallszahlZ = random()*10+3
zufallszahlY = random()*10+3



kugel = sphere()

Zielscheibe = frame()

Ring1 = cylinder(frame = Zielscheibe, pos=(zufallszahlX, 0, zufallszahlZ), length=0.13, radius=0.5, color=color.red)
Ring2 = cylinder(frame = Zielscheibe, pos=(zufallszahlX, 0, zufallszahlZ), length=0.12, radius=1)
Ring3 = cylinder(frame = Zielscheibe, pos=(zufallszahlX, 0, zufallszahlZ), length=0.11, radius=1.5, color=color.red)
Ring4 = cylinder(frame = Zielscheibe, pos=(zufallszahlX, 0, zufallszahlZ), length=0.1, radius=2)

ende=false

while ende==false:
    rate(50)



    Zielscheibe.rotate(angle=radians(1), axis = (0,1,0))

