view flax/UI.py @ 1105:0440fb0f458b

add rotation param to vidref Ignore-this: 3c36bede3d3f7b18e3e26d2c5b2722ef
author Drew Perttula <drewp@bigasterisk.com>
date Tue, 10 Jun 2014 05:49:36 +0000
parents 45b12307c695
children
line wrap: on
line source

# Abstract UI widgets

class UI(Something):
    pass

class Scale(UI):
    def __init__(self, start, stop, res=0.001):
        pass

""" unfinished
class Button(UI):
    def __init__(self, etc)
"""