view flax/UI.py @ 1837:392f4bfb4a19

checkpoint show data Ignore-this: 995bc39f6fe035ef6428d417b1515fe7
author drewp@bigasterisk.com
date Sat, 09 Jun 2018 23:25:47 +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)
"""