view flax/UI.py @ 1018:e28a443bd153

initial effecteval that can propagate changes from the graph to a web page Ignore-this: 81112fdde21f46a8141c8e69467bc8d2
author drewp@bigasterisk.com
date Sun, 25 May 2014 21:30:59 +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)
"""