2023年8月20日日曜日

20230821c 円柱














円柱を作る

(1,0,0)から

(1,0,1)

マイナー半径 0.03




import bpy


# 円柱を作成

bpy.ops.mesh.primitive_cylinder_add(radius=0.03, depth=1, location=(1, 0, 0.5))


# 作成したオブジェクトを取得

cylinder = bpy.context.active_object


# 名前を設定

cylinder.name = "円柱 (1,0,0) to (1,0,1)"






円柱を作る

(1,0,0)から

(1,1,0)

マイナー半径 0.03

いまのを x軸で90度回転させる




import bpy


# 円柱を作成

bpy.ops.mesh.primitive_cylinder_add(radius=0.03, depth=1, location=(1, 0.5, 0))


# 作成したオブジェクトを取得

cylinder = bpy.context.active_object


# 名前を設定

cylinder.name = "円柱xy t=0  (1,0,0) to (1,1,0)"


# x軸で90度回転

cylinder.rotation_euler.x = 1.5708  # 90度をラジアンで表現







import bpy


# 円柱を作成

bpy.ops.mesh.primitive_cylinder_add(radius=0.03, depth=1, location=(0, 0.5, -1))


# 作成したオブジェクトを取得

cylinder = bpy.context.active_object


# 名前を設定

cylinder.name = "円柱xy t=-1  (0,0,-1) to (0,1,-1)"


# x軸で90度回転

cylinder.rotation_euler.x = 1.5708  # 90度をラジアンで表現




 

基本系 配布 001 単位円 torus と xyz軸 円柱

https://drive.google.com/file/d/1adh0pC0n5MUfaPnsQcab8CnTvHu_JqLg/view?usp=drive_link

 

基本系 配布 002 単位2長さ balls

https://drive.google.com/file/d/1vyg5oFWmw_TK8nwp5TmVSfLH94I6rTaY/view?usp=drive_link

 

基本系 配布 003 単位2長さ balls 光時計セット 

https://drive.google.com/file/d/1u2Rn_nVBcewe39Vokua9C5n25cdivyyL/view?usp=drive_link

 

blender 基本系 配布 カタログ 2023 - zionad_mainのブログ https://mokuji000zionad.hatenablog.com/entry/2023/07/31/095208 






以下 ChatGPT との対話 修正記録 と メモ・ノート


ああああああああああああああああああああああああああああああああああああああああああああ