LoginSignup
3
5

More than 5 years have passed since last update.

Blender Pythonで8*8(64個)のキューブを生成

Last updated at Posted at 2015-10-27
cube.py
import bpy

for x in range(1,9):
    for y in range(1,9):
        bpy.ops.mesh.primitive_cube_add(location=(x*10, y*10, 1))

うっかり生成し過ぎるとPCが落ちます。モデリングが面倒な時にお使いください。

3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5