view flax/UI.py @ 1516:b1fed8880ada

shadow on adjs. try to draw faster and wait less for debouncing Ignore-this: b54a18b559c274591c1c2671b9e7287f
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 06 Apr 2017 11:15:56 +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)
"""