view flax/UI.py @ 1025:09c3fc7cf6ba

requesting a curve at t=0 used to return the last value instead of the first Ignore-this: bb2fbc67b2a86441674da187a8654326
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 26 May 2014 18:19:23 +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)
"""