view flax/UI.py @ 1518:7480e26c75ed

better throttling of adjuster redraws Ignore-this: 4820a88e2ac6325945efb62906d2e7eb
author Drew Perttula <drewp@bigasterisk.com>
date Wed, 12 Apr 2017 06:17:34 +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)
"""