# Implementation of bokeh function
import numpy as np
from bokeh.plotting import figure, output_file, show
plot = figure(plot_width = 300, plot_height = 300)
plot.bezier(x0 =[1, 2, 3], y0 =[3, 2, 1],
x1 =[1.4, 2.3, 3.5], y1 =[3.4, 2.3, 1.5],
cx0 =[1.4, 2.3, 3.5], cy0 =[3.4, 2.3, 1.5],
cx1 =[.4, 1.3, 2.5], cy1 =[2.4, 1.3, .5],
color ="green", alpha = 0.6, line_width = 3)
show(plot)