moved some stuff from the smcqdelaunay module into the interp.grid.delaunay module
This commit is contained in:
parent
d01dcf4efc
commit
28672b5ebe
@ -1,23 +0,0 @@
|
|||||||
#!/usr/bin/python
|
|
||||||
|
|
||||||
from subprocess import Popen, PIPE
|
|
||||||
|
|
||||||
def get_qdelaunay_dump(g):
|
|
||||||
cmd = 'qdelaunay Qt f'
|
|
||||||
p = Popen(cmd.split(), bufsize=1, stdin=PIPE, stdout=PIPE)
|
|
||||||
so, se = p.communicate(g.for_qhull())
|
|
||||||
for i in so.splitlines():
|
|
||||||
yield i
|
|
||||||
|
|
||||||
def get_qdelaunay_dump_str(g):
|
|
||||||
return "\n".join(get_qdelaunay_dump(g))
|
|
||||||
|
|
||||||
def get_index_only(g):
|
|
||||||
cmd = 'qdelaunay Qt i'
|
|
||||||
p = Popen(cmd.split(), bufsize=1, stdin=PIPE, stdout=PIPE)
|
|
||||||
so, se = p.communicate(g.for_qhull())
|
|
||||||
for i in so.splitlines():
|
|
||||||
yield i
|
|
||||||
|
|
||||||
def get_index_only_str(g):
|
|
||||||
return "\n".join(get_index_only(g))
|
|
Loading…
Reference in New Issue
Block a user