view flax/UI.py @ 1739:7e66643b3f54

quieter graph logs Ignore-this: f24071530e1ecc5c2b7a7de184f438ac
author Drew Perttula <drewp@bigasterisk.com>
date Fri, 18 May 2018 07:54:06 +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)
"""