view flax/UI.py @ 1773:2fe4bb539b52

optimize sequencer's updates when you're editing a curve Ignore-this: 592a034f9d8db36abf3e8c84622ee7cf
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 03 Jun 2018 11:31:21 +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)
"""