├── .gitignore ├── .hgignore ├── .nojekyll ├── ChangeLog ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin └── scitools ├── doc ├── api │ └── html │ │ ├── .buildinfo │ │ ├── BoxField.html │ │ ├── BoxGrid.html │ │ ├── EfficiencyTable.html │ │ ├── FloatComparison.html │ │ ├── Lumpy.html │ │ ├── MovingPlotWindow.html │ │ ├── NumPyDB.html │ │ ├── PrmDictBase.html │ │ ├── Regression.html │ │ ├── StringFunction.html │ │ ├── TkGUI.html │ │ ├── _modules │ │ ├── index.html │ │ └── scitools │ │ │ ├── BoxField.html │ │ │ ├── BoxGrid.html │ │ │ ├── EfficiencyTable.html │ │ │ ├── FloatComparison.html │ │ │ ├── Lumpy.html │ │ │ ├── MovingPlotWindow.html │ │ │ ├── NumPyDB.html │ │ │ ├── PrmDictBase.html │ │ │ ├── Regression.html │ │ │ ├── StringFunction.html │ │ │ ├── TkGUI.html │ │ │ ├── aplotter.html │ │ │ ├── avplotter.html │ │ │ ├── configdata.html │ │ │ ├── convergencerate.html │ │ │ ├── debug.html │ │ │ ├── easyviz │ │ │ ├── blt_.html │ │ │ ├── common.html │ │ │ ├── gnuplot_.html │ │ │ ├── grace_.html │ │ │ ├── matlab2_.html │ │ │ ├── matlab_.html │ │ │ ├── matplotlib_.html │ │ │ ├── movie.html │ │ │ ├── pyx_.html │ │ │ ├── template_.html │ │ │ ├── utils.html │ │ │ ├── vtk_.html │ │ │ └── vtk_new_.html │ │ │ ├── errorcheck.html │ │ │ ├── filetable.html │ │ │ ├── misc.html │ │ │ ├── modulecheck.html │ │ │ ├── multipleloop.html │ │ │ ├── numpytools.html │ │ │ ├── numpyutils.html │ │ │ ├── pprint2.html │ │ │ ├── redirect_io.html │ │ │ └── sound.html │ │ ├── _sources │ │ ├── BoxField.txt │ │ ├── BoxGrid.txt │ │ ├── EfficiencyTable.txt │ │ ├── FloatComparison.txt │ │ ├── Lumpy.txt │ │ ├── MovingPlotWindow.txt │ │ ├── NumPyDB.txt │ │ ├── PrmDictBase.txt │ │ ├── Regression.txt │ │ ├── StringFunction.txt │ │ ├── TkGUI.txt │ │ ├── aplotter.txt │ │ ├── avplotter.txt │ │ ├── basics.txt │ │ ├── blt_.txt │ │ ├── common.txt │ │ ├── configdata.txt │ │ ├── convergencerate.txt │ │ ├── debug.txt │ │ ├── dx_.txt │ │ ├── easyviz.txt │ │ ├── errorcheck.txt │ │ ├── filetable.txt │ │ ├── globaldata.txt │ │ ├── gnuplot_.txt │ │ ├── grace_.txt │ │ ├── index.txt │ │ ├── matlab2_.txt │ │ ├── matlab_.txt │ │ ├── matplotlib_.txt │ │ ├── misc.txt │ │ ├── modulecheck.txt │ │ ├── movie.txt │ │ ├── multipleloop.txt │ │ ├── numpytools.txt │ │ ├── numpyutils.txt │ │ ├── pprint2.txt │ │ ├── pyx_.txt │ │ ├── redirect_io.txt │ │ ├── scitools.txt │ │ ├── sound.txt │ │ ├── std.txt │ │ ├── template_.txt │ │ ├── utils.txt │ │ ├── veusz_.txt │ │ ├── visit_.txt │ │ ├── vtk_.txt │ │ └── vtk_new_.txt │ │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── default.css │ │ ├── doctools.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── file.png │ │ ├── jquery.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── scitools_logo.jpg │ │ ├── searchtools.js │ │ ├── sidebar.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ │ ├── aplotter.html │ │ ├── avplotter.html │ │ ├── basics.html │ │ ├── blt_.html │ │ ├── common.html │ │ ├── configdata.html │ │ ├── convergencerate.html │ │ ├── debug.html │ │ ├── dx_.html │ │ ├── easyviz.html │ │ ├── errorcheck.html │ │ ├── figs │ │ ├── contour3_ex1.eps │ │ ├── contour3_ex1.png │ │ ├── contour_ex1.eps │ │ ├── contour_ex1.png │ │ ├── contour_ex2.eps │ │ ├── contour_ex2.png │ │ ├── contour_ex3.eps │ │ ├── contour_ex3.png │ │ ├── contourf_ex1.eps │ │ ├── contourf_ex1.png │ │ ├── contourslice1.eps │ │ ├── contourslice1.png │ │ ├── contourslice3.eps │ │ ├── contourslice3.png │ │ ├── isosurface1.eps │ │ ├── isosurface1.png │ │ ├── isosurface2.eps │ │ ├── isosurface2.png │ │ ├── mesh_ex1.eps │ │ ├── mesh_ex1.png │ │ ├── meshc_ex1.eps │ │ ├── meshc_ex1.png │ │ ├── pcolor_ex1.eps │ │ ├── pcolor_ex1.png │ │ ├── plot1a.eps │ │ ├── plot1a.png │ │ ├── plot1c.eps │ │ ├── plot1c.png │ │ ├── plot2a.eps │ │ ├── plot2a.png │ │ ├── plot2c.eps │ │ ├── plot2c.png │ │ ├── plot2e.eps │ │ ├── plot2f.eps │ │ ├── plot2f.png │ │ ├── plot2g.eps │ │ ├── plot2g.png │ │ ├── plot2i.eps │ │ ├── plot2i.png │ │ ├── plot2l.eps │ │ ├── plot2l.png │ │ ├── plot3.eps │ │ ├── plot3.png │ │ ├── plot4.eps │ │ ├── plot4.png │ │ ├── pyranking.eps │ │ ├── pyranking.png │ │ ├── quiver3_ex1.eps │ │ ├── quiver3_ex1.png │ │ ├── quiver_ex1.eps │ │ ├── quiver_ex1.png │ │ ├── quiver_ex2.eps │ │ ├── quiver_ex2.png │ │ ├── quiver_ex3.eps │ │ ├── quiver_ex3.png │ │ ├── slice1.eps │ │ ├── slice1.png │ │ ├── streamline_ex1.eps │ │ ├── streamline_ex1.jpeg │ │ ├── streamline_ex1.png │ │ ├── streamribbon_ex1.eps │ │ ├── streamribbon_ex1.png │ │ ├── streamtube_ex1.eps │ │ ├── streamtube_ex1.png │ │ ├── surf_ex1.eps │ │ ├── surf_ex1.png │ │ ├── surf_ex2.eps │ │ ├── surf_ex2.png │ │ ├── surfc_ex1.eps │ │ └── surfc_ex1.png │ │ ├── filetable.html │ │ ├── genindex.html │ │ ├── globaldata.html │ │ ├── gnuplot_.html │ │ ├── grace_.html │ │ ├── html │ │ ├── .buildinfo │ │ ├── BoxField.html │ │ ├── BoxGrid.html │ │ ├── EfficiencyTable.html │ │ ├── FloatComparison.html │ │ ├── Lumpy.html │ │ ├── MovingPlotWindow.html │ │ ├── NumPyDB.html │ │ ├── PrmDictBase.html │ │ ├── Regression.html │ │ ├── StringFunction.html │ │ ├── TkGUI.html │ │ ├── _modules │ │ │ ├── index.html │ │ │ └── scitools │ │ │ │ ├── BoxField.html │ │ │ │ ├── BoxGrid.html │ │ │ │ ├── EfficiencyTable.html │ │ │ │ ├── FloatComparison.html │ │ │ │ ├── Lumpy.html │ │ │ │ ├── MovingPlotWindow.html │ │ │ │ ├── NumPyDB.html │ │ │ │ ├── PrmDictBase.html │ │ │ │ ├── Regression.html │ │ │ │ ├── StringFunction.html │ │ │ │ ├── TkGUI.html │ │ │ │ ├── aplotter.html │ │ │ │ ├── configdata.html │ │ │ │ ├── convergencerate.html │ │ │ │ ├── debug.html │ │ │ │ ├── easyviz │ │ │ │ ├── blt_.html │ │ │ │ ├── common.html │ │ │ │ ├── gnuplot_.html │ │ │ │ ├── grace_.html │ │ │ │ ├── matlab2_.html │ │ │ │ ├── matlab_.html │ │ │ │ ├── matplotlib_.html │ │ │ │ ├── movie.html │ │ │ │ ├── pyx_.html │ │ │ │ ├── template_.html │ │ │ │ ├── utils.html │ │ │ │ └── vtk_.html │ │ │ │ ├── errorcheck.html │ │ │ │ ├── filetable.html │ │ │ │ ├── misc.html │ │ │ │ ├── modulecheck.html │ │ │ │ ├── multipleloop.html │ │ │ │ ├── numpytools.html │ │ │ │ ├── numpyutils.html │ │ │ │ ├── pprint2.html │ │ │ │ ├── redirect_io.html │ │ │ │ └── sound.html │ │ ├── _sources │ │ │ ├── BoxField.txt │ │ │ ├── BoxGrid.txt │ │ │ ├── EfficiencyTable.txt │ │ │ ├── FloatComparison.txt │ │ │ ├── Lumpy.txt │ │ │ ├── MovingPlotWindow.txt │ │ │ ├── NumPyDB.txt │ │ │ ├── PrmDictBase.txt │ │ │ ├── Regression.txt │ │ │ ├── StringFunction.txt │ │ │ ├── TkGUI.txt │ │ │ ├── aplotter.txt │ │ │ ├── avplotter.txt │ │ │ ├── basics.txt │ │ │ ├── blt_.txt │ │ │ ├── common.txt │ │ │ ├── configdata.txt │ │ │ ├── convergencerate.txt │ │ │ ├── debug.txt │ │ │ ├── dx_.txt │ │ │ ├── easyviz.txt │ │ │ ├── errorcheck.txt │ │ │ ├── filetable.txt │ │ │ ├── globaldata.txt │ │ │ ├── gnuplot_.txt │ │ │ ├── grace_.txt │ │ │ ├── index.txt │ │ │ ├── matlab2_.txt │ │ │ ├── matlab_.txt │ │ │ ├── matplotlib_.txt │ │ │ ├── misc.txt │ │ │ ├── modulecheck.txt │ │ │ ├── movie.txt │ │ │ ├── multipleloop.txt │ │ │ ├── numpytools.txt │ │ │ ├── numpyutils.txt │ │ │ ├── pprint2.txt │ │ │ ├── pyx_.txt │ │ │ ├── redirect_io.txt │ │ │ ├── scitools.txt │ │ │ ├── sound.txt │ │ │ ├── std.txt │ │ │ ├── template_.txt │ │ │ ├── utils.txt │ │ │ ├── veusz_.txt │ │ │ ├── visit_.txt │ │ │ ├── vtk_.txt │ │ │ └── vtk_new_.txt │ │ ├── _static │ │ │ ├── ajax-loader.gif │ │ │ ├── basic.css │ │ │ ├── comment-bright.png │ │ │ ├── comment-close.png │ │ │ ├── comment.png │ │ │ ├── default.css │ │ │ ├── doctools.js │ │ │ ├── down-pressed.png │ │ │ ├── down.png │ │ │ ├── file.png │ │ │ ├── jquery.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── scitools_logo.jpg │ │ │ ├── searchtools.js │ │ │ ├── sidebar.js │ │ │ ├── underscore.js │ │ │ ├── up-pressed.png │ │ │ ├── up.png │ │ │ └── websupport.js │ │ ├── aplotter.html │ │ ├── avplotter.html │ │ ├── basics.html │ │ ├── blt_.html │ │ ├── common.html │ │ ├── configdata.html │ │ ├── convergencerate.html │ │ ├── debug.html │ │ ├── dx_.html │ │ ├── easyviz.html │ │ ├── errorcheck.html │ │ ├── filetable.html │ │ ├── genindex.html │ │ ├── globaldata.html │ │ ├── gnuplot_.html │ │ ├── grace_.html │ │ ├── index.html │ │ ├── matlab2_.html │ │ ├── matlab_.html │ │ ├── matplotlib_.html │ │ ├── misc.html │ │ ├── modulecheck.html │ │ ├── movie.html │ │ ├── multipleloop.html │ │ ├── np-modindex.html │ │ ├── numpytools.html │ │ ├── numpyutils.html │ │ ├── objects.inv │ │ ├── pprint2.html │ │ ├── py-modindex.html │ │ ├── pyx_.html │ │ ├── redirect_io.html │ │ ├── scitools.html │ │ ├── search.html │ │ ├── searchindex.js │ │ ├── sound.html │ │ ├── std.html │ │ ├── template_.html │ │ ├── utils.html │ │ ├── veusz_.html │ │ ├── visit_.html │ │ ├── vtk_.html │ │ └── vtk_new_.html │ │ ├── index.html │ │ ├── matlab2_.html │ │ ├── matlab_.html │ │ ├── matplotlib_.html │ │ ├── misc.html │ │ ├── modindex.html │ │ ├── modulecheck.html │ │ ├── movie.html │ │ ├── multipleloop.html │ │ ├── np-modindex.html │ │ ├── numpytools.html │ │ ├── numpyutils.html │ │ ├── objects.inv │ │ ├── pprint2.html │ │ ├── py-modindex.html │ │ ├── pyx_.html │ │ ├── redirect_io.html │ │ ├── scitools.html │ │ ├── search.html │ │ ├── searchindex.js │ │ ├── sound.html │ │ ├── std.html │ │ ├── template_.html │ │ ├── utils.html │ │ ├── veusz_.html │ │ ├── visit_.html │ │ ├── vtk_.html │ │ └── vtk_new_.html ├── easyviz │ ├── easyviz.do.txt │ ├── easyviz.gwiki │ ├── easyviz.html │ ├── easyviz.pdf │ ├── easyviz.txt │ ├── easyviz_rst.html │ ├── easyviz_sphinx.pdf │ ├── easyviz_sphinx_html │ │ ├── .buildinfo │ │ ├── _sources │ │ │ └── index.txt │ │ ├── _static │ │ │ ├── ajax-loader.gif │ │ │ ├── basic.css │ │ │ ├── comment-bright.png │ │ │ ├── comment-close.png │ │ │ ├── comment.png │ │ │ ├── default.css │ │ │ ├── doctools.js │ │ │ ├── down-pressed.png │ │ │ ├── down.png │ │ │ ├── file.png │ │ │ ├── jquery.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── sidebar.js │ │ │ ├── underscore.js │ │ │ ├── up-pressed.png │ │ │ ├── up.png │ │ │ └── websupport.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── search.html │ │ ├── searchindex.js │ │ └── tmp_easyviz.html │ └── figs │ │ ├── contour3_ex1.png │ │ ├── contour_ex1.png │ │ ├── contour_ex2.png │ │ ├── contour_ex3.png │ │ ├── contourf_ex1.png │ │ ├── contourslice1.png │ │ ├── contourslice3.png │ │ ├── isosurface1.png │ │ ├── isosurface2.png │ │ ├── mesh_ex1.png │ │ ├── meshc_ex1.png │ │ ├── pcolor_ex1.png │ │ ├── plot1a.png │ │ ├── plot1c.png │ │ ├── plot2a.png │ │ ├── plot2c.png │ │ ├── plot2f.png │ │ ├── plot2g.png │ │ ├── plot2i.png │ │ ├── plot2l.png │ │ ├── pyranking.png │ │ ├── quiver3_ex1.png │ │ ├── quiver_ex1.png │ │ ├── quiver_ex2.png │ │ ├── quiver_ex3.png │ │ ├── slice1.png │ │ ├── streamline_ex1.jpeg │ │ ├── streamline_ex1.png │ │ ├── streamribbon_ex1.png │ │ ├── streamtube_ex1.png │ │ ├── surf_ex1.png │ │ ├── surf_ex2.png │ │ └── surfc_ex1.png ├── man │ └── man1 │ │ └── scitools.1.gz ├── src │ ├── api-sphinx │ │ ├── 00README │ │ ├── BoxField.txt │ │ ├── BoxGrid.txt │ │ ├── EfficiencyTable.txt │ │ ├── FloatComparison.txt │ │ ├── Lumpy.txt │ │ ├── Makefile │ │ ├── MovingPlotWindow.txt │ │ ├── NumPyDB.txt │ │ ├── PrmDictBase.txt │ │ ├── Regression.txt │ │ ├── StringFunction.txt │ │ ├── TkGUI.txt │ │ ├── aplotter.txt │ │ ├── avplotter.txt │ │ ├── basics.txt │ │ ├── blt_.txt │ │ ├── clean.sh │ │ ├── common.txt │ │ ├── conf.py │ │ ├── conf.py-orig │ │ ├── configdata.txt │ │ ├── convergencerate.txt │ │ ├── debug.txt │ │ ├── dx_.txt │ │ ├── easyviz.txt │ │ ├── errorcheck.txt │ │ ├── filetable.txt │ │ ├── generate.sh │ │ ├── globaldata.txt │ │ ├── gnuplot_.txt │ │ ├── grace_.txt │ │ ├── index.txt │ │ ├── index.txt-orig │ │ ├── make_txt.py │ │ ├── matlab2_.txt │ │ ├── matlab_.txt │ │ ├── matplotlib_.txt │ │ ├── misc.txt │ │ ├── modulecheck.txt │ │ ├── movie.txt │ │ ├── multipleloop.txt │ │ ├── numpytools.txt │ │ ├── numpyutils.txt │ │ ├── pprint2.txt │ │ ├── pyx_.txt │ │ ├── redirect_io.txt │ │ ├── scitools.txt │ │ ├── scitools_logo.jpg │ │ ├── sound.txt │ │ ├── std.txt │ │ ├── template_.txt │ │ ├── update.sh │ │ ├── utils.txt │ │ ├── veusz_.txt │ │ ├── visit_.txt │ │ ├── vtk_.txt │ │ └── vtk_new_.txt │ ├── clean.sh │ └── easyviz │ │ ├── .ptex2tex.cfg │ │ ├── clean.sh │ │ ├── easyviz.do.txt │ │ ├── easyviz_2D3D.do.txt │ │ ├── easyviz_backends.do.txt │ │ ├── easyviz_bars.do.txt │ │ ├── easyviz_design.do.txt │ │ ├── easyviz_install.do.txt │ │ ├── easyviz_intro.do.txt │ │ ├── easyviz_trouble.do.txt │ │ ├── easyviz_tutorial.do.txt │ │ ├── figs │ │ ├── contour3_ex1.eps │ │ ├── contour3_ex1.png │ │ ├── contour_ex1.eps │ │ ├── contour_ex1.png │ │ ├── contour_ex2.eps │ │ ├── contour_ex2.png │ │ ├── contour_ex3.eps │ │ ├── contour_ex3.png │ │ ├── contourf_ex1.eps │ │ ├── contourf_ex1.png │ │ ├── contourslice1.eps │ │ ├── contourslice1.png │ │ ├── contourslice3.eps │ │ ├── contourslice3.png │ │ ├── isosurface1.eps │ │ ├── isosurface1.png │ │ ├── isosurface2.eps │ │ ├── isosurface2.png │ │ ├── mesh_ex1.eps │ │ ├── mesh_ex1.png │ │ ├── meshc_ex1.eps │ │ ├── meshc_ex1.png │ │ ├── pcolor_ex1.eps │ │ ├── pcolor_ex1.png │ │ ├── plot1a.eps │ │ ├── plot1a.png │ │ ├── plot1a2.eps │ │ ├── plot1a2.png │ │ ├── plot1a_g.eps │ │ ├── plot1a_g.png │ │ ├── plot1a_m.eps │ │ ├── plot1a_m.png │ │ ├── plot1c.eps │ │ ├── plot1c.png │ │ ├── plot1d.eps │ │ ├── plot1d.png │ │ ├── plot1e.eps │ │ ├── plot1e.png │ │ ├── plot2a.eps │ │ ├── plot2a.png │ │ ├── plot2c.eps │ │ ├── plot2c.png │ │ ├── plot2e.eps │ │ ├── plot2f.eps │ │ ├── plot2f.png │ │ ├── plot2g.eps │ │ ├── plot2g.png │ │ ├── plot2i.eps │ │ ├── plot2i.png │ │ ├── plot2l.eps │ │ ├── plot2l.png │ │ ├── plot2p.eps │ │ ├── plot2p.png │ │ ├── plot2q.eps │ │ ├── plot2q.png │ │ ├── plot3_demo.eps │ │ ├── plot3_demo.png │ │ ├── pyranking.eps │ │ ├── pyranking.png │ │ ├── quiver3_ex1.eps │ │ ├── quiver3_ex1.png │ │ ├── quiver_ex1.eps │ │ ├── quiver_ex1.png │ │ ├── quiver_ex2.eps │ │ ├── quiver_ex2.png │ │ ├── quiver_ex3.eps │ │ ├── quiver_ex3.png │ │ ├── slice1.eps │ │ ├── slice1.png │ │ ├── streamline_ex1.eps │ │ ├── streamline_ex1.jpeg │ │ ├── streamline_ex1.png │ │ ├── streamribbon_ex1.eps │ │ ├── streamribbon_ex1.png │ │ ├── streamtube_ex1.eps │ │ ├── streamtube_ex1.png │ │ ├── surf_ex1.eps │ │ ├── surf_ex1.png │ │ ├── surf_ex2.eps │ │ ├── surf_ex2.png │ │ ├── surfc_ex1.eps │ │ └── surfc_ex1.png │ │ ├── index-sphinx │ │ └── make.sh └── web │ ├── index.html │ ├── javascripts │ └── main.js │ ├── params.json │ └── stylesheets │ ├── github-light.css │ └── stylesheet.css ├── examples ├── README ├── axes_demo.py ├── bar_demo.py ├── clean.sh ├── compatibility_checks.py ├── contour_demo.py ├── contourslice_demo1.py ├── contourslice_demo2.py ├── demo_pyreport.py ├── demo_pyreport.sh ├── fill_demo.py ├── grab_backend_demo.py ├── grab_backend_matplotlib_ex1.py ├── grab_backend_matplotlib_ex2.py ├── isosurface_demo1.py ├── isosurface_demo2.py ├── isosurface_demo3.py ├── math_text.py ├── matlab2_demo.py ├── mesh_demo.py ├── movie_demo1.py ├── movie_demo2.py ├── mri_matlab_v6.mat ├── plot0a.py ├── plot0b.py ├── plot1a.py ├── plot1a2.py ├── plot1b.py ├── plot1c.py ├── plot1d.py ├── plot1e.py ├── plot2a.py ├── plot2b.py ├── plot2c.py ├── plot2d.py ├── plot2e.py ├── plot2f.py ├── plot2g.py ├── plot2i.py ├── plot2j.py ├── plot2k.py ├── plot2l.py ├── plot2m.py ├── plot2n.py ├── plot2o.py ├── plot2p.py ├── plot2q.py ├── plot2r.py ├── plot3_demo.py ├── plot_ascii.py ├── problems_aspect_colorbar.py ├── quiver_demo1.py ├── quiver_demo2.py ├── rotate_vector.py ├── rows_of_matrix.py ├── runall.py ├── slice_demo1.py ├── slice_demo2.py ├── streamline_demo1.py ├── streamline_demo2.py ├── streamline_demo3.py ├── streamribbon_demo1.py ├── streamribbon_demo2.py ├── streamtube_demo1.py ├── streamtube_demo2.py ├── subplot_demo.py ├── subplot_demo2.py ├── surf_demo0.py ├── surf_demo1.py ├── surf_demo2.py ├── topo_matlab_v6.mat └── wind_matlab_v6.mat ├── images ├── bg_hr.png ├── blacktocat.png ├── icon_download.png └── sprite_download.png ├── install_egg ├── lib ├── scitools │ ├── BoxField.py │ ├── BoxGrid.py │ ├── EfficiencyTable.py │ ├── FloatComparison.py │ ├── Heaviside.py │ ├── Lumpy.py │ ├── MovingPlotWindow.py │ ├── NumPyDB.py │ ├── ODE.py │ ├── PrmDictBase.py │ ├── Regression.py │ ├── StringFunction.py │ ├── TkGUI.py │ ├── _Gui.py │ ├── __init__.py │ ├── _numpyload.py │ ├── aplotter.py │ ├── avplotter.py │ ├── basics.py │ ├── configdata.py │ ├── convergencerate.py │ ├── debug.py │ ├── easyviz │ │ ├── __init__.p.py │ │ ├── __init__.py │ │ ├── blt_.py │ │ ├── common.py │ │ ├── dx_.py │ │ ├── gnuplot_.py │ │ ├── grace_.py │ │ ├── matlab2_.py │ │ ├── matlab_.py │ │ ├── matplotlib_.py │ │ ├── misc.py │ │ ├── movie.py │ │ ├── pyx_.py │ │ ├── template_.py │ │ ├── tests │ │ │ ├── easyviztest.py │ │ │ ├── runalltests.py │ │ │ ├── test_axis.py │ │ │ ├── test_box.py │ │ │ ├── test_caxis.py │ │ │ ├── test_colorbar.py │ │ │ ├── test_colormap.py │ │ │ ├── test_contour.py │ │ │ ├── test_contour3.py │ │ │ ├── test_grid.py │ │ │ ├── test_labels.py │ │ │ ├── test_legend.py │ │ │ ├── test_mesh.py │ │ │ ├── test_plot.py │ │ │ ├── test_plot3.py │ │ │ ├── test_quiver.py │ │ │ ├── test_subplot.py │ │ │ ├── test_surf.py │ │ │ └── test_view.py │ │ ├── utils.py │ │ ├── veusz_.py │ │ ├── visit_.py │ │ ├── vtk_.py │ │ └── vtk_new_.py │ ├── errorcheck.py │ ├── filetable.py │ ├── globaldata.py │ ├── materials.py │ ├── misc.py │ ├── modulecheck.py │ ├── multipleloop.py │ ├── numpytools.p.py │ ├── numpytools.py │ ├── numpyutils.py │ ├── pprint2.py │ ├── pyreport │ │ ├── __init__.py │ │ ├── code_hasher.py │ │ ├── main.py │ │ ├── options.py │ │ ├── pyreport.py │ │ ├── python_parser.py │ │ └── version.py │ ├── redirect_io.py │ ├── scitools.cfg │ ├── sound.py │ └── std.py └── stcopy │ └── __init__.py ├── misc ├── build_scitools++.py ├── diagnostic.py └── makedist ├── scitools++_setup.py ├── scitools.conf ├── setup.py ├── setupegg.py └── test ├── _cpu.py ├── _movie1.py ├── _test1.verify-test ├── clean.sh ├── scitools_demo ├── test_numpyutils.py ├── verify1.r └── verify1.verify /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/.hgignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/README.md -------------------------------------------------------------------------------- /bin/scitools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/bin/scitools -------------------------------------------------------------------------------- /doc/api/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/.buildinfo -------------------------------------------------------------------------------- /doc/api/html/BoxField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/BoxField.html -------------------------------------------------------------------------------- /doc/api/html/BoxGrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/BoxGrid.html -------------------------------------------------------------------------------- /doc/api/html/EfficiencyTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/EfficiencyTable.html -------------------------------------------------------------------------------- /doc/api/html/FloatComparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/FloatComparison.html -------------------------------------------------------------------------------- /doc/api/html/Lumpy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/Lumpy.html -------------------------------------------------------------------------------- /doc/api/html/MovingPlotWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/MovingPlotWindow.html -------------------------------------------------------------------------------- /doc/api/html/NumPyDB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/NumPyDB.html -------------------------------------------------------------------------------- /doc/api/html/PrmDictBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/PrmDictBase.html -------------------------------------------------------------------------------- /doc/api/html/Regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/Regression.html -------------------------------------------------------------------------------- /doc/api/html/StringFunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/StringFunction.html -------------------------------------------------------------------------------- /doc/api/html/TkGUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/TkGUI.html -------------------------------------------------------------------------------- /doc/api/html/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/index.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/BoxField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/BoxField.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/BoxGrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/BoxGrid.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/EfficiencyTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/EfficiencyTable.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/FloatComparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/FloatComparison.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/Lumpy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/Lumpy.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/MovingPlotWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/MovingPlotWindow.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/NumPyDB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/NumPyDB.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/PrmDictBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/PrmDictBase.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/Regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/Regression.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/StringFunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/StringFunction.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/TkGUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/TkGUI.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/aplotter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/aplotter.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/avplotter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/avplotter.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/configdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/configdata.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/convergencerate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/convergencerate.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/debug.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/blt_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/blt_.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/common.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/gnuplot_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/gnuplot_.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/grace_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/grace_.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/matlab2_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/matlab2_.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/matlab_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/matlab_.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/matplotlib_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/matplotlib_.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/movie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/movie.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/pyx_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/pyx_.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/template_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/template_.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/utils.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/vtk_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/vtk_.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/easyviz/vtk_new_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/easyviz/vtk_new_.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/errorcheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/errorcheck.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/filetable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/filetable.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/misc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/misc.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/modulecheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/modulecheck.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/multipleloop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/multipleloop.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/numpytools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/numpytools.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/numpyutils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/numpyutils.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/pprint2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/pprint2.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/redirect_io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/redirect_io.html -------------------------------------------------------------------------------- /doc/api/html/_modules/scitools/sound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_modules/scitools/sound.html -------------------------------------------------------------------------------- /doc/api/html/_sources/BoxField.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/BoxField.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/BoxGrid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/BoxGrid.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/EfficiencyTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/EfficiencyTable.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/FloatComparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/FloatComparison.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/Lumpy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/Lumpy.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/MovingPlotWindow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/MovingPlotWindow.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/NumPyDB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/NumPyDB.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/PrmDictBase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/PrmDictBase.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/Regression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/Regression.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/StringFunction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/StringFunction.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/TkGUI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/TkGUI.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/aplotter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/aplotter.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/avplotter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/avplotter.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/basics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/basics.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/blt_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/blt_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/common.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/configdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/configdata.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/convergencerate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/convergencerate.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/debug.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/dx_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/dx_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/easyviz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/easyviz.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/errorcheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/errorcheck.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/filetable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/filetable.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/globaldata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/globaldata.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/gnuplot_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/gnuplot_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/grace_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/grace_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/index.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/matlab2_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/matlab2_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/matlab_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/matlab_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/matplotlib_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/matplotlib_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/misc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/misc.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/modulecheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/modulecheck.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/movie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/movie.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/multipleloop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/multipleloop.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/numpytools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/numpytools.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/numpyutils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/numpyutils.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/pprint2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/pprint2.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/pyx_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/pyx_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/redirect_io.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/redirect_io.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/scitools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/scitools.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/sound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/sound.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/std.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/std.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/template_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/template_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/utils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/utils.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/veusz_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/veusz_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/visit_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/visit_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/vtk_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/vtk_.txt -------------------------------------------------------------------------------- /doc/api/html/_sources/vtk_new_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_sources/vtk_new_.txt -------------------------------------------------------------------------------- /doc/api/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /doc/api/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/basic.css -------------------------------------------------------------------------------- /doc/api/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/comment-bright.png -------------------------------------------------------------------------------- /doc/api/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/comment-close.png -------------------------------------------------------------------------------- /doc/api/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/comment.png -------------------------------------------------------------------------------- /doc/api/html/_static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/default.css -------------------------------------------------------------------------------- /doc/api/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/doctools.js -------------------------------------------------------------------------------- /doc/api/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/down-pressed.png -------------------------------------------------------------------------------- /doc/api/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/down.png -------------------------------------------------------------------------------- /doc/api/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/file.png -------------------------------------------------------------------------------- /doc/api/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/jquery.js -------------------------------------------------------------------------------- /doc/api/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/minus.png -------------------------------------------------------------------------------- /doc/api/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/plus.png -------------------------------------------------------------------------------- /doc/api/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/pygments.css -------------------------------------------------------------------------------- /doc/api/html/_static/scitools_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/scitools_logo.jpg -------------------------------------------------------------------------------- /doc/api/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/searchtools.js -------------------------------------------------------------------------------- /doc/api/html/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/sidebar.js -------------------------------------------------------------------------------- /doc/api/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/underscore.js -------------------------------------------------------------------------------- /doc/api/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/up-pressed.png -------------------------------------------------------------------------------- /doc/api/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/up.png -------------------------------------------------------------------------------- /doc/api/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/_static/websupport.js -------------------------------------------------------------------------------- /doc/api/html/aplotter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/aplotter.html -------------------------------------------------------------------------------- /doc/api/html/avplotter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/avplotter.html -------------------------------------------------------------------------------- /doc/api/html/basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/basics.html -------------------------------------------------------------------------------- /doc/api/html/blt_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/blt_.html -------------------------------------------------------------------------------- /doc/api/html/common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/common.html -------------------------------------------------------------------------------- /doc/api/html/configdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/configdata.html -------------------------------------------------------------------------------- /doc/api/html/convergencerate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/convergencerate.html -------------------------------------------------------------------------------- /doc/api/html/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/debug.html -------------------------------------------------------------------------------- /doc/api/html/dx_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/dx_.html -------------------------------------------------------------------------------- /doc/api/html/easyviz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/easyviz.html -------------------------------------------------------------------------------- /doc/api/html/errorcheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/errorcheck.html -------------------------------------------------------------------------------- /doc/api/html/figs/contour3_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contour3_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/contour3_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contour3_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/contour_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contour_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/contour_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contour_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/contour_ex2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contour_ex2.eps -------------------------------------------------------------------------------- /doc/api/html/figs/contour_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contour_ex2.png -------------------------------------------------------------------------------- /doc/api/html/figs/contour_ex3.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contour_ex3.eps -------------------------------------------------------------------------------- /doc/api/html/figs/contour_ex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contour_ex3.png -------------------------------------------------------------------------------- /doc/api/html/figs/contourf_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contourf_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/contourf_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contourf_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/contourslice1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contourslice1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/contourslice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contourslice1.png -------------------------------------------------------------------------------- /doc/api/html/figs/contourslice3.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contourslice3.eps -------------------------------------------------------------------------------- /doc/api/html/figs/contourslice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/contourslice3.png -------------------------------------------------------------------------------- /doc/api/html/figs/isosurface1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/isosurface1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/isosurface1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/isosurface1.png -------------------------------------------------------------------------------- /doc/api/html/figs/isosurface2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/isosurface2.eps -------------------------------------------------------------------------------- /doc/api/html/figs/isosurface2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/isosurface2.png -------------------------------------------------------------------------------- /doc/api/html/figs/mesh_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/mesh_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/mesh_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/mesh_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/meshc_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/meshc_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/meshc_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/meshc_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/pcolor_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/pcolor_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/pcolor_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/pcolor_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/plot1a.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot1a.eps -------------------------------------------------------------------------------- /doc/api/html/figs/plot1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot1a.png -------------------------------------------------------------------------------- /doc/api/html/figs/plot1c.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot1c.eps -------------------------------------------------------------------------------- /doc/api/html/figs/plot1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot1c.png -------------------------------------------------------------------------------- /doc/api/html/figs/plot2a.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2a.eps -------------------------------------------------------------------------------- /doc/api/html/figs/plot2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2a.png -------------------------------------------------------------------------------- /doc/api/html/figs/plot2c.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2c.eps -------------------------------------------------------------------------------- /doc/api/html/figs/plot2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2c.png -------------------------------------------------------------------------------- /doc/api/html/figs/plot2e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2e.eps -------------------------------------------------------------------------------- /doc/api/html/figs/plot2f.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2f.eps -------------------------------------------------------------------------------- /doc/api/html/figs/plot2f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2f.png -------------------------------------------------------------------------------- /doc/api/html/figs/plot2g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2g.eps -------------------------------------------------------------------------------- /doc/api/html/figs/plot2g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2g.png -------------------------------------------------------------------------------- /doc/api/html/figs/plot2i.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2i.eps -------------------------------------------------------------------------------- /doc/api/html/figs/plot2i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2i.png -------------------------------------------------------------------------------- /doc/api/html/figs/plot2l.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2l.eps -------------------------------------------------------------------------------- /doc/api/html/figs/plot2l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot2l.png -------------------------------------------------------------------------------- /doc/api/html/figs/plot3.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot3.eps -------------------------------------------------------------------------------- /doc/api/html/figs/plot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot3.png -------------------------------------------------------------------------------- /doc/api/html/figs/plot4.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot4.eps -------------------------------------------------------------------------------- /doc/api/html/figs/plot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/plot4.png -------------------------------------------------------------------------------- /doc/api/html/figs/pyranking.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/pyranking.eps -------------------------------------------------------------------------------- /doc/api/html/figs/pyranking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/pyranking.png -------------------------------------------------------------------------------- /doc/api/html/figs/quiver3_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/quiver3_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/quiver3_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/quiver3_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/quiver_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/quiver_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/quiver_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/quiver_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/quiver_ex2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/quiver_ex2.eps -------------------------------------------------------------------------------- /doc/api/html/figs/quiver_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/quiver_ex2.png -------------------------------------------------------------------------------- /doc/api/html/figs/quiver_ex3.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/quiver_ex3.eps -------------------------------------------------------------------------------- /doc/api/html/figs/quiver_ex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/quiver_ex3.png -------------------------------------------------------------------------------- /doc/api/html/figs/slice1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/slice1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/slice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/slice1.png -------------------------------------------------------------------------------- /doc/api/html/figs/streamline_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/streamline_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/streamline_ex1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/streamline_ex1.jpeg -------------------------------------------------------------------------------- /doc/api/html/figs/streamline_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/streamline_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/streamribbon_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/streamribbon_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/streamribbon_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/streamribbon_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/streamtube_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/streamtube_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/streamtube_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/streamtube_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/surf_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/surf_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/surf_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/surf_ex1.png -------------------------------------------------------------------------------- /doc/api/html/figs/surf_ex2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/surf_ex2.eps -------------------------------------------------------------------------------- /doc/api/html/figs/surf_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/surf_ex2.png -------------------------------------------------------------------------------- /doc/api/html/figs/surfc_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/surfc_ex1.eps -------------------------------------------------------------------------------- /doc/api/html/figs/surfc_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/figs/surfc_ex1.png -------------------------------------------------------------------------------- /doc/api/html/filetable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/filetable.html -------------------------------------------------------------------------------- /doc/api/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/genindex.html -------------------------------------------------------------------------------- /doc/api/html/globaldata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/globaldata.html -------------------------------------------------------------------------------- /doc/api/html/gnuplot_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/gnuplot_.html -------------------------------------------------------------------------------- /doc/api/html/grace_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/grace_.html -------------------------------------------------------------------------------- /doc/api/html/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/.buildinfo -------------------------------------------------------------------------------- /doc/api/html/html/BoxField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/BoxField.html -------------------------------------------------------------------------------- /doc/api/html/html/BoxGrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/BoxGrid.html -------------------------------------------------------------------------------- /doc/api/html/html/EfficiencyTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/EfficiencyTable.html -------------------------------------------------------------------------------- /doc/api/html/html/FloatComparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/FloatComparison.html -------------------------------------------------------------------------------- /doc/api/html/html/Lumpy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/Lumpy.html -------------------------------------------------------------------------------- /doc/api/html/html/MovingPlotWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/MovingPlotWindow.html -------------------------------------------------------------------------------- /doc/api/html/html/NumPyDB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/NumPyDB.html -------------------------------------------------------------------------------- /doc/api/html/html/PrmDictBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/PrmDictBase.html -------------------------------------------------------------------------------- /doc/api/html/html/Regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/Regression.html -------------------------------------------------------------------------------- /doc/api/html/html/StringFunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/StringFunction.html -------------------------------------------------------------------------------- /doc/api/html/html/TkGUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/TkGUI.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/index.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/BoxField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/BoxField.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/BoxGrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/BoxGrid.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/EfficiencyTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/EfficiencyTable.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/FloatComparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/FloatComparison.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/Lumpy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/Lumpy.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/MovingPlotWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/MovingPlotWindow.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/NumPyDB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/NumPyDB.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/PrmDictBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/PrmDictBase.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/Regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/Regression.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/StringFunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/StringFunction.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/TkGUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/TkGUI.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/aplotter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/aplotter.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/configdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/configdata.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/convergencerate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/convergencerate.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/debug.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/blt_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/blt_.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/common.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/gnuplot_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/gnuplot_.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/grace_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/grace_.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/matlab2_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/matlab2_.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/matlab_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/matlab_.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/matplotlib_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/matplotlib_.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/movie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/movie.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/pyx_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/pyx_.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/template_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/template_.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/utils.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/easyviz/vtk_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/easyviz/vtk_.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/errorcheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/errorcheck.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/filetable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/filetable.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/misc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/misc.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/modulecheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/modulecheck.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/multipleloop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/multipleloop.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/numpytools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/numpytools.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/numpyutils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/numpyutils.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/pprint2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/pprint2.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/redirect_io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/redirect_io.html -------------------------------------------------------------------------------- /doc/api/html/html/_modules/scitools/sound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_modules/scitools/sound.html -------------------------------------------------------------------------------- /doc/api/html/html/_sources/BoxField.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/BoxField.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/BoxGrid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/BoxGrid.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/EfficiencyTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/EfficiencyTable.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/FloatComparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/FloatComparison.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/Lumpy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/Lumpy.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/MovingPlotWindow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/MovingPlotWindow.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/NumPyDB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/NumPyDB.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/PrmDictBase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/PrmDictBase.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/Regression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/Regression.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/StringFunction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/StringFunction.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/TkGUI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/TkGUI.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/aplotter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/aplotter.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/avplotter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/avplotter.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/basics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/basics.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/blt_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/blt_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/common.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/configdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/configdata.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/convergencerate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/convergencerate.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/debug.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/dx_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/dx_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/easyviz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/easyviz.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/errorcheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/errorcheck.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/filetable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/filetable.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/globaldata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/globaldata.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/gnuplot_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/gnuplot_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/grace_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/grace_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/index.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/matlab2_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/matlab2_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/matlab_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/matlab_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/matplotlib_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/matplotlib_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/misc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/misc.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/modulecheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/modulecheck.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/movie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/movie.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/multipleloop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/multipleloop.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/numpytools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/numpytools.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/numpyutils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/numpyutils.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/pprint2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/pprint2.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/pyx_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/pyx_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/redirect_io.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/redirect_io.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/scitools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/scitools.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/sound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/sound.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/std.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/std.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/template_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/template_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/utils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/utils.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/veusz_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/veusz_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/visit_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/visit_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/vtk_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/vtk_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_sources/vtk_new_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_sources/vtk_new_.txt -------------------------------------------------------------------------------- /doc/api/html/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /doc/api/html/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/basic.css -------------------------------------------------------------------------------- /doc/api/html/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/comment-bright.png -------------------------------------------------------------------------------- /doc/api/html/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/comment-close.png -------------------------------------------------------------------------------- /doc/api/html/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/comment.png -------------------------------------------------------------------------------- /doc/api/html/html/_static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/default.css -------------------------------------------------------------------------------- /doc/api/html/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/doctools.js -------------------------------------------------------------------------------- /doc/api/html/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/down-pressed.png -------------------------------------------------------------------------------- /doc/api/html/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/down.png -------------------------------------------------------------------------------- /doc/api/html/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/file.png -------------------------------------------------------------------------------- /doc/api/html/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/jquery.js -------------------------------------------------------------------------------- /doc/api/html/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/minus.png -------------------------------------------------------------------------------- /doc/api/html/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/plus.png -------------------------------------------------------------------------------- /doc/api/html/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/pygments.css -------------------------------------------------------------------------------- /doc/api/html/html/_static/scitools_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/scitools_logo.jpg -------------------------------------------------------------------------------- /doc/api/html/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/searchtools.js -------------------------------------------------------------------------------- /doc/api/html/html/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/sidebar.js -------------------------------------------------------------------------------- /doc/api/html/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/underscore.js -------------------------------------------------------------------------------- /doc/api/html/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/up-pressed.png -------------------------------------------------------------------------------- /doc/api/html/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/up.png -------------------------------------------------------------------------------- /doc/api/html/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/_static/websupport.js -------------------------------------------------------------------------------- /doc/api/html/html/aplotter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/aplotter.html -------------------------------------------------------------------------------- /doc/api/html/html/avplotter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/avplotter.html -------------------------------------------------------------------------------- /doc/api/html/html/basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/basics.html -------------------------------------------------------------------------------- /doc/api/html/html/blt_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/blt_.html -------------------------------------------------------------------------------- /doc/api/html/html/common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/common.html -------------------------------------------------------------------------------- /doc/api/html/html/configdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/configdata.html -------------------------------------------------------------------------------- /doc/api/html/html/convergencerate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/convergencerate.html -------------------------------------------------------------------------------- /doc/api/html/html/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/debug.html -------------------------------------------------------------------------------- /doc/api/html/html/dx_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/dx_.html -------------------------------------------------------------------------------- /doc/api/html/html/easyviz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/easyviz.html -------------------------------------------------------------------------------- /doc/api/html/html/errorcheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/errorcheck.html -------------------------------------------------------------------------------- /doc/api/html/html/filetable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/filetable.html -------------------------------------------------------------------------------- /doc/api/html/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/genindex.html -------------------------------------------------------------------------------- /doc/api/html/html/globaldata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/globaldata.html -------------------------------------------------------------------------------- /doc/api/html/html/gnuplot_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/gnuplot_.html -------------------------------------------------------------------------------- /doc/api/html/html/grace_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/grace_.html -------------------------------------------------------------------------------- /doc/api/html/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/index.html -------------------------------------------------------------------------------- /doc/api/html/html/matlab2_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/matlab2_.html -------------------------------------------------------------------------------- /doc/api/html/html/matlab_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/matlab_.html -------------------------------------------------------------------------------- /doc/api/html/html/matplotlib_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/matplotlib_.html -------------------------------------------------------------------------------- /doc/api/html/html/misc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/misc.html -------------------------------------------------------------------------------- /doc/api/html/html/modulecheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/modulecheck.html -------------------------------------------------------------------------------- /doc/api/html/html/movie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/movie.html -------------------------------------------------------------------------------- /doc/api/html/html/multipleloop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/multipleloop.html -------------------------------------------------------------------------------- /doc/api/html/html/np-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/np-modindex.html -------------------------------------------------------------------------------- /doc/api/html/html/numpytools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/numpytools.html -------------------------------------------------------------------------------- /doc/api/html/html/numpyutils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/numpyutils.html -------------------------------------------------------------------------------- /doc/api/html/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/objects.inv -------------------------------------------------------------------------------- /doc/api/html/html/pprint2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/pprint2.html -------------------------------------------------------------------------------- /doc/api/html/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/py-modindex.html -------------------------------------------------------------------------------- /doc/api/html/html/pyx_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/pyx_.html -------------------------------------------------------------------------------- /doc/api/html/html/redirect_io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/redirect_io.html -------------------------------------------------------------------------------- /doc/api/html/html/scitools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/scitools.html -------------------------------------------------------------------------------- /doc/api/html/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/search.html -------------------------------------------------------------------------------- /doc/api/html/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/searchindex.js -------------------------------------------------------------------------------- /doc/api/html/html/sound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/sound.html -------------------------------------------------------------------------------- /doc/api/html/html/std.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/std.html -------------------------------------------------------------------------------- /doc/api/html/html/template_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/template_.html -------------------------------------------------------------------------------- /doc/api/html/html/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/utils.html -------------------------------------------------------------------------------- /doc/api/html/html/veusz_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/veusz_.html -------------------------------------------------------------------------------- /doc/api/html/html/visit_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/visit_.html -------------------------------------------------------------------------------- /doc/api/html/html/vtk_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/vtk_.html -------------------------------------------------------------------------------- /doc/api/html/html/vtk_new_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/html/vtk_new_.html -------------------------------------------------------------------------------- /doc/api/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/index.html -------------------------------------------------------------------------------- /doc/api/html/matlab2_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/matlab2_.html -------------------------------------------------------------------------------- /doc/api/html/matlab_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/matlab_.html -------------------------------------------------------------------------------- /doc/api/html/matplotlib_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/matplotlib_.html -------------------------------------------------------------------------------- /doc/api/html/misc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/misc.html -------------------------------------------------------------------------------- /doc/api/html/modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/modindex.html -------------------------------------------------------------------------------- /doc/api/html/modulecheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/modulecheck.html -------------------------------------------------------------------------------- /doc/api/html/movie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/movie.html -------------------------------------------------------------------------------- /doc/api/html/multipleloop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/multipleloop.html -------------------------------------------------------------------------------- /doc/api/html/np-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/np-modindex.html -------------------------------------------------------------------------------- /doc/api/html/numpytools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/numpytools.html -------------------------------------------------------------------------------- /doc/api/html/numpyutils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/numpyutils.html -------------------------------------------------------------------------------- /doc/api/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/objects.inv -------------------------------------------------------------------------------- /doc/api/html/pprint2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/pprint2.html -------------------------------------------------------------------------------- /doc/api/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/py-modindex.html -------------------------------------------------------------------------------- /doc/api/html/pyx_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/pyx_.html -------------------------------------------------------------------------------- /doc/api/html/redirect_io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/redirect_io.html -------------------------------------------------------------------------------- /doc/api/html/scitools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/scitools.html -------------------------------------------------------------------------------- /doc/api/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/search.html -------------------------------------------------------------------------------- /doc/api/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/searchindex.js -------------------------------------------------------------------------------- /doc/api/html/sound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/sound.html -------------------------------------------------------------------------------- /doc/api/html/std.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/std.html -------------------------------------------------------------------------------- /doc/api/html/template_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/template_.html -------------------------------------------------------------------------------- /doc/api/html/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/utils.html -------------------------------------------------------------------------------- /doc/api/html/veusz_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/veusz_.html -------------------------------------------------------------------------------- /doc/api/html/visit_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/visit_.html -------------------------------------------------------------------------------- /doc/api/html/vtk_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/vtk_.html -------------------------------------------------------------------------------- /doc/api/html/vtk_new_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/api/html/vtk_new_.html -------------------------------------------------------------------------------- /doc/easyviz/easyviz.do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz.do.txt -------------------------------------------------------------------------------- /doc/easyviz/easyviz.gwiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz.gwiki -------------------------------------------------------------------------------- /doc/easyviz/easyviz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz.html -------------------------------------------------------------------------------- /doc/easyviz/easyviz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz.pdf -------------------------------------------------------------------------------- /doc/easyviz/easyviz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz.txt -------------------------------------------------------------------------------- /doc/easyviz/easyviz_rst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_rst.html -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx.pdf -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/.buildinfo -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_sources/index.txt -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/basic.css -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/comment-bright.png -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/comment-close.png -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/comment.png -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/default.css -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/doctools.js -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/down-pressed.png -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/down.png -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/file.png -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/jquery.js -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/minus.png -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/plus.png -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/pygments.css -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/searchtools.js -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/sidebar.js -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/underscore.js -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/up-pressed.png -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/up.png -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/_static/websupport.js -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/genindex.html -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/index.html -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/objects.inv -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/search.html -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/searchindex.js -------------------------------------------------------------------------------- /doc/easyviz/easyviz_sphinx_html/tmp_easyviz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/easyviz_sphinx_html/tmp_easyviz.html -------------------------------------------------------------------------------- /doc/easyviz/figs/contour3_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/contour3_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/contour_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/contour_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/contour_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/contour_ex2.png -------------------------------------------------------------------------------- /doc/easyviz/figs/contour_ex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/contour_ex3.png -------------------------------------------------------------------------------- /doc/easyviz/figs/contourf_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/contourf_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/contourslice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/contourslice1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/contourslice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/contourslice3.png -------------------------------------------------------------------------------- /doc/easyviz/figs/isosurface1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/isosurface1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/isosurface2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/isosurface2.png -------------------------------------------------------------------------------- /doc/easyviz/figs/mesh_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/mesh_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/meshc_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/meshc_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/pcolor_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/pcolor_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/plot1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/plot1a.png -------------------------------------------------------------------------------- /doc/easyviz/figs/plot1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/plot1c.png -------------------------------------------------------------------------------- /doc/easyviz/figs/plot2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/plot2a.png -------------------------------------------------------------------------------- /doc/easyviz/figs/plot2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/plot2c.png -------------------------------------------------------------------------------- /doc/easyviz/figs/plot2f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/plot2f.png -------------------------------------------------------------------------------- /doc/easyviz/figs/plot2g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/plot2g.png -------------------------------------------------------------------------------- /doc/easyviz/figs/plot2i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/plot2i.png -------------------------------------------------------------------------------- /doc/easyviz/figs/plot2l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/plot2l.png -------------------------------------------------------------------------------- /doc/easyviz/figs/pyranking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/pyranking.png -------------------------------------------------------------------------------- /doc/easyviz/figs/quiver3_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/quiver3_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/quiver_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/quiver_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/quiver_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/quiver_ex2.png -------------------------------------------------------------------------------- /doc/easyviz/figs/quiver_ex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/quiver_ex3.png -------------------------------------------------------------------------------- /doc/easyviz/figs/slice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/slice1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/streamline_ex1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/streamline_ex1.jpeg -------------------------------------------------------------------------------- /doc/easyviz/figs/streamline_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/streamline_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/streamribbon_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/streamribbon_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/streamtube_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/streamtube_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/surf_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/surf_ex1.png -------------------------------------------------------------------------------- /doc/easyviz/figs/surf_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/surf_ex2.png -------------------------------------------------------------------------------- /doc/easyviz/figs/surfc_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/easyviz/figs/surfc_ex1.png -------------------------------------------------------------------------------- /doc/man/man1/scitools.1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/man/man1/scitools.1.gz -------------------------------------------------------------------------------- /doc/src/api-sphinx/00README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/00README -------------------------------------------------------------------------------- /doc/src/api-sphinx/BoxField.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/BoxField.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/BoxGrid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/BoxGrid.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/EfficiencyTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/EfficiencyTable.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/FloatComparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/FloatComparison.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/Lumpy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/Lumpy.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/Makefile -------------------------------------------------------------------------------- /doc/src/api-sphinx/MovingPlotWindow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/MovingPlotWindow.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/NumPyDB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/NumPyDB.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/PrmDictBase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/PrmDictBase.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/Regression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/Regression.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/StringFunction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/StringFunction.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/TkGUI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/TkGUI.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/aplotter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/aplotter.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/avplotter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/avplotter.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/basics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/basics.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/blt_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/blt_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm -rf _build *~ figs -------------------------------------------------------------------------------- /doc/src/api-sphinx/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/common.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/conf.py -------------------------------------------------------------------------------- /doc/src/api-sphinx/conf.py-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/conf.py-orig -------------------------------------------------------------------------------- /doc/src/api-sphinx/configdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/configdata.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/convergencerate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/convergencerate.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/debug.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/dx_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/dx_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/easyviz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/easyviz.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/errorcheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/errorcheck.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/filetable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/filetable.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/generate.sh -------------------------------------------------------------------------------- /doc/src/api-sphinx/globaldata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/globaldata.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/gnuplot_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/gnuplot_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/grace_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/grace_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/index.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/index.txt-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/index.txt-orig -------------------------------------------------------------------------------- /doc/src/api-sphinx/make_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/make_txt.py -------------------------------------------------------------------------------- /doc/src/api-sphinx/matlab2_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/matlab2_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/matlab_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/matlab_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/matplotlib_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/matplotlib_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/misc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/misc.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/modulecheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/modulecheck.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/movie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/movie.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/multipleloop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/multipleloop.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/numpytools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/numpytools.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/numpyutils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/numpyutils.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/pprint2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/pprint2.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/pyx_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/pyx_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/redirect_io.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/redirect_io.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/scitools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/scitools.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/scitools_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/scitools_logo.jpg -------------------------------------------------------------------------------- /doc/src/api-sphinx/sound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/sound.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/std.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/std.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/template_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/template_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/update.sh -------------------------------------------------------------------------------- /doc/src/api-sphinx/utils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/utils.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/veusz_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/veusz_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/visit_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/visit_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/vtk_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/vtk_.txt -------------------------------------------------------------------------------- /doc/src/api-sphinx/vtk_new_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/api-sphinx/vtk_new_.txt -------------------------------------------------------------------------------- /doc/src/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/clean.sh -------------------------------------------------------------------------------- /doc/src/easyviz/.ptex2tex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/.ptex2tex.cfg -------------------------------------------------------------------------------- /doc/src/easyviz/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/clean.sh -------------------------------------------------------------------------------- /doc/src/easyviz/easyviz.do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/easyviz.do.txt -------------------------------------------------------------------------------- /doc/src/easyviz/easyviz_2D3D.do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/easyviz_2D3D.do.txt -------------------------------------------------------------------------------- /doc/src/easyviz/easyviz_backends.do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/easyviz_backends.do.txt -------------------------------------------------------------------------------- /doc/src/easyviz/easyviz_bars.do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/easyviz_bars.do.txt -------------------------------------------------------------------------------- /doc/src/easyviz/easyviz_design.do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/easyviz_design.do.txt -------------------------------------------------------------------------------- /doc/src/easyviz/easyviz_install.do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/easyviz_install.do.txt -------------------------------------------------------------------------------- /doc/src/easyviz/easyviz_intro.do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/easyviz_intro.do.txt -------------------------------------------------------------------------------- /doc/src/easyviz/easyviz_trouble.do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/easyviz_trouble.do.txt -------------------------------------------------------------------------------- /doc/src/easyviz/easyviz_tutorial.do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/easyviz_tutorial.do.txt -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contour3_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contour3_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contour3_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contour3_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contour_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contour_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contour_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contour_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contour_ex2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contour_ex2.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contour_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contour_ex2.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contour_ex3.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contour_ex3.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contour_ex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contour_ex3.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contourf_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contourf_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contourf_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contourf_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contourslice1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contourslice1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contourslice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contourslice1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contourslice3.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contourslice3.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/contourslice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/contourslice3.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/isosurface1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/isosurface1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/isosurface1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/isosurface1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/isosurface2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/isosurface2.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/isosurface2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/isosurface2.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/mesh_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/mesh_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/mesh_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/mesh_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/meshc_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/meshc_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/meshc_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/meshc_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/pcolor_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/pcolor_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/pcolor_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/pcolor_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1a.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1a.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1a.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1a2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1a2.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1a2.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1a_g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1a_g.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1a_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1a_g.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1a_m.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1a_m.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1a_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1a_m.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1c.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1c.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1c.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1d.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1d.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1d.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1e.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot1e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot1e.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2a.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2a.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2a.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2c.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2c.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2c.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2e.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2f.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2f.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2f.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2g.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2g.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2i.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2i.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2i.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2l.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2l.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2l.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2p.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2p.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2p.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2q.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2q.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot2q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot2q.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot3_demo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot3_demo.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/plot3_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/plot3_demo.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/pyranking.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/pyranking.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/pyranking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/pyranking.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/quiver3_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/quiver3_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/quiver3_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/quiver3_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/quiver_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/quiver_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/quiver_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/quiver_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/quiver_ex2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/quiver_ex2.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/quiver_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/quiver_ex2.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/quiver_ex3.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/quiver_ex3.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/quiver_ex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/quiver_ex3.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/slice1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/slice1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/slice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/slice1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/streamline_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/streamline_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/streamline_ex1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/streamline_ex1.jpeg -------------------------------------------------------------------------------- /doc/src/easyviz/figs/streamline_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/streamline_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/streamribbon_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/streamribbon_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/streamribbon_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/streamribbon_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/streamtube_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/streamtube_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/streamtube_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/streamtube_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/surf_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/surf_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/surf_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/surf_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/surf_ex2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/surf_ex2.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/surf_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/surf_ex2.png -------------------------------------------------------------------------------- /doc/src/easyviz/figs/surfc_ex1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/surfc_ex1.eps -------------------------------------------------------------------------------- /doc/src/easyviz/figs/surfc_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/figs/surfc_ex1.png -------------------------------------------------------------------------------- /doc/src/easyviz/index-sphinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/index-sphinx -------------------------------------------------------------------------------- /doc/src/easyviz/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/src/easyviz/make.sh -------------------------------------------------------------------------------- /doc/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/web/index.html -------------------------------------------------------------------------------- /doc/web/javascripts/main.js: -------------------------------------------------------------------------------- 1 | console.log('This would be the main JS file.'); 2 | -------------------------------------------------------------------------------- /doc/web/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/web/params.json -------------------------------------------------------------------------------- /doc/web/stylesheets/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/web/stylesheets/github-light.css -------------------------------------------------------------------------------- /doc/web/stylesheets/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/doc/web/stylesheets/stylesheet.css -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/README -------------------------------------------------------------------------------- /examples/axes_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/axes_demo.py -------------------------------------------------------------------------------- /examples/bar_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/bar_demo.py -------------------------------------------------------------------------------- /examples/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/clean.sh -------------------------------------------------------------------------------- /examples/compatibility_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/compatibility_checks.py -------------------------------------------------------------------------------- /examples/contour_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/contour_demo.py -------------------------------------------------------------------------------- /examples/contourslice_demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/contourslice_demo1.py -------------------------------------------------------------------------------- /examples/contourslice_demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/contourslice_demo2.py -------------------------------------------------------------------------------- /examples/demo_pyreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/demo_pyreport.py -------------------------------------------------------------------------------- /examples/demo_pyreport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/demo_pyreport.sh -------------------------------------------------------------------------------- /examples/fill_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/fill_demo.py -------------------------------------------------------------------------------- /examples/grab_backend_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/grab_backend_demo.py -------------------------------------------------------------------------------- /examples/grab_backend_matplotlib_ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/grab_backend_matplotlib_ex1.py -------------------------------------------------------------------------------- /examples/grab_backend_matplotlib_ex2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/grab_backend_matplotlib_ex2.py -------------------------------------------------------------------------------- /examples/isosurface_demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/isosurface_demo1.py -------------------------------------------------------------------------------- /examples/isosurface_demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/isosurface_demo2.py -------------------------------------------------------------------------------- /examples/isosurface_demo3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/isosurface_demo3.py -------------------------------------------------------------------------------- /examples/math_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/math_text.py -------------------------------------------------------------------------------- /examples/matlab2_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/matlab2_demo.py -------------------------------------------------------------------------------- /examples/mesh_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/mesh_demo.py -------------------------------------------------------------------------------- /examples/movie_demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/movie_demo1.py -------------------------------------------------------------------------------- /examples/movie_demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/movie_demo2.py -------------------------------------------------------------------------------- /examples/mri_matlab_v6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/mri_matlab_v6.mat -------------------------------------------------------------------------------- /examples/plot0a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot0a.py -------------------------------------------------------------------------------- /examples/plot0b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot0b.py -------------------------------------------------------------------------------- /examples/plot1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot1a.py -------------------------------------------------------------------------------- /examples/plot1a2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot1a2.py -------------------------------------------------------------------------------- /examples/plot1b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot1b.py -------------------------------------------------------------------------------- /examples/plot1c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot1c.py -------------------------------------------------------------------------------- /examples/plot1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot1d.py -------------------------------------------------------------------------------- /examples/plot1e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot1e.py -------------------------------------------------------------------------------- /examples/plot2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2a.py -------------------------------------------------------------------------------- /examples/plot2b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2b.py -------------------------------------------------------------------------------- /examples/plot2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2c.py -------------------------------------------------------------------------------- /examples/plot2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2d.py -------------------------------------------------------------------------------- /examples/plot2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2e.py -------------------------------------------------------------------------------- /examples/plot2f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2f.py -------------------------------------------------------------------------------- /examples/plot2g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2g.py -------------------------------------------------------------------------------- /examples/plot2i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2i.py -------------------------------------------------------------------------------- /examples/plot2j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2j.py -------------------------------------------------------------------------------- /examples/plot2k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2k.py -------------------------------------------------------------------------------- /examples/plot2l.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2l.py -------------------------------------------------------------------------------- /examples/plot2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2m.py -------------------------------------------------------------------------------- /examples/plot2n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2n.py -------------------------------------------------------------------------------- /examples/plot2o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2o.py -------------------------------------------------------------------------------- /examples/plot2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2p.py -------------------------------------------------------------------------------- /examples/plot2q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2q.py -------------------------------------------------------------------------------- /examples/plot2r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot2r.py -------------------------------------------------------------------------------- /examples/plot3_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot3_demo.py -------------------------------------------------------------------------------- /examples/plot_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/plot_ascii.py -------------------------------------------------------------------------------- /examples/problems_aspect_colorbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/problems_aspect_colorbar.py -------------------------------------------------------------------------------- /examples/quiver_demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/quiver_demo1.py -------------------------------------------------------------------------------- /examples/quiver_demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/quiver_demo2.py -------------------------------------------------------------------------------- /examples/rotate_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/rotate_vector.py -------------------------------------------------------------------------------- /examples/rows_of_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/rows_of_matrix.py -------------------------------------------------------------------------------- /examples/runall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/runall.py -------------------------------------------------------------------------------- /examples/slice_demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/slice_demo1.py -------------------------------------------------------------------------------- /examples/slice_demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/slice_demo2.py -------------------------------------------------------------------------------- /examples/streamline_demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/streamline_demo1.py -------------------------------------------------------------------------------- /examples/streamline_demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/streamline_demo2.py -------------------------------------------------------------------------------- /examples/streamline_demo3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/streamline_demo3.py -------------------------------------------------------------------------------- /examples/streamribbon_demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/streamribbon_demo1.py -------------------------------------------------------------------------------- /examples/streamribbon_demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/streamribbon_demo2.py -------------------------------------------------------------------------------- /examples/streamtube_demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/streamtube_demo1.py -------------------------------------------------------------------------------- /examples/streamtube_demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/streamtube_demo2.py -------------------------------------------------------------------------------- /examples/subplot_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/subplot_demo.py -------------------------------------------------------------------------------- /examples/subplot_demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/subplot_demo2.py -------------------------------------------------------------------------------- /examples/surf_demo0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/surf_demo0.py -------------------------------------------------------------------------------- /examples/surf_demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/surf_demo1.py -------------------------------------------------------------------------------- /examples/surf_demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/surf_demo2.py -------------------------------------------------------------------------------- /examples/topo_matlab_v6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/topo_matlab_v6.mat -------------------------------------------------------------------------------- /examples/wind_matlab_v6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/examples/wind_matlab_v6.mat -------------------------------------------------------------------------------- /images/bg_hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/images/bg_hr.png -------------------------------------------------------------------------------- /images/blacktocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/images/blacktocat.png -------------------------------------------------------------------------------- /images/icon_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/images/icon_download.png -------------------------------------------------------------------------------- /images/sprite_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/images/sprite_download.png -------------------------------------------------------------------------------- /install_egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/install_egg -------------------------------------------------------------------------------- /lib/scitools/BoxField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/BoxField.py -------------------------------------------------------------------------------- /lib/scitools/BoxGrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/BoxGrid.py -------------------------------------------------------------------------------- /lib/scitools/EfficiencyTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/EfficiencyTable.py -------------------------------------------------------------------------------- /lib/scitools/FloatComparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/FloatComparison.py -------------------------------------------------------------------------------- /lib/scitools/Heaviside.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/Heaviside.py -------------------------------------------------------------------------------- /lib/scitools/Lumpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/Lumpy.py -------------------------------------------------------------------------------- /lib/scitools/MovingPlotWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/MovingPlotWindow.py -------------------------------------------------------------------------------- /lib/scitools/NumPyDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/NumPyDB.py -------------------------------------------------------------------------------- /lib/scitools/ODE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/ODE.py -------------------------------------------------------------------------------- /lib/scitools/PrmDictBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/PrmDictBase.py -------------------------------------------------------------------------------- /lib/scitools/Regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/Regression.py -------------------------------------------------------------------------------- /lib/scitools/StringFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/StringFunction.py -------------------------------------------------------------------------------- /lib/scitools/TkGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/TkGUI.py -------------------------------------------------------------------------------- /lib/scitools/_Gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/_Gui.py -------------------------------------------------------------------------------- /lib/scitools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/__init__.py -------------------------------------------------------------------------------- /lib/scitools/_numpyload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/_numpyload.py -------------------------------------------------------------------------------- /lib/scitools/aplotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/aplotter.py -------------------------------------------------------------------------------- /lib/scitools/avplotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/avplotter.py -------------------------------------------------------------------------------- /lib/scitools/basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/basics.py -------------------------------------------------------------------------------- /lib/scitools/configdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/configdata.py -------------------------------------------------------------------------------- /lib/scitools/convergencerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/convergencerate.py -------------------------------------------------------------------------------- /lib/scitools/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/debug.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/__init__.p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/__init__.p.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/__init__.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/blt_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/blt_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/common.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/dx_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/dx_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/gnuplot_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/gnuplot_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/grace_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/grace_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/matlab2_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/matlab2_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/matlab_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/matlab_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/matplotlib_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/matplotlib_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/misc.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/movie.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/pyx_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/pyx_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/template_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/template_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/easyviztest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/easyviztest.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/runalltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/runalltests.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_axis.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_box.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_caxis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_caxis.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_colorbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_colorbar.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_colormap.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_contour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_contour.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_contour3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_contour3.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_grid.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_labels.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_legend.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_mesh.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_plot.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_plot3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_plot3.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_quiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_quiver.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_subplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_subplot.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_surf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_surf.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/tests/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/tests/test_view.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/utils.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/veusz_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/veusz_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/visit_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/visit_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/vtk_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/vtk_.py -------------------------------------------------------------------------------- /lib/scitools/easyviz/vtk_new_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/easyviz/vtk_new_.py -------------------------------------------------------------------------------- /lib/scitools/errorcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/errorcheck.py -------------------------------------------------------------------------------- /lib/scitools/filetable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/filetable.py -------------------------------------------------------------------------------- /lib/scitools/globaldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/globaldata.py -------------------------------------------------------------------------------- /lib/scitools/materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/materials.py -------------------------------------------------------------------------------- /lib/scitools/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/misc.py -------------------------------------------------------------------------------- /lib/scitools/modulecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/modulecheck.py -------------------------------------------------------------------------------- /lib/scitools/multipleloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/multipleloop.py -------------------------------------------------------------------------------- /lib/scitools/numpytools.p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/numpytools.p.py -------------------------------------------------------------------------------- /lib/scitools/numpytools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/numpytools.py -------------------------------------------------------------------------------- /lib/scitools/numpyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/numpyutils.py -------------------------------------------------------------------------------- /lib/scitools/pprint2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/pprint2.py -------------------------------------------------------------------------------- /lib/scitools/pyreport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/pyreport/__init__.py -------------------------------------------------------------------------------- /lib/scitools/pyreport/code_hasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/pyreport/code_hasher.py -------------------------------------------------------------------------------- /lib/scitools/pyreport/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/pyreport/main.py -------------------------------------------------------------------------------- /lib/scitools/pyreport/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/pyreport/options.py -------------------------------------------------------------------------------- /lib/scitools/pyreport/pyreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/pyreport/pyreport.py -------------------------------------------------------------------------------- /lib/scitools/pyreport/python_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/pyreport/python_parser.py -------------------------------------------------------------------------------- /lib/scitools/pyreport/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/pyreport/version.py -------------------------------------------------------------------------------- /lib/scitools/redirect_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/redirect_io.py -------------------------------------------------------------------------------- /lib/scitools/scitools.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/scitools.cfg -------------------------------------------------------------------------------- /lib/scitools/sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/sound.py -------------------------------------------------------------------------------- /lib/scitools/std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/scitools/std.py -------------------------------------------------------------------------------- /lib/stcopy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/lib/stcopy/__init__.py -------------------------------------------------------------------------------- /misc/build_scitools++.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/misc/build_scitools++.py -------------------------------------------------------------------------------- /misc/diagnostic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/misc/diagnostic.py -------------------------------------------------------------------------------- /misc/makedist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/misc/makedist -------------------------------------------------------------------------------- /scitools++_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/scitools++_setup.py -------------------------------------------------------------------------------- /scitools.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/scitools.conf -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/setup.py -------------------------------------------------------------------------------- /setupegg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/setupegg.py -------------------------------------------------------------------------------- /test/_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/test/_cpu.py -------------------------------------------------------------------------------- /test/_movie1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/test/_movie1.py -------------------------------------------------------------------------------- /test/_test1.verify-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/test/_test1.verify-test -------------------------------------------------------------------------------- /test/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm -f tmp* _test1* verify1.v -------------------------------------------------------------------------------- /test/scitools_demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/test/scitools_demo -------------------------------------------------------------------------------- /test/test_numpyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/test/test_numpyutils.py -------------------------------------------------------------------------------- /test/verify1.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/test/verify1.r -------------------------------------------------------------------------------- /test/verify1.verify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hplgit/scitools/HEAD/test/verify1.verify --------------------------------------------------------------------------------