view flax/UI.py @ 1536:7a85229d07a0

currentgraphstate now returns readonly (not actually snapshotted) view of the graph, not a copy Ignore-this: 7db0291740fe8dee0ad25b24571b171b
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 11 May 2017 05:20:15 +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)
"""