Fibonacci Spiral script+GN Tools
A script that allows adding an object, to create a Fibonacci spiral and some Geometry Nodes tools that serve as a complement.
Basic version content
- Basic script
Full version content
- Addon
- .blend file with assets
- Basic script (if you prefer not to use the addon)
- Full script (if you prefer not to use the addon
To be available in any scene
- Install addon
- Place the .blend file in the assets folder configured in Blender preferences.
Tutorial
Full version variables
Fibonacci_design = "Default" # "Default", "ToInside", "ToOutside"
General Variables (variables disponibles en todos los diseños)
iterations = 8 # Integer number
arc_segments = 10 # Integer number
object_collection_name = "Objects"
spiral_collection_name = "Spiral" # Not used in "Default" design with type_spiral = "Single"
invert_horizontal = False # True, False
invert_vertical = True # True, False
Default Variables (variable disponibles sólo para el diseño Default”
type_spiral = "Single" # "Single", "Edges", "Rectangles"
Default, ToInside Variables (variables disponibles para diseño Default y ToInside)
size = 5 # Float number
adjust_corner_to_origin = False # True, False
ToInside, ToOutside Variables (variables disponibles para diseño ToInside y ToOutside)
object_type = "Plane" # "Plane", "Cube"
z_adjustment = "Center" # "Down", "Center", "Up"
ToOutside Variables (variable disponible para diseño ToOutside)
numbers_collection_name = "numbers"
start_angle = "Horizontal" # "Horizontal", "Vertical"
scale_factor = .2 # Float number
scale_numbers = .4 # Float number
''' Color Variables '''
color_mode = "CColors" # "Random", "CColors" (Custom Colors)
color_Interval = 4 # Integer number
color_prefix = "ColorFibonacci"
color_saturation = 0.5 # Float number
color_brightness = (0.5, 1.5) # Float number
colors = [ # RGBA
(1, 0, 0, .5),
(0, 1, 0, .5),
(0, 0, 1, .5),
(1, 1, 0, .5),
(0.5, 0, 0, 1),
(0.5, 0.5, 0.5, 1),
(0, 1, 1, 1),
(1, 0, 1, 1),
(0, 0.5, 0, 1),
(0, 0, 0.5, 1)
]
A script that allows adding an object, to create a Fibonacci spiral