Stubbed out subd.butterfly and added testing script

This commit is contained in:
Stephen M. McQuay
2012-05-29 17:33:15 -06:00
parent e85a99e95a
commit 2355deec9f
6 changed files with 40 additions and 11 deletions
+24
View File
@@ -0,0 +1,24 @@
import argparse
import json
from surf.geometry import PolygonMesh
from surf.subd import cc
from surf.subd import butterfly
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Prune orphan PCDs from couchdb')
parser.add_argument('type', choices=('cc', 'butterfly'))
parser.add_argument('mesh')
opt = parser.parse_args()
cube = json.load(open(opt.mesh, 'r'))
p = PolygonMesh(**cube)
if opt.type == 'cc':
refine = cc.refine
else:
refine = butterfly.refine
q = refine(p)
print(q)