This file contains hidden or 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
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. | |
""" |
OlderNewer