surfaces/bin/iterate.py

26 lines
608 B
Python
Raw Normal View History

import argparse
import json
from surf.geometry import PolygonMesh
from surf.subd import cc
from surf.subd import butterfly
if __name__ == '__main__':
2012-07-13 07:18:34 -07:00
parser = argparse.ArgumentParser(description='Manually subdivide mesh '
'(first argument) and dump json to stdout')
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)