view flax/UI.py @ 2009:97a7c71b952a

reformat Ignore-this: 30b26974808f15c4379444237aa50813
author drewp@bigasterisk.com
date Mon, 10 Jun 2019 01:39:26 +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)
"""