view flax/UI.py @ 1324:bb4cd6d7d274

move diagram code to coffee Ignore-this: b9e495a5622bb5ddc8df2f9ed4c39322
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 04 Jun 2016 01:41:25 +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)
"""