view flax/UI.py @ 630:10373fcd9e3d

some old curve Ignore-this: 947ab9c6f7d6c3fafa59b58843384a91
author drewp@bigasterisk.com
date Wed, 15 Jun 2011 07:05:46 +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)
"""