view flax/UI.py @ 1980:5c8b6cd330da

fix artnet setup Ignore-this: b6a4f26b87bb2e61e3391d620c5d1462
author drewp@bigasterisk.com
date Sat, 08 Jun 2019 09:18:33 +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)
"""