view flax/UI.py @ 1755:e82a8a48120c

update note drawings correctly. rerender less. Ignore-this: f673b26f919d98b5ee18c1dd94a877f2
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 27 May 2018 01:16:49 +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)
"""