2012-03-19 21:18:02 -07:00
|
|
|
from surf.util import cube
|
2012-03-19 19:38:40 -07:00
|
|
|
from surf.subd import cc
|
|
|
|
polygon = cube()
|
|
|
|
refined_poly = cc.refine(polygon)
|
|
|
|
|
|
|
|
print polygon
|
|
|
|
print refined_poly
|
|
|
|
|
2012-03-19 21:18:02 -07:00
|
|
|
#
|
|
|
|
#
|
2012-03-19 19:38:40 -07:00
|
|
|
# import pylab
|
|
|
|
# import mpl_toolkits.mplot3d.axes3d as p3
|
2012-03-19 21:18:02 -07:00
|
|
|
#
|
2012-03-19 19:38:40 -07:00
|
|
|
# fig = pylab.figure()
|
|
|
|
# ax = p3.Axes3D(fig)
|
|
|
|
# for edge in newPolygon.edges:
|
|
|
|
# xs = [vertex.x for vertex in edge.vertices]
|
|
|
|
# ys = [vertex.y for vertex in edge.vertices]
|
|
|
|
# zs = [vertex.z for vertex in edge.vertices]
|
|
|
|
# ax.plot_wireframe(xs, ys, zs)
|
|
|
|
# ax.set_xlabel('X')
|
|
|
|
# ax.set_ylabel('Y')
|
|
|
|
# ax.set_zlabel('Z')
|
|
|
|
# pylab.show()
|