view flax/UI.py @ 1437:d149a2c2236c

always send trailing zeros to dmx Ignore-this: 973ae36ba571f865150710d304e255c8
author drewp@bigasterisk.com
date Sat, 11 Jun 2016 20:41:04 +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)
"""