view flax/UI.py @ 1792:a07bfbe1e9de

make graph sortKey public Ignore-this: f4c5a41044eb864d71a4ccb409de3c88
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 07 Jun 2018 23:03:32 +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)
"""