1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
"""The stimuli package.
This Package contains a variety of classes implementing experimental stimuli.
See also expyriment.stimuli.extras for more stimuli.
"""
__author__ = 'Florian Krause <florian@expyriment.org>, \
Oliver Lindemann <oliver@expyriment.org>'
__version__ = '0.7.0'
__revision__ = '55a4e7e'
__date__ = 'Wed Mar 26 14:33:37 2014 +0100'
import defaults
from _audio import Audio
from _video import Video
from _canvas import Canvas
from _circle import Circle
from _rectangle import Rectangle
from _line import Line
from _ellipse import Ellipse
from _dot import Dot
from _shape import Shape
from _blankscreen import BlankScreen
from _textline import TextLine
from _fixcross import FixCross
from _textbox import TextBox
from _textscreen import TextScreen
from _picture import Picture
from _tone import Tone
from _frame import Frame
import extras
|