view flax/UI.py @ 1693:53f751982ddf

WIP polymer2 upgrade, timeline rewrite Ignore-this: 73b86663c0dcb783c9c6e65f6be901a
author drewp@bigasterisk.com
date Thu, 26 Apr 2018 05:40:12 +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)
"""