Scribbled notes
cosinus distributed over tangent tangens plane
from math import pi, tan, cos
from matplotlib import pyplot
x_tan = []
y_0 = []
y_cos = []
bound = pi/2
sieve = 1000
for column in range(sieve):
x_tan.append(tan(boundcolumn/sieve))
y_cos.append(cos(boundcolumn/sieve))
y_0.append(0)
pyplot.plot(x_tan, y_0)#Graph
pyplot.plot(x_tan, y_cos)#Graph
pyplot.show()#Graph