view flax/UI.py @ 1726:fbe417cb765c

fix or workaround js errors on timeline. view zooming broken. adjusters not drawing Ignore-this: f3d990bc9e312efb3625ac439d89c561
author drewp@bigasterisk.com
date Thu, 10 May 2018 07:12:39 +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)
"""