This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#-*- coding:utf-8 -*- | |
import BaseHTTPServer | |
import sys | |
import time | |
import urlparse | |
import json | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
A simple example that uses the QVTKRenderWindowInteractor | |
class. | |
""" | |
try: | |
from PySide import QtCore, QtGui | |
except ImportError: | |
try: | |
from PyQt4 import QtCore, QtGui |