[BlenderBIM] Python script to show what you think of the architect's design.
C
by Coen on 26 Jul 2022, edited 6 May 2023#
+13 votes
With succesful export to IFC
import bpy
import random
import mathutils
from mathutils import Euler
for obj in bpy.context.view_layer.objects:
obj.rotation_euler.rotate(Euler((random.randint(1,30), random.randint(1,30), random.randint(1,30))))