Skip to content

Instantly share code, notes, and snippets.

from bpy import data as D, context as C
import bmesh
import math
def fibonacci_points(count=32, radius=0.5):
"""
Distributes points on a sphere according to
the golden ratio, (1.0 + sqrt(5.0)) / 2.0.
"""