import subprocess
try:
import numpy as np
except:
command="pip install numpy"
result = subprocess.check_output(command.split())
print(result)
import numpy as np
A=[[1,2,3],[4,5,6]]
M = np.array(A, int)
for X in (M, np.rot90(M),np.fliplr(M), np.flipud(M)):
print(X)
print('-'*20)
import bpy
for obj in bpy.context.selected_objects:
obj.name='new_name'
import bpy
mat = bpy.data.materials.new('Hoge')
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
texImage = mat.node_tree.nodes.new('ShaderNodeTexMagic')
mat.node_tree.links.new(bsdf.inputs['Base Color'], texImage.outputs['Color'])
ob =bpy.context.view_layer.objects.active #
if ob.data.materials: ob.data.materials[0] = mat
else: ob.data.materials.append(mat)
import bpy
import math
START=0
END=100
N=5
bpy.context.scene.frame_start = START
bpy.context.scene.frame_end = END
# Add a camera
bpy.ops.object.camera_add(
location=(70, -40, 50),
rotation=(1.1, 0, 0.8)
)
# Add color cubes
for x in range(0, N):
for y in range(0, N):
for z in range(0, N):
# Add a color cube
bpy.ops.mesh.primitive_cube_add( location=(x*3, y*3, z*3) )
obj =bpy.context.view_layer.objects.active
mat = bpy.data.materials.new('Cube')
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"].inputs[0].default_value = (x/N, y/N, z/N,1) # color
bsdf = mat.node_tree.nodes["Principled BSDF"].inputs[18].default_value = 0.5 # alpha
mat.blend_method = 'BLEND'
obj.data.materials.append(mat)
# Set the start key frame
bpy.context.scene.frame_set(START)
obj.keyframe_insert( data_path='rotation_euler' )
obj.keyframe_insert( data_path='location' )
# Set the end key frame
bpy.context.scene.frame_set(END)
obj.location = ( (N-x)*3, (N-y)*3, (N-z)*3 )
obj.rotation_euler = (math.pi, math.pi, math.pi)
obj.keyframe_insert( data_path='location' )
obj.keyframe_insert( data_path='rotation_euler' )
import bpy
bpy.context.scene.frame_set(0)
obj =bpy.context.view_layer.objects.active
obj.keyframe_insert(data_path='location')
bpy.context.scene.frame_set(20)
obj.location.z += 1
obj.keyframe_insert(data_path='location')
old_type = bpy.context.area.type
bpy.context.area.type = 'GRAPH_EDITOR'
bpy.ops.graph.interpolation_type(type='LINEAR')
bpy.context.area.type = old_type
bpy.context.scene.frame_end = 20
import bpy
import math
# create a light
bpy.ops.object.light_add(type='POINT', radius=1, align='WORLD', location=(0, 0, 0))
# create a camera
bpy.ops.object.camera_add()
# create a plane
bpy.ops.mesh.primitive_plane_add( location=( 1, 2, 3 ), rotation=( math.pi/3, math.pi/4, math.pi/5 ), )