view flax/UI.py @ 1922:11e2f63bb2f2

more stats to measure sequencer framerate better Ignore-this: 5df74b41a9847296432a31d248b31857
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 01 Jun 2019 23:43:44 +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)
"""