2023年3月27日月曜日

円柱 90度 y軸 回転 素体

aaa






import bpy
from mathutils import Matrix
from math import radians

# Create a cylinder object
bpy.ops.mesh.primitive_cylinder_add(radius=1.0, depth=30.0, location=(30.0, 0.0, 15.0))

# Get a reference to the newly created object
obj = bpy.context.active_object

# Create a rotation matrix for a 90 degree rotation around the y-axis
rotation_matrix = Matrix.Rotation(radians(90.0), 4, 'Y')

# Apply the rotation to the object's world matrix
obj.matrix_world @= rotation_matrix

































bbb

連番 007 未来光円錐 過去光円錐 円周中心からの球体放出

aaa 参考 2023年3月26日日曜日 製作 002b 未来光円錐の方向 線路レールで https://ia2023sha.blogspot.com/2023/03/002b.html import bpy import math zion_co...