view flax/UI.py @ 1874:fc72f550ddcd

annual update of the hardcoded URIs in frontend code that I don't bother to fix Ignore-this: 3c438cd972d3014cca2383f943023b1b
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 27 May 2019 06:22:34 +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)
"""