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
| #Sierpinski Experiment 3: Geometric Approach | |
| #Import Modules | |
| import bpy | |
| #Define function | |
| def plane_generator(): | |
| #Generate new planes for the selected planes | |
| for obj in bpy.context.selected_objects: | |
| x = obj.location[0] |