Skip to content

Instantly share code, notes, and snippets.

View riperjack's full-sized avatar

Marcin riperjack

View GitHub Profile
@riperjack
riperjack / blender_clone_by_pattern.py
Created April 25, 2019 17:41
Blender script which clones and places objects according to pattern specified by array of object names, i.e. [wall1, wall2, wall3]
import math
import bpy
def delete(prefix):
for obj in bpy.context.scene.objects:
if obj.name.startswith(prefix):
objs = bpy.data.objects
objs.remove(objs[obj.name], True)
def max_len(objects, dimension):