This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import argparse | |
import mpl_toolkits.mplot3d.axes3d as ax3d | |
import matplotlib.pyplot as plt | |
import numpy as np | |
def fibonacci_sphere(num_points: int): | |
ga = (3 - np.sqrt(5)) * np.pi # golden angle |