view flax/UI.py @ 1725:4bc24f91b6f1

fix floatValue cache Ignore-this: f5e5c6ffef3f48eebd03ecd19fab99b7
author drewp@bigasterisk.com
date Thu, 10 May 2018 06:08:39 +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)
"""