view flax/UI.py @ 1053:9937e2e3d17b

effecteval faster loop, stats page Ignore-this: d107f2e01d73fc6629249e5fec98cb85
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 01 Jun 2014 10:05:50 +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)
"""