Value Scheduler based on Progress
Project description
line-chain

Value Scheduler based on Progress.
Installation
Need Python 3.6+.
pip install line-chain
Usage
import line_chain line_chain = line_chain.factory(config=[ { 'mode': 'linear', 'ratio': 0.01, 'start': 0.2, 'target': 0.8 }, { 'mode': 'cosine', 'ratio': 1.0, 'target': 0.0 } ]) print(line_chain) #> LineChain ( #> 1.0%, linear from 0.2 to 0.8, #> 100.0%, cosine from 0.8 to 0.0, #> ) # plot it! import numpy as np import pylab as pl x = np.linspace(0, 1, 1000) y = np.vectorize(line_chain.at)(x) pl.plot(x, y)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
line-chain-0.0.4.tar.gz
(4.3 kB
view hashes)