下記URLのサイトを元にblenderで作りたいのですが、スクリーンショットのようなエラーになりました。何が原因でしょうか。
https://qiita.com/santarou6/items/2856ce018b3ce5627f8f
import
1import math 2 3r = 10 4 5for n in range(0,360,3): 6 7 for rr in [-1.5,-1.2, -0.9, -0.6, -0.3, 0.0, 0.3, 0.6, 0.9, 1.2,1.5]: 8 nn = n / 2 9 x1 = (r) * math.cos(n * math.pi/180) 10 y1 = (r) * math.sin(n * math.pi/180) 11 x2 = x1 + (rr) * math.sin(nn * math.pi/180) * math.cos(n * math.pi/180) 12 y2 = y1 + (rr) * math.sin(nn * math.pi/180) * math.sin(n * math.pi/180) 13 z2 = (rr) * math.cos(nn * math.pi/180) 14 scene = (None,(x2, y2, z2),0.6) 15mesh = bpy.data.meshes.new('mebiusu') 16mesh.from_pydata(r,nn,x1,y1,x2,y2,z2) 17 18obj = bpy.data.objects.new('mebiusu', mesh) 19bpy.context.scene.objects.link(obj) 20 21obj.select = True 22コード
追記:URLのソースコードをそのまま使うにはShade3Dというソフトが必要なのでしょうか。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/06 16:04
2019/11/06 16:30 編集
2019/11/06 16:39 編集
2019/11/07 00:43