def __init__(self, xmeshfile, ymeshfile):
#Do fast loading bypassing the mesh data structures since geometry
#and topology are never changed
xmesh = PolyMesh()
print "Loading %s..."%xmeshfile
(xmesh.VPos, xmesh.VColors, xmesh.ITris) = loadOffFileExternal(xmeshfile)
xmesh.performDisplayUpdate(True)
ymesh = PolyMesh()
print "Loading %s..."%ymeshfile
(ymesh.VPos, ymesh.VColors, ymesh.ITris) = loadOffFileExternal(ymeshfile)
ymesh.performDisplayUpdate(True)
app = wx.App()
frame = ICPViewerFrame(None, -1, 'ICPViewer', xmesh, ymesh)
frame.Show(True)
app.MainLoop()
app.Destroy()
评论列表
文章目录