Links und Funktionen
Sprachumschaltung

Navigationspfad
Sie sind hier: Startseite / Probestudium / 2014 / WS I: 3D-Programmierung / Skripte (neu) / uebung_while-opacity.py


Inhaltsbereich

uebung_while-opacity.py

Python Source icon uebung_while-opacity.py — Python Source, 1 KB

Dateiinhalt

#uebung: while, keyboard, frame, objects

from visual import *
from time import time
from math import sin,cos

f=frame()
b=box(size=(2,2,2),frame=f)
s=sphere(color=color.magenta, frame=f,y=1)
while not scene.kb.keys:                # solange nichts gedrueckt...polling!
#while scene.kb.getkey():               # mit jedem Druck .. calling!
    rate(25)
    for i in f.objects:
        i.opacity=sin(time())**2

Funktionsleiste