2023年3月14日火曜日

20230314 tue 大きい円柱の x軸 移動

aaa
import bpy

# コレクション名
collection_name = "Big_Cone"

# コレクションを取得する
collection = bpy.data.collections.get(collection_name)

# コレクションが存在しない場合は作成する
if not collection:
    collection = bpy.data.collections.new(collection_name)
    bpy.context.scene.collection.children.link(collection)

# 円柱を作成し、コレクションに追加する
bpy.ops.mesh.primitive_cylinder_add(radius=300, depth=600, location=(-400, 0, 0))
cylinder_object = bpy.context.object
collection.objects.link(cylinder_object)

# アニメーションのフレーム設定を行う
start_frame = 1  # アニメーションの最初のフレーム
end_frame = int(20 * bpy.context.scene.render.fps)  # 円柱の移動が終わるフレーム
bpy.context.scene.frame_start = start_frame  # アニメーションの開始フレームを設定
bpy.context.scene.frame_end = end_frame  # アニメーションの終了フレームを設定

# キーフレームを設定する
cylinder_object.location = (-400, 0, 0)  # 円柱の開始位置を設定
cylinder_object.keyframe_insert(data_path="location", frame=start_frame)  # 開始フレームでキーフレームを設定
cylinder_object.location = (400, 0, 0)  # 円柱の終了位置を設定
cylinder_object.keyframe_insert(data_path="location", frame=end_frame)  # 終了フレームでキーフレームを設定

# アニメーション再生
bpy.ops.screen.animation_play()  # アニメーションを再生









bbb
togetter.com/t/c2022meetzionad
togetter.com/t/b2022meetzionad




twitter 新着検索 Dürer & 測距儀


aaa









bbb
twitter zionadchat
twitter に追い出されたら 連絡先は Gettr https://gettr.com/user/zionadchat
twitter サブアカウント https://twitter.com/2022zionad

old page いいい
new page いいい

目次 2022の目次 単純トリック hatena zionadchat
いいいいいいいい

伊勢丹 建物広告 球体群 配置 20240323_001

aaa y軸に 球体半径0.1を等間隔に配置して 球体の名前は Sphere_x_y_z で 小数1桁で 座標位置で 名前を作る y=+1から ー1までで 21個の球体で 作る コレクションだけを作って "y軸の球体群" import bpy #...