ゆうは
id:chapone
Blender PythonAPIのsin,cosで螺旋を作る
BlenderのPython APIを勉強中です。 今回は、sin、cosの使い方を調べてみました。 コードの説明 まず、sin、cosを使うためにmathモジュールをインポートします。 sin、cosを使う場合にmathモジュールは必須です。 import bpy import math 書き方は、「math.sin(x)」「math.cos(x)」のように書きます。 また、ラジアンに変…