view flax/UI.py @ 1164:65f0179a9254

subcomposer has a web ui with buttons for toggling lights Ignore-this: f8cf76c46d81eec86c8945a61f6a594d
author drewp@bigasterisk.com
date Sun, 15 Jun 2014 02:23:39 +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)
"""