view flax/UI.py @ 687:454e381cd24f

curvecalc refactor and module fixes Ignore-this: afb03eba0af8d2daa7f03d4cace00d3e
author drewp@bigasterisk.com
date Tue, 05 Jun 2012 21:38:16 +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)
"""