view flax/UI.py @ 1741:17f56584e253

fix types so graph writing works again. Ignore-this: 8691cc024983e1d581d1a16202c92870
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 19 May 2018 07:25:01 +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)
"""