Blender PythonでSine波を描画
sine.py import bpy import math for n in xrange(360): x = n y = math.sin(n * 20 * math.pi / 180.0)...
3
5
Comment0
3 search resultsShowing 1~3 results
You need to log-in
sine.py import bpy import math for n in xrange(360): x = n y = math.sin(n * 20 * math.pi / 180.0)...
cube.py import bpy for x in range(1,9): for y in range(1,9): bpy.ops.mesh.primitive_cube_add(loca...
FizzBuzz.py for x in xrange(1,101): if x % 3 is 0 and x % 5 is 0: print "FizzBuzz" elif x < 10...
3 search resultsShowing 1~3 results
Qiita is a knowledge sharing service for engineers.