4925a64bd24fd27addd2fa4d092e00bc711150ec,examples/custom/gears/gears.py,,classical_gear,#Any#Any#Any#,33
Before Change
return plot
def classical_gear(module, large_teeth, small_teeth):
xdr = Range1d(start=-300, end=150)
ydr = Range1d(start=-100, end=100)
plot = Plot(x_range=xdr, y_range=ydr, plot_width=800, plot_height=800)
plot.add_tools(PanTool(), WheelZoomTool(), BoxZoomTool(), UndoTool(), RedoTool(), ResetTool())
radius = pitch_radius(module, large_teeth)
angle = 0
glyph = Gear(
After Change
return plot
def classical_gear(module, large_teeth, small_teeth):
plot = figure(
x_range=(-300, 150), y_range=(-100, 100),
x_axis_type=None, y_axis_type=None,
width=800, height=800,
tools=tools,
)
radius = pitch_radius(module, large_teeth)
angle = 0
glyph = Gear(
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 4
Instances
Project Name: bokeh/bokeh
Commit Name: 4925a64bd24fd27addd2fa4d092e00bc711150ec
Time: 2021-01-18
Author: mattpap@gmail.com
File Name: examples/custom/gears/gears.py
Class Name:
Method Name: classical_gear
Project Name: bokeh/bokeh
Commit Name: 4925a64bd24fd27addd2fa4d092e00bc711150ec
Time: 2021-01-18
Author: mattpap@gmail.com
File Name: examples/custom/gears/gears.py
Class Name:
Method Name: epicyclic_gear
Project Name: bokeh/bokeh
Commit Name: 422a437f2079290384d9a0a496379e7b492d996d
Time: 2018-05-24
Author: bryanv@anaconda.com
File Name: examples/plotting/file/bar_pandas_groupby_nested.py
Class Name:
Method Name:
Project Name: bokeh/bokeh
Commit Name: 422a437f2079290384d9a0a496379e7b492d996d
Time: 2018-05-24
Author: bryanv@anaconda.com
File Name: sphinx/source/docs/user_guide/examples/categorical_bar_pandas_groupby_nested.py
Class Name:
Method Name: