sine.py
import bpy
import math
for n in xrange(360):
x = n
y = math.sin(n * 20 * math.pi / 180.0) * 10
bpy.ops.mesh.primitive_cube_add(location=(x * 10, y * 10, 1))
3D空間にキューブでsine波を表現できます。3Dステージ作りにお使いください。
Go to list of users who liked
More than 5 years have passed since last update.
import bpy
import math
for n in xrange(360):
x = n
y = math.sin(n * 20 * math.pi / 180.0) * 10
bpy.ops.mesh.primitive_cube_add(location=(x * 10, y * 10, 1))
3D空間にキューブでsine波を表現できます。3Dステージ作りにお使いください。
Register as a new user and use Qiita more conveniently
Go to list of users who liked