Skip to content

Instantly share code, notes, and snippets.

@batFINGER
batFINGER / blurb.md
Last active September 4, 2016 15:08
Sound Drivers major preferences update

Added adhoc module register support for sound drivers

@batFINGER
batFINGER / __init__.py
Last active July 6, 2019 15:14
"addon submodules"
bl_info = {
"name": "Example Addon Preferences",
"author": "Your Name Here",
"version": (1, 0),
"blender": (2, 65, 0),
"location": "SpaceBar Search -> Addon Preferences Example",
"description": "Example Addon",
"warning": "",
"wiki_url": "",
"tracker_url": "",
@batFINGER
batFINGER / spherical_fibonacci.py
Created August 15, 2016 17:33
Spherical Fibonacci Coordinates
import bpy
from numpy import (sum, dot, inf, log, sin, cos, pi,
arccos, arctan2, floor, sqrt, trunc,
)
from mathutils import Vector, Matrix
import bmesh
from bpy import context
PHI = (1 + sqrt(5)) / 2 # golden ratio