found a working blender plot script
--HG-- rename : bin/plot.py => tools/blender/plot.py
This commit is contained in:
parent
ccc08454e2
commit
97ed85eda7
15
bin/plot.py
15
bin/plot.py
@ -1,15 +0,0 @@
|
||||
from interp import config
|
||||
import sys
|
||||
sys.path.append(config['pypath'])
|
||||
|
||||
import bpy
|
||||
|
||||
import pickle
|
||||
points = pickle.load(open('/tmp/points.p', 'r'))
|
||||
faces = pickle.load(open('/tmp/cells.p', 'r'))
|
||||
# faces = [faces[i] for i in faces]
|
||||
me = bpy.data.meshes.new('points')
|
||||
me.verts.extend(points)
|
||||
me.faces.extend(faces)
|
||||
scn = bpy.data.scenes.active
|
||||
ob = scn.objects.new(me, 'points_obj')
|
@ -1,11 +1,15 @@
|
||||
import pickle
|
||||
from interp import config
|
||||
import sys
|
||||
sys.path.append(config['pypath'])
|
||||
|
||||
from Blender import *
|
||||
import bpy
|
||||
|
||||
p = pickle.load(open('/tmp/grid_driver.p', 'r'))
|
||||
import pickle
|
||||
points = pickle.load(open('/tmp/points.p', 'r'))
|
||||
faces = pickle.load(open('/tmp/cells.p', 'r'))
|
||||
# faces = [faces[i] for i in faces]
|
||||
me = bpy.data.meshes.new('points')
|
||||
me.verts.extend([[v[0], v[1], 0] for v in p.points])
|
||||
me.faces.extend([i.verts for i in p.faces.itervalues()])
|
||||
me.verts.extend(points)
|
||||
me.faces.extend(faces)
|
||||
scn = bpy.data.scenes.active
|
||||
ob = scn.objects.new(me, 'points_obj')
|
||||
|
Loading…
Reference in New Issue
Block a user