view flax/UI.py @ 1068:0fb89da08e66

CC display optimizations. show pre/post curve in area mode. stable curve order Ignore-this: 43ae4dfcb85afb993b8c6ec5d1810580
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 02 Jun 2014 06:04:54 +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)
"""