import matplotlib.pyplot as pltimport numpy as nptheta_degrees = np.linspace(0, 113*360, 10000)theta_radians = np.deg2rad(theta_degrees)z = np.exp(theta_radians * 1j) + np.exp(np.pi * theta_radians * 1j)x = np.real(z)y = np.imag(z)plt.figure(figsize=(10, 10))plt.plot(x, y, color=’white’, linewidth=0.5)plt.gca().set_facecolor(‘black’)plt.gca().set_aspect(‘equal’)plt.grid(False)plt.xlim(-2.5, 2.5)plt.ylim(-2.5, 2.5)plt.show()
Month: September 2024
AN ADVENTUROUS TRIP TO CHAIL
In a boring week we decided to visit to Chail which is located in Himachal Pradesh. So I am just going to skip the booking and all parts because it pretty boring so yeah let’s begin! So on 6 April 2023, we woke up at 5am because that day we had to go to Chail,…