view flax/UI.py @ 1740:7cb53b510a6a

draw notes, colors. position adjusters better. Ignore-this: 1ccdb7109cfa67cc0486d9418b42be4e
author Drew Perttula <drewp@bigasterisk.com>
date Fri, 18 May 2018 07:54:42 +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)
"""