view flax/UI.py @ 1791:6cdbc76d1cd5

fix d3 path Ignore-this: a623f73d3741a9f515c4a216ebd14f8d
author drewp@bigasterisk.com
date Thu, 07 Jun 2018 17:51:56 +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)
"""