Here are the examples of the python api bokeh.driving.linear taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
3
View Source File : test_driving.py
License : MIT License
Project Creator : rthorst
License : MIT License
Project Creator : rthorst
def test_linear():
results = []
func = bd.linear(m=2.5, b=3.7)(_collector(results))
for i in range(4):
func()
assert_allclose(results, [3.7, 6.2, 8.7, 11.2])
def test_repeat():