Please like and subscribe, If you have enjoyed watching this tutorial. Thank you for watching. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Here is Blender's official tutorial playlist on Youtube. https://www.youtube.com/watch?v=MF1qEhBSfq4&list=PLa1F2ddGya_-UvuAqHAksYnB0qL9yWDO6 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Here is Blender's official material node guides. Please learn more about what each node does. https://docs.blender.org/manual/en/latest/render/shader_nodes/index.html https://docs.blender.org/manual/en/latest/compositing/types/input/index.html =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Please watch the following tutorial to copy my Blender settings for Open Image Denoise, Filmic, Curves, transparent background and so on. https://www.youtube.com/watch?v=9Cd4SHnisP0 - Python script - import bpy import bmesh import math n = 1000 # number of points c = 0.1 # scale factor mesh = bpy.data.meshes.new(name="Spiral") bm = bmesh.new() for i in range(0, n): theta = i * math.radians(137.5) r = c * math.sqrt(i) bm.verts.new((math.cos(theta) * r, math.sin(theta) * r, 0.0)) bm.to_mesh(mesh) mesh.update() from bpy_extras import object_utils object_utils.object_data_add(bpy.context, mesh)
Please like and subscribe, If you have enjoyed watching this tutorial. Thank you for watching. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Here is Blender's official tutorial playlist on Youtube. https://www.youtube.com/watch?v=MF1qEhBSfq4&list=PLa1F2ddGya_-UvuAqHAksYnB0qL9yWDO6 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Here is Blender's official material node guides. Please learn more about what each node does. https://docs.blender.org/manual/en/latest/render/shader_nodes/index.html https://docs.blender.org/manual/en/latest/compositing/types/input/index.html =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Please watch the following tutorial to copy my Blender settings for Open Image Denoise, Filmic, Curves, transparent background and so on. https://www.youtube.com/watch?v=9Cd4SHnisP0 - Python script - import bpy import bmesh import math n = 1000 # number of points c = 0.1 # scale factor mesh = bpy.data.meshes.new(name="Spiral") bm = bmesh.new() for i in range(0, n): theta = i * math.radians(137.5) r = c * math.sqrt(i) bm.verts.new((math.cos(theta) * r, math.sin(theta) * r, 0.0)) bm.to_mesh(mesh) mesh.update() from bpy_extras import object_utils object_utils.object_data_add(bpy.context, mesh)