Skip to content

Instantly share code, notes, and snippets.

View desmarkie's full-sized avatar

Mark Dooney desmarkie

View GitHub Profile
@desmarkie
desmarkie / blender_random_walking_splines.py
Created November 6, 2017 22:57
Blender Random Walking Splines
# Generates random walking spline curves in Blender (2.79)
# Curve creation code pinched from https://blender.stackexchange.com/a/6751
# ello.co/desmarkie
import bpy
import bmesh
import random
from mathutils import Vector
from mathutils import Euler