view flax/UI.py @ 1334:8406a9fbeb9d

note shape can be edited Ignore-this: 1d4957c88191336d7b61a7c782897f59
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 04 Jun 2016 09:27:38 +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)
"""