controls/DebugVariablePanel/DebugVariableGraphicViewer.py
branchpython3
changeset 3752 9f6f46dbe3ae
parent 3750 f62625418bff
child 3764 d92c1a3dafa7
equal deleted inserted replaced
3751:a80a66ba52d6 3752:9f6f46dbe3ae
    21 # You should have received a copy of the GNU General Public License
    21 # You should have received a copy of the GNU General Public License
    22 # along with this program; if not, write to the Free Software
    22 # along with this program; if not, write to the Free Software
    23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
    23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
    24 
    24 
    25 
    25 
    26 
       
    27 
       
    28 from time import time as gettime
    26 from time import time as gettime
    29 from cycler import cycler
    27 from cycler import cycler
    30 
    28 
    31 import numpy
    29 import numpy
    32 import wx
    30 import wx
    34 import matplotlib.pyplot
    32 import matplotlib.pyplot
    35 from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas
    33 from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas
    36 from matplotlib.backends.backend_wxagg import _convert_agg_to_wx_bitmap
    34 from matplotlib.backends.backend_wxagg import _convert_agg_to_wx_bitmap
    37 from matplotlib.backends.backend_agg import FigureCanvasAgg
    35 from matplotlib.backends.backend_agg import FigureCanvasAgg
    38 from mpl_toolkits.mplot3d import Axes3D
    36 from mpl_toolkits.mplot3d import Axes3D
    39 from six.moves import xrange
       
    40 
    37 
    41 from editors.DebugViewer import REFRESH_PERIOD
    38 from editors.DebugViewer import REFRESH_PERIOD
    42 from controls.DebugVariablePanel.DebugVariableViewer import *
    39 from controls.DebugVariablePanel.DebugVariableViewer import *
    43 from controls.DebugVariablePanel.GraphButton import GraphButton
    40 from controls.DebugVariablePanel.GraphButton import GraphButton
    44 
    41