├── LICENSE.md ├── README.md ├── dateutil ├── __init__.py ├── __init__.pyc ├── easter.py ├── easter.pyc ├── parser.py ├── parser.pyc ├── relativedelta.py ├── relativedelta.pyc ├── rrule.py ├── rrule.pyc ├── tz.py ├── tz.pyc ├── tzwin.py ├── tzwin.pyc └── zoneinfo │ ├── __init__.py │ ├── __init__.pyc │ └── dateutil-zoneinfo.tar.gz ├── matplotlib ├── __init__.py ├── __init__.pyc ├── __init__.pyo ├── _cm.py ├── _cm.pyc ├── _cm.pyo ├── _cntr.pyd ├── _delaunay.pyd ├── _image.pyd ├── _mathtext_data.py ├── _mathtext_data.pyc ├── _mathtext_data.pyo ├── _path.pyd ├── _png.pyd ├── _pylab_helpers.py ├── _pylab_helpers.pyc ├── _pylab_helpers.pyo ├── _tri.pyd ├── _windowing.pyd ├── afm.py ├── afm.pyc ├── afm.pyo ├── animation.py ├── animation.pyc ├── animation.pyo ├── artist.py ├── artist.pyc ├── artist.pyo ├── axes.py ├── axes.pyc ├── axes.pyo ├── axis.py ├── axis.pyc ├── axis.pyo ├── backend_bases.py ├── backend_bases.pyc ├── backend_bases.pyo ├── backends │ ├── Matplotlib.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyo │ ├── _backend_agg.pyd │ ├── _backend_gdk.pyd │ ├── _gtkagg.pyd │ ├── _tkagg.pyd │ ├── backend_agg.py │ ├── backend_agg.pyc │ ├── backend_agg.pyo │ ├── backend_cairo.py │ ├── backend_cairo.pyc │ ├── backend_cairo.pyo │ ├── backend_cocoaagg.py │ ├── backend_cocoaagg.pyc │ ├── backend_cocoaagg.pyo │ ├── backend_gdk.py │ ├── backend_gdk.pyc │ ├── backend_gdk.pyo │ ├── backend_gtk.py │ ├── backend_gtk.pyc │ ├── backend_gtk.pyo │ ├── backend_gtk3.py │ ├── backend_gtk3.pyc │ ├── backend_gtk3.pyo │ ├── backend_gtk3agg.py │ ├── backend_gtk3agg.pyc │ ├── backend_gtk3agg.pyo │ ├── backend_gtk3cairo.py │ ├── backend_gtk3cairo.pyc │ ├── backend_gtk3cairo.pyo │ ├── backend_gtkagg.py │ ├── backend_gtkagg.pyc │ ├── backend_gtkagg.pyo │ ├── backend_gtkcairo.py │ ├── backend_gtkcairo.pyc │ ├── backend_gtkcairo.pyo │ ├── backend_macosx.py │ ├── backend_macosx.pyc │ ├── backend_macosx.pyo │ ├── backend_mixed.py │ ├── backend_mixed.pyc │ ├── backend_mixed.pyo │ ├── backend_pdf.py │ ├── backend_pdf.pyc │ ├── backend_pdf.pyo │ ├── backend_pgf.py │ ├── backend_pgf.pyc │ ├── backend_pgf.pyo │ ├── backend_ps.py │ ├── backend_ps.pyc │ ├── backend_ps.pyo │ ├── backend_qt4.py │ ├── backend_qt4.pyc │ ├── backend_qt4.pyo │ ├── backend_qt4agg.py │ ├── backend_qt4agg.pyc │ ├── backend_qt4agg.pyo │ ├── backend_svg.py │ ├── backend_svg.pyc │ ├── backend_svg.pyo │ ├── backend_template.py │ ├── backend_template.pyc │ ├── backend_template.pyo │ ├── backend_tkagg.py │ ├── backend_tkagg.pyc │ ├── backend_tkagg.pyo │ ├── backend_webagg.py │ ├── backend_webagg.pyc │ ├── backend_webagg.pyo │ ├── backend_wx.py │ ├── backend_wx.pyc │ ├── backend_wx.pyo │ ├── backend_wxagg.py │ ├── backend_wxagg.pyc │ ├── backend_wxagg.pyo │ ├── qt4_compat.py │ ├── qt4_compat.pyc │ ├── qt4_compat.pyo │ ├── qt4_editor │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __init__.pyo │ │ ├── figureoptions.py │ │ ├── figureoptions.pyc │ │ ├── figureoptions.pyo │ │ ├── formlayout.py │ │ ├── formlayout.pyc │ │ └── formlayout.pyo │ ├── tkagg.py │ ├── tkagg.pyc │ ├── tkagg.pyo │ ├── web_backend │ │ ├── all_figures.html │ │ ├── css │ │ │ ├── boilerplate.css │ │ │ ├── fbm.css │ │ │ └── page.css │ │ ├── jquery │ │ │ ├── css │ │ │ │ └── themes │ │ │ │ │ └── base │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── jquery-ui.min.css │ │ │ └── js │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ ├── jquery-ui.min.js │ │ │ │ └── jquery.autogrow.js │ │ ├── mpl.js │ │ ├── mpl_interface.js │ │ └── single_figure.html │ ├── windowing.py │ ├── windowing.pyc │ └── windowing.pyo ├── bezier.py ├── bezier.pyc ├── bezier.pyo ├── blocking_input.py ├── blocking_input.pyc ├── blocking_input.pyo ├── cbook.py ├── cbook.pyc ├── cbook.pyo ├── cm.py ├── cm.pyc ├── cm.pyo ├── collections.py ├── collections.pyc ├── collections.pyo ├── colorbar.py ├── colorbar.pyc ├── colorbar.pyo ├── colors.py ├── colors.pyc ├── colors.pyo ├── compat │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyo │ ├── subprocess.py │ ├── subprocess.pyc │ └── subprocess.pyo ├── container.py ├── container.pyc ├── container.pyo ├── contour.py ├── contour.pyc ├── contour.pyo ├── dates.py ├── dates.pyc ├── dates.pyo ├── delaunay │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyo │ ├── interpolate.py │ ├── interpolate.pyc │ ├── interpolate.pyo │ ├── testfuncs.py │ ├── testfuncs.pyc │ ├── testfuncs.pyo │ ├── triangulate.py │ ├── triangulate.pyc │ └── triangulate.pyo ├── docstring.py ├── docstring.pyc ├── docstring.pyo ├── dviread.py ├── dviread.pyc ├── dviread.pyo ├── figure.py ├── figure.pyc ├── figure.pyo ├── finance.py ├── finance.pyc ├── finance.pyo ├── font_manager.py ├── font_manager.pyc ├── font_manager.pyo ├── fontconfig_pattern.py ├── fontconfig_pattern.pyc ├── fontconfig_pattern.pyo ├── ft2font.pyd ├── gridspec.py ├── gridspec.pyc ├── gridspec.pyo ├── hatch.py ├── hatch.pyc ├── hatch.pyo ├── image.py ├── image.pyc ├── image.pyo ├── legend.py ├── legend.pyc ├── legend.pyo ├── legend_handler.py ├── legend_handler.pyc ├── legend_handler.pyo ├── lines.py ├── lines.pyc ├── lines.pyo ├── markers.py ├── markers.pyc ├── markers.pyo ├── mathtext.py ├── mathtext.pyc ├── mathtext.pyo ├── mlab.py ├── mlab.pyc ├── mlab.pyo ├── mpl-data │ ├── fonts │ │ ├── afm │ │ │ ├── cmex10.afm │ │ │ ├── cmmi10.afm │ │ │ ├── cmr10.afm │ │ │ ├── cmsy10.afm │ │ │ ├── cmtt10.afm │ │ │ ├── pagd8a.afm │ │ │ ├── pagdo8a.afm │ │ │ ├── pagk8a.afm │ │ │ ├── pagko8a.afm │ │ │ ├── pbkd8a.afm │ │ │ ├── pbkdi8a.afm │ │ │ ├── pbkl8a.afm │ │ │ ├── pbkli8a.afm │ │ │ ├── pcrb8a.afm │ │ │ ├── pcrbo8a.afm │ │ │ ├── pcrr8a.afm │ │ │ ├── pcrro8a.afm │ │ │ ├── phvb8a.afm │ │ │ ├── phvb8an.afm │ │ │ ├── phvbo8a.afm │ │ │ ├── phvbo8an.afm │ │ │ ├── phvl8a.afm │ │ │ ├── phvlo8a.afm │ │ │ ├── phvr8a.afm │ │ │ ├── phvr8an.afm │ │ │ ├── phvro8a.afm │ │ │ ├── phvro8an.afm │ │ │ ├── pncb8a.afm │ │ │ ├── pncbi8a.afm │ │ │ ├── pncr8a.afm │ │ │ ├── pncri8a.afm │ │ │ ├── pplb8a.afm │ │ │ ├── pplbi8a.afm │ │ │ ├── pplr8a.afm │ │ │ ├── pplri8a.afm │ │ │ ├── psyr.afm │ │ │ ├── ptmb8a.afm │ │ │ ├── ptmbi8a.afm │ │ │ ├── ptmr8a.afm │ │ │ ├── ptmri8a.afm │ │ │ ├── putb8a.afm │ │ │ ├── putbi8a.afm │ │ │ ├── putr8a.afm │ │ │ ├── putri8a.afm │ │ │ ├── pzcmi8a.afm │ │ │ └── pzdr.afm │ │ ├── pdfcorefonts │ │ │ ├── Courier-Bold.afm │ │ │ ├── Courier-BoldOblique.afm │ │ │ ├── Courier-Oblique.afm │ │ │ ├── Courier.afm │ │ │ ├── Helvetica-Bold.afm │ │ │ ├── Helvetica-BoldOblique.afm │ │ │ ├── Helvetica-Oblique.afm │ │ │ ├── Helvetica.afm │ │ │ ├── Symbol.afm │ │ │ ├── Times-Bold.afm │ │ │ ├── Times-BoldItalic.afm │ │ │ ├── Times-Italic.afm │ │ │ ├── Times-Roman.afm │ │ │ ├── ZapfDingbats.afm │ │ │ └── readme.txt │ │ └── ttf │ │ │ ├── COPYRIGHT.TXT │ │ │ ├── LICENSE_STIX │ │ │ ├── README.TXT │ │ │ ├── RELEASENOTES.TXT │ │ │ ├── STIXGeneral.ttf │ │ │ ├── STIXGeneralBol.ttf │ │ │ ├── STIXGeneralBolIta.ttf │ │ │ ├── STIXGeneralItalic.ttf │ │ │ ├── STIXNonUni.ttf │ │ │ ├── STIXNonUniBol.ttf │ │ │ ├── STIXNonUniBolIta.ttf │ │ │ ├── STIXNonUniIta.ttf │ │ │ ├── STIXSizFiveSymReg.ttf │ │ │ ├── STIXSizFourSymBol.ttf │ │ │ ├── STIXSizFourSymReg.ttf │ │ │ ├── STIXSizOneSymBol.ttf │ │ │ ├── STIXSizOneSymReg.ttf │ │ │ ├── STIXSizThreeSymBol.ttf │ │ │ ├── STIXSizThreeSymReg.ttf │ │ │ ├── STIXSizTwoSymBol.ttf │ │ │ ├── STIXSizTwoSymReg.ttf │ │ │ ├── Vera.ttf │ │ │ ├── VeraBI.ttf │ │ │ ├── VeraBd.ttf │ │ │ ├── VeraIt.ttf │ │ │ ├── VeraMoBI.ttf │ │ │ ├── VeraMoBd.ttf │ │ │ ├── VeraMoIt.ttf │ │ │ ├── VeraMono.ttf │ │ │ ├── VeraSe.ttf │ │ │ ├── VeraSeBd.ttf │ │ │ ├── cmb10.ttf │ │ │ ├── cmex10.ttf │ │ │ ├── cmmi10.ttf │ │ │ ├── cmr10.ttf │ │ │ ├── cmss10.ttf │ │ │ ├── cmsy10.ttf │ │ │ └── cmtt10.ttf │ ├── images │ │ ├── back.png │ │ ├── back.ppm │ │ ├── back.svg │ │ ├── back.xpm │ │ ├── filesave.png │ │ ├── filesave.ppm │ │ ├── filesave.svg │ │ ├── filesave.xpm │ │ ├── forward.png │ │ ├── forward.ppm │ │ ├── forward.svg │ │ ├── forward.xpm │ │ ├── hand.png │ │ ├── hand.ppm │ │ ├── hand.svg │ │ ├── hand.xpm │ │ ├── home.png │ │ ├── home.ppm │ │ ├── home.svg │ │ ├── home.xpm │ │ ├── matplotlib.gif │ │ ├── matplotlib.png │ │ ├── matplotlib.svg │ │ ├── move.png │ │ ├── move.ppm │ │ ├── move.svg │ │ ├── move.xpm │ │ ├── qt4_editor_options.png │ │ ├── qt4_editor_options.svg │ │ ├── stock_close.ppm │ │ ├── stock_close.xpm │ │ ├── stock_down.ppm │ │ ├── stock_down.xpm │ │ ├── stock_left.ppm │ │ ├── stock_left.xpm │ │ ├── stock_refresh.ppm │ │ ├── stock_refresh.xpm │ │ ├── stock_right.ppm │ │ ├── stock_right.xpm │ │ ├── stock_save_as.ppm │ │ ├── stock_save_as.xpm │ │ ├── stock_up.ppm │ │ ├── stock_up.xpm │ │ ├── stock_zoom-in.ppm │ │ ├── stock_zoom-in.xpm │ │ ├── stock_zoom-out.ppm │ │ ├── stock_zoom-out.xpm │ │ ├── subplots.png │ │ ├── subplots.ppm │ │ ├── subplots.xpm │ │ ├── zoom_to_rect.png │ │ ├── zoom_to_rect.ppm │ │ ├── zoom_to_rect.svg │ │ └── zoom_to_rect.xpm │ ├── lineprops.glade │ ├── matplotlibrc │ └── sample_data │ │ ├── AAPL.dat.gz │ │ ├── INTC.dat.gz │ │ ├── Minduka_Present_Blue_Pack.png │ │ ├── README.txt │ │ ├── aapl.csv │ │ ├── aapl.npy.gz │ │ ├── ada.png │ │ ├── axes_grid │ │ └── bivariate_normal.npy │ │ ├── ct.raw.gz │ │ ├── data_x_x2_x3.csv │ │ ├── demodata.csv │ │ ├── eeg.dat │ │ ├── embedding_in_wx3.xrc │ │ ├── goog.npy │ │ ├── grace_hopper.jpg │ │ ├── grace_hopper.png │ │ ├── lena.jpg │ │ ├── lena.png │ │ ├── logo2.png │ │ ├── membrane.dat │ │ ├── msft.csv │ │ └── s1045.ima.gz ├── mpl.py ├── mpl.pyc ├── mpl.pyo ├── offsetbox.py ├── offsetbox.pyc ├── offsetbox.pyo ├── patches.py ├── patches.pyc ├── patches.pyo ├── path.py ├── path.pyc ├── path.pyo ├── patheffects.py ├── patheffects.pyc ├── patheffects.pyo ├── projections │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyo │ ├── geo.py │ ├── geo.pyc │ ├── geo.pyo │ ├── polar.py │ ├── polar.pyc │ └── polar.pyo ├── pylab.py ├── pylab.pyc ├── pylab.pyo ├── pyplot.py ├── pyplot.pyc ├── pyplot.pyo ├── quiver.py ├── quiver.pyc ├── quiver.pyo ├── rcsetup.py ├── rcsetup.pyc ├── rcsetup.pyo ├── sankey.py ├── sankey.pyc ├── sankey.pyo ├── scale.py ├── scale.pyc ├── scale.pyo ├── sphinxext │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyo │ ├── ipython_console_highlighting.py │ ├── ipython_console_highlighting.pyc │ ├── ipython_console_highlighting.pyo │ ├── ipython_directive.py │ ├── ipython_directive.pyc │ ├── ipython_directive.pyo │ ├── mathmpl.py │ ├── mathmpl.pyc │ ├── mathmpl.pyo │ ├── only_directives.py │ ├── only_directives.pyc │ ├── only_directives.pyo │ ├── plot_directive.py │ ├── plot_directive.pyc │ └── plot_directive.pyo ├── spines.py ├── spines.pyc ├── spines.pyo ├── stackplot.py ├── stackplot.pyc ├── stackplot.pyo ├── streamplot.py ├── streamplot.pyc ├── streamplot.pyo ├── table.py ├── table.pyc ├── table.pyo ├── testing │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyo │ ├── compare.py │ ├── compare.pyc │ ├── compare.pyo │ ├── decorators.py │ ├── decorators.pyc │ ├── decorators.pyo │ ├── image_util.py │ ├── image_util.pyc │ ├── image_util.pyo │ ├── jpl_units │ │ ├── Duration.py │ │ ├── Duration.pyc │ │ ├── Duration.pyo │ │ ├── Epoch.py │ │ ├── Epoch.pyc │ │ ├── Epoch.pyo │ │ ├── EpochConverter.py │ │ ├── EpochConverter.pyc │ │ ├── EpochConverter.pyo │ │ ├── StrConverter.py │ │ ├── StrConverter.pyc │ │ ├── StrConverter.pyo │ │ ├── UnitDbl.py │ │ ├── UnitDbl.pyc │ │ ├── UnitDbl.pyo │ │ ├── UnitDblConverter.py │ │ ├── UnitDblConverter.pyc │ │ ├── UnitDblConverter.pyo │ │ ├── UnitDblFormatter.py │ │ ├── UnitDblFormatter.pyc │ │ ├── UnitDblFormatter.pyo │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ └── __init__.pyo │ ├── noseclasses.py │ ├── noseclasses.pyc │ └── noseclasses.pyo ├── texmanager.py ├── texmanager.pyc ├── texmanager.pyo ├── text.py ├── text.pyc ├── text.pyo ├── textpath.py ├── textpath.pyc ├── textpath.pyo ├── ticker.py ├── ticker.pyc ├── ticker.pyo ├── tight_bbox.py ├── tight_bbox.pyc ├── tight_bbox.pyo ├── tight_layout.py ├── tight_layout.pyc ├── tight_layout.pyo ├── transforms.py ├── transforms.pyc ├── transforms.pyo ├── tri │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyo │ ├── triangulation.py │ ├── triangulation.pyc │ ├── triangulation.pyo │ ├── tricontour.py │ ├── tricontour.pyc │ ├── tricontour.pyo │ ├── trifinder.py │ ├── trifinder.pyc │ ├── trifinder.pyo │ ├── triinterpolate.py │ ├── triinterpolate.pyc │ ├── triinterpolate.pyo │ ├── tripcolor.py │ ├── tripcolor.pyc │ ├── tripcolor.pyo │ ├── triplot.py │ ├── triplot.pyc │ ├── triplot.pyo │ ├── trirefine.py │ ├── trirefine.pyc │ ├── trirefine.pyo │ ├── tritools.py │ ├── tritools.pyc │ └── tritools.pyo ├── ttconv.pyd ├── type1font.py ├── type1font.pyc ├── type1font.pyo ├── units.py ├── units.pyc ├── units.pyo ├── widgets.py ├── widgets.pyc └── widgets.pyo ├── matplotlib_test.py ├── mpl_toolkits ├── __init__.py ├── axes_grid │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyo │ ├── anchored_artists.py │ ├── anchored_artists.pyc │ ├── anchored_artists.pyo │ ├── angle_helper.py │ ├── angle_helper.pyc │ ├── angle_helper.pyo │ ├── axes_divider.py │ ├── axes_divider.pyc │ ├── axes_divider.pyo │ ├── axes_grid.py │ ├── axes_grid.pyc │ ├── axes_grid.pyo │ ├── axes_rgb.py │ ├── axes_rgb.pyc │ ├── axes_rgb.pyo │ ├── axes_size.py │ ├── axes_size.pyc │ ├── axes_size.pyo │ ├── axis_artist.py │ ├── axis_artist.pyc │ ├── axis_artist.pyo │ ├── axisline_style.py │ ├── axisline_style.pyc │ ├── axisline_style.pyo │ ├── axislines.py │ ├── axislines.pyc │ ├── axislines.pyo │ ├── clip_path.py │ ├── clip_path.pyc │ ├── clip_path.pyo │ ├── colorbar.py │ ├── colorbar.pyc │ ├── colorbar.pyo │ ├── floating_axes.py │ ├── floating_axes.pyc │ ├── floating_axes.pyo │ ├── grid_finder.py │ ├── grid_finder.pyc │ ├── grid_finder.pyo │ ├── grid_helper_curvelinear.py │ ├── grid_helper_curvelinear.pyc │ ├── grid_helper_curvelinear.pyo │ ├── inset_locator.py │ ├── inset_locator.pyc │ ├── inset_locator.pyo │ ├── parasite_axes.py │ ├── parasite_axes.pyc │ └── parasite_axes.pyo ├── axes_grid1 │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyo │ ├── anchored_artists.py │ ├── anchored_artists.pyc │ ├── anchored_artists.pyo │ ├── axes_divider.py │ ├── axes_divider.pyc │ ├── axes_divider.pyo │ ├── axes_grid.py │ ├── axes_grid.pyc │ ├── axes_grid.pyo │ ├── axes_rgb.py │ ├── axes_rgb.pyc │ ├── axes_rgb.pyo │ ├── axes_size.py │ ├── axes_size.pyc │ ├── axes_size.pyo │ ├── colorbar.py │ ├── colorbar.pyc │ ├── colorbar.pyo │ ├── inset_locator.py │ ├── inset_locator.pyc │ ├── inset_locator.pyo │ ├── mpl_axes.py │ ├── mpl_axes.pyc │ ├── mpl_axes.pyo │ ├── parasite_axes.py │ ├── parasite_axes.pyc │ └── parasite_axes.pyo ├── axisartist │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyo │ ├── angle_helper.py │ ├── angle_helper.pyc │ ├── angle_helper.pyo │ ├── axis_artist.py │ ├── axis_artist.pyc │ ├── axis_artist.pyo │ ├── axisline_style.py │ ├── axisline_style.pyc │ ├── axisline_style.pyo │ ├── axislines.py │ ├── axislines.pyc │ ├── axislines.pyo │ ├── clip_path.py │ ├── clip_path.pyc │ ├── clip_path.pyo │ ├── floating_axes.py │ ├── floating_axes.pyc │ ├── floating_axes.pyo │ ├── grid_finder.py │ ├── grid_finder.pyc │ ├── grid_finder.pyo │ ├── grid_helper_curvelinear.py │ ├── grid_helper_curvelinear.pyc │ └── grid_helper_curvelinear.pyo ├── exceltools.py ├── exceltools.pyc ├── exceltools.pyo ├── gtktools.py ├── gtktools.pyc ├── gtktools.pyo └── mplot3d │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyo │ ├── art3d.py │ ├── art3d.pyc │ ├── art3d.pyo │ ├── axes3d.py │ ├── axes3d.pyc │ ├── axes3d.pyo │ ├── axis3d.py │ ├── axis3d.pyc │ ├── axis3d.pyo │ ├── proj3d.py │ ├── proj3d.pyc │ └── proj3d.pyo ├── pyparsing.py ├── pyparsing.pyc ├── six.py ├── six.pyc └── test_link_mpl_toolkits.py /LICENSE.md: -------------------------------------------------------------------------------- 1 | COPYRIGHT (c) 2014-2015 Xiaojun GU 2 | 3 | MIT License 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining 6 | a copy of this software and associated documentation files (the 7 | "Software"), to deal in the Software without restriction, including 8 | without limitation the rights to use, copy, modify, merge, publish, 9 | distribute, sublicense, and/or sell copies of the Software, and to 10 | permit persons to whom the Software is furnished to do so, subject to 11 | the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be 14 | included in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 20 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 22 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # matplotlib-4-abaqus 2 | 3 | Allow abaqus(v6.14-1) to use matplotlib in its build-in python scripts environment. 4 | 5 | The advantage to let abaqus python use matplotlib module is you can use python to read your abaqus odb file and operate the result data like stress and strain, and the plot it out and save as pdf or eps file that can used in latex. 6 | 7 | ## Good news 8 | `abaqus 2020` officially include matplotlib (2.2.4)! 9 | 10 | ## python modules 11 | This project include the following python modules. ONLY tested on `abaqus 6.14-1`. 12 | * matplotlib (1.3.1) 13 | * dateutil (2.4.1) 14 | * six (1.9.0) 15 | * pyparsing (2.0.3) 16 | 17 | ## how it works 18 | Copy the python modules to the abaqus python package folder: 19 | ``` 20 | ...\SIMULIA\Abaqus\6.14-1\tools\SMApy\python2.7\Lib\site-packages 21 | ``` 22 | 23 | ## test 24 | * Run the python script `matplotlib_test.py` in abaqus CAE. if abaqus build-in python can include the matplotlib module successfully, there will be a plot window pop out. 25 | 26 | * Run the python script`test_link_mpl_toolkits.py` in abaqus CAE, to test if the abaqus python can import `mpl_toolkits` module. 27 | 28 | ## known bugs: 29 | * only works on Windows platform; 30 | * On Windows 10, it seems that you cannot run the `.py` in CAE(CAE will dead). You should use matplotlib under Abaqus command line: 31 | ``` 32 | abaqus cae -noGUI xxx.py 33 | ``` 34 | 35 | ## License 36 | `matplotlib-4-abaqus` is under the MIT License. 37 | -------------------------------------------------------------------------------- /dateutil/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | __version__ = "2.4.1" 3 | -------------------------------------------------------------------------------- /dateutil/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/dateutil/__init__.pyc -------------------------------------------------------------------------------- /dateutil/easter.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | This module offers a generic easter computing method for any given year, using 4 | Western, Orthodox or Julian algorithms. 5 | """ 6 | 7 | import datetime 8 | 9 | __all__ = ["easter", "EASTER_JULIAN", "EASTER_ORTHODOX", "EASTER_WESTERN"] 10 | 11 | EASTER_JULIAN = 1 12 | EASTER_ORTHODOX = 2 13 | EASTER_WESTERN = 3 14 | 15 | 16 | def easter(year, method=EASTER_WESTERN): 17 | """ 18 | This method was ported from the work done by GM Arts, 19 | on top of the algorithm by Claus Tondering, which was 20 | based in part on the algorithm of Ouding (1940), as 21 | quoted in "Explanatory Supplement to the Astronomical 22 | Almanac", P. Kenneth Seidelmann, editor. 23 | 24 | This algorithm implements three different easter 25 | calculation methods: 26 | 27 | 1 - Original calculation in Julian calendar, valid in 28 | dates after 326 AD 29 | 2 - Original method, with date converted to Gregorian 30 | calendar, valid in years 1583 to 4099 31 | 3 - Revised method, in Gregorian calendar, valid in 32 | years 1583 to 4099 as well 33 | 34 | These methods are represented by the constants: 35 | 36 | EASTER_JULIAN = 1 37 | EASTER_ORTHODOX = 2 38 | EASTER_WESTERN = 3 39 | 40 | The default method is method 3. 41 | 42 | More about the algorithm may be found at: 43 | 44 | http://users.chariot.net.au/~gmarts/eastalg.htm 45 | 46 | and 47 | 48 | http://www.tondering.dk/claus/calendar.html 49 | 50 | """ 51 | 52 | if not (1 <= method <= 3): 53 | raise ValueError("invalid method") 54 | 55 | # g - Golden year - 1 56 | # c - Century 57 | # h - (23 - Epact) mod 30 58 | # i - Number of days from March 21 to Paschal Full Moon 59 | # j - Weekday for PFM (0=Sunday, etc) 60 | # p - Number of days from March 21 to Sunday on or before PFM 61 | # (-6 to 28 methods 1 & 3, to 56 for method 2) 62 | # e - Extra days to add for method 2 (converting Julian 63 | # date to Gregorian date) 64 | 65 | y = year 66 | g = y % 19 67 | e = 0 68 | if method < 3: 69 | # Old method 70 | i = (19*g + 15) % 30 71 | j = (y + y//4 + i) % 7 72 | if method == 2: 73 | # Extra dates to convert Julian to Gregorian date 74 | e = 10 75 | if y > 1600: 76 | e = e + y//100 - 16 - (y//100 - 16)//4 77 | else: 78 | # New method 79 | c = y//100 80 | h = (c - c//4 - (8*c + 13)//25 + 19*g + 15) % 30 81 | i = h - (h//28)*(1 - (h//28)*(29//(h + 1))*((21 - g)//11)) 82 | j = (y + y//4 + i + 2 - c + c//4) % 7 83 | 84 | # p can be from -6 to 56 corresponding to dates 22 March to 23 May 85 | # (later dates apply to method 2, although 23 May never actually occurs) 86 | p = i - j + e 87 | d = 1 + (p + 27 + (p + 6)//40) % 31 88 | m = 3 + (p + 26)//30 89 | return datetime.date(int(y), int(m), int(d)) 90 | -------------------------------------------------------------------------------- /dateutil/easter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/dateutil/easter.pyc -------------------------------------------------------------------------------- /dateutil/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/dateutil/parser.py -------------------------------------------------------------------------------- /dateutil/parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/dateutil/parser.pyc -------------------------------------------------------------------------------- /dateutil/relativedelta.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/dateutil/relativedelta.pyc -------------------------------------------------------------------------------- /dateutil/rrule.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/dateutil/rrule.pyc -------------------------------------------------------------------------------- /dateutil/tz.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/dateutil/tz.pyc -------------------------------------------------------------------------------- /dateutil/tzwin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/dateutil/tzwin.pyc -------------------------------------------------------------------------------- /dateutil/zoneinfo/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/dateutil/zoneinfo/__init__.pyc -------------------------------------------------------------------------------- /dateutil/zoneinfo/dateutil-zoneinfo.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz -------------------------------------------------------------------------------- /matplotlib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/__init__.pyc -------------------------------------------------------------------------------- /matplotlib/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/__init__.pyo -------------------------------------------------------------------------------- /matplotlib/_cm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_cm.pyc -------------------------------------------------------------------------------- /matplotlib/_cm.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_cm.pyo -------------------------------------------------------------------------------- /matplotlib/_cntr.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_cntr.pyd -------------------------------------------------------------------------------- /matplotlib/_delaunay.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_delaunay.pyd -------------------------------------------------------------------------------- /matplotlib/_image.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_image.pyd -------------------------------------------------------------------------------- /matplotlib/_mathtext_data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_mathtext_data.pyc -------------------------------------------------------------------------------- /matplotlib/_mathtext_data.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_mathtext_data.pyo -------------------------------------------------------------------------------- /matplotlib/_path.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_path.pyd -------------------------------------------------------------------------------- /matplotlib/_png.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_png.pyd -------------------------------------------------------------------------------- /matplotlib/_pylab_helpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_pylab_helpers.pyc -------------------------------------------------------------------------------- /matplotlib/_pylab_helpers.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_pylab_helpers.pyo -------------------------------------------------------------------------------- /matplotlib/_tri.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_tri.pyd -------------------------------------------------------------------------------- /matplotlib/_windowing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/_windowing.pyd -------------------------------------------------------------------------------- /matplotlib/afm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/afm.pyc -------------------------------------------------------------------------------- /matplotlib/afm.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/afm.pyo -------------------------------------------------------------------------------- /matplotlib/animation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/animation.pyc -------------------------------------------------------------------------------- /matplotlib/animation.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/animation.pyo -------------------------------------------------------------------------------- /matplotlib/artist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/artist.pyc -------------------------------------------------------------------------------- /matplotlib/artist.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/artist.pyo -------------------------------------------------------------------------------- /matplotlib/axes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/axes.pyc -------------------------------------------------------------------------------- /matplotlib/axes.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/axes.pyo -------------------------------------------------------------------------------- /matplotlib/axis.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/axis.pyc -------------------------------------------------------------------------------- /matplotlib/axis.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/axis.pyo -------------------------------------------------------------------------------- /matplotlib/backend_bases.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backend_bases.pyc -------------------------------------------------------------------------------- /matplotlib/backend_bases.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backend_bases.pyo -------------------------------------------------------------------------------- /matplotlib/backends/Matplotlib.nib/classes.nib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IBClasses 6 | 7 | 8 | CLASS 9 | FirstResponder 10 | LANGUAGE 11 | ObjC 12 | SUPERCLASS 13 | NSObject 14 | 15 | 16 | ACTIONS 17 | 18 | printFigure 19 | id 20 | quit 21 | id 22 | saveFigure 23 | id 24 | 25 | CLASS 26 | MatplotlibController 27 | LANGUAGE 28 | ObjC 29 | OUTLETS 30 | 31 | plotView 32 | PlotView 33 | plotWindow 34 | NSWindow 35 | 36 | SUPERCLASS 37 | NSObject 38 | 39 | 40 | CLASS 41 | PlotView 42 | LANGUAGE 43 | ObjC 44 | SUPERCLASS 45 | NSImageView 46 | 47 | 48 | CLASS 49 | PlotWindow 50 | LANGUAGE 51 | ObjC 52 | SUPERCLASS 53 | NSWindow 54 | 55 | 56 | IBVersion 57 | 1 58 | 59 | 60 | -------------------------------------------------------------------------------- /matplotlib/backends/Matplotlib.nib/info.nib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IBDocumentLocation 6 | 42 396 439 411 0 0 1280 832 7 | IBFramework Version 8 | 446.1 9 | IBOpenObjects 10 | 11 | 21 12 | 13 | IBSystem Version 14 | 8L127 15 | 16 | 17 | -------------------------------------------------------------------------------- /matplotlib/backends/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | import matplotlib 3 | import inspect 4 | import warnings 5 | 6 | # ipython relies on interactive_bk being defined here 7 | from matplotlib.rcsetup import interactive_bk 8 | 9 | __all__ = ['backend','show','draw_if_interactive', 10 | 'new_figure_manager', 'backend_version'] 11 | 12 | backend = matplotlib.get_backend() # validates, to match all_backends 13 | 14 | def pylab_setup(): 15 | 'return new_figure_manager, draw_if_interactive and show for pylab' 16 | # Import the requested backend into a generic module object 17 | 18 | if backend.startswith('module://'): 19 | backend_name = backend[9:] 20 | else: 21 | backend_name = 'backend_'+backend 22 | backend_name = backend_name.lower() # until we banish mixed case 23 | backend_name = 'matplotlib.backends.%s'%backend_name.lower() 24 | 25 | # the last argument is specifies whether to use absolute or relative 26 | # imports. 0 means only perform absolute imports. 27 | backend_mod = __import__(backend_name, 28 | globals(),locals(),[backend_name],0) 29 | 30 | # Things we pull in from all backends 31 | new_figure_manager = backend_mod.new_figure_manager 32 | 33 | # image backends like pdf, agg or svg do not need to do anything 34 | # for "show" or "draw_if_interactive", so if they are not defined 35 | # by the backend, just do nothing 36 | def do_nothing_show(*args, **kwargs): 37 | frame = inspect.currentframe() 38 | fname = frame.f_back.f_code.co_filename 39 | if fname in ('', ''): 40 | warnings.warn(""" 41 | Your currently selected backend, '%s' does not support show(). 42 | Please select a GUI backend in your matplotlibrc file ('%s') 43 | or with matplotlib.use()""" % 44 | (backend, matplotlib.matplotlib_fname())) 45 | def do_nothing(*args, **kwargs): pass 46 | backend_version = getattr(backend_mod,'backend_version', 'unknown') 47 | show = getattr(backend_mod, 'show', do_nothing_show) 48 | draw_if_interactive = getattr(backend_mod, 'draw_if_interactive', do_nothing) 49 | 50 | # Additional imports which only happen for certain backends. This section 51 | # should probably disappear once all backends are uniform. 52 | if backend.lower() in ['wx','wxagg']: 53 | Toolbar = backend_mod.Toolbar 54 | __all__.append('Toolbar') 55 | 56 | matplotlib.verbose.report('backend %s version %s' % (backend,backend_version)) 57 | 58 | return backend_mod, new_figure_manager, draw_if_interactive, show 59 | 60 | 61 | -------------------------------------------------------------------------------- /matplotlib/backends/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/__init__.pyc -------------------------------------------------------------------------------- /matplotlib/backends/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/__init__.pyo -------------------------------------------------------------------------------- /matplotlib/backends/_backend_agg.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/_backend_agg.pyd -------------------------------------------------------------------------------- /matplotlib/backends/_backend_gdk.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/_backend_gdk.pyd -------------------------------------------------------------------------------- /matplotlib/backends/_gtkagg.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/_gtkagg.pyd -------------------------------------------------------------------------------- /matplotlib/backends/_tkagg.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/_tkagg.pyd -------------------------------------------------------------------------------- /matplotlib/backends/backend_agg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_agg.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_agg.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_agg.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_cairo.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_cairo.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_cairo.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_cairo.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_cocoaagg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_cocoaagg.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_cocoaagg.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_cocoaagg.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_gdk.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gdk.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_gdk.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gdk.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtk.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtk.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtk.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtk.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtk3.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtk3.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtk3.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtk3.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtk3agg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtk3agg.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtk3agg.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtk3agg.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtk3cairo.py: -------------------------------------------------------------------------------- 1 | import backend_gtk3 2 | import backend_cairo 3 | from matplotlib.figure import Figure 4 | 5 | class RendererGTK3Cairo(backend_cairo.RendererCairo): 6 | def set_context(self, ctx): 7 | self.gc.ctx = ctx 8 | 9 | 10 | class FigureCanvasGTK3Cairo(backend_gtk3.FigureCanvasGTK3, 11 | backend_cairo.FigureCanvasCairo): 12 | def __init__(self, figure): 13 | backend_gtk3.FigureCanvasGTK3.__init__(self, figure) 14 | 15 | def _renderer_init(self): 16 | """use cairo renderer""" 17 | self._renderer = RendererGTK3Cairo(self.figure.dpi) 18 | 19 | def _render_figure(self, width, height): 20 | self._renderer.set_width_height (width, height) 21 | self.figure.draw (self._renderer) 22 | 23 | def on_draw_event(self, widget, ctx): 24 | """ GtkDrawable draw event, like expose_event in GTK 2.X 25 | """ 26 | # the _need_redraw flag doesnt work. it sometimes prevents 27 | # the rendering and leaving the canvas blank 28 | #if self._need_redraw: 29 | self._renderer.set_context(ctx) 30 | allocation = self.get_allocation() 31 | x, y, w, h = allocation.x, allocation.y, allocation.width, allocation.height 32 | self._render_figure(w, h) 33 | #self._need_redraw = False 34 | 35 | return False # finish event propagation? 36 | 37 | 38 | class FigureManagerGTK3Cairo(backend_gtk3.FigureManagerGTK3): 39 | pass 40 | 41 | 42 | def new_figure_manager(num, *args, **kwargs): 43 | """ 44 | Create a new figure manager instance 45 | """ 46 | FigureClass = kwargs.pop('FigureClass', Figure) 47 | thisFig = FigureClass(*args, **kwargs) 48 | return new_figure_manager_given_figure(num, thisFig) 49 | 50 | 51 | def new_figure_manager_given_figure(num, figure): 52 | """ 53 | Create a new figure manager instance for the given figure. 54 | """ 55 | canvas = FigureCanvasGTK3Cairo(figure) 56 | manager = FigureManagerGTK3Cairo(canvas, num) 57 | return manager 58 | 59 | 60 | FigureManager = FigureManagerGTK3Cairo 61 | show = backend_gtk3.show 62 | -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtk3cairo.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtk3cairo.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtk3cairo.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtk3cairo.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtkagg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtkagg.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtkagg.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtkagg.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtkcairo.py: -------------------------------------------------------------------------------- 1 | """ 2 | GTK+ Matplotlib interface using cairo (not GDK) drawing operations. 3 | Author: Steve Chaplin 4 | """ 5 | from __future__ import print_function 6 | 7 | import gtk 8 | if gtk.pygtk_version < (2,7,0): 9 | import cairo.gtk 10 | 11 | from matplotlib.backends import backend_cairo 12 | from matplotlib.backends.backend_gtk import * 13 | 14 | backend_version = 'PyGTK(%d.%d.%d) ' % gtk.pygtk_version + \ 15 | 'Pycairo(%s)' % backend_cairo.backend_version 16 | 17 | 18 | _debug = False 19 | #_debug = True 20 | 21 | 22 | def new_figure_manager(num, *args, **kwargs): 23 | """ 24 | Create a new figure manager instance 25 | """ 26 | if _debug: print('backend_gtkcairo.%s()' % fn_name()) 27 | FigureClass = kwargs.pop('FigureClass', Figure) 28 | thisFig = FigureClass(*args, **kwargs) 29 | return new_figure_manager_given_figure(num, thisFig) 30 | 31 | 32 | def new_figure_manager_given_figure(num, figure): 33 | """ 34 | Create a new figure manager instance for the given figure. 35 | """ 36 | canvas = FigureCanvasGTKCairo(figure) 37 | return FigureManagerGTK(canvas, num) 38 | 39 | 40 | class RendererGTKCairo (backend_cairo.RendererCairo): 41 | if gtk.pygtk_version >= (2,7,0): 42 | def set_pixmap (self, pixmap): 43 | self.gc.ctx = pixmap.cairo_create() 44 | else: 45 | def set_pixmap (self, pixmap): 46 | self.gc.ctx = cairo.gtk.gdk_cairo_create (pixmap) 47 | 48 | 49 | class FigureCanvasGTKCairo(backend_cairo.FigureCanvasCairo, FigureCanvasGTK): 50 | filetypes = FigureCanvasGTK.filetypes.copy() 51 | filetypes.update(backend_cairo.FigureCanvasCairo.filetypes) 52 | 53 | def _renderer_init(self): 54 | """Override to use cairo (rather than GDK) renderer""" 55 | if _debug: print('%s.%s()' % (self.__class__.__name__, _fn_name())) 56 | self._renderer = RendererGTKCairo (self.figure.dpi) 57 | 58 | 59 | class FigureManagerGTKCairo(FigureManagerGTK): 60 | def _get_toolbar(self, canvas): 61 | # must be inited after the window, drawingArea and figure 62 | # attrs are set 63 | if matplotlib.rcParams['toolbar']=='classic': 64 | toolbar = NavigationToolbar (canvas, self.window) 65 | elif matplotlib.rcParams['toolbar']=='toolbar2': 66 | toolbar = NavigationToolbar2GTKCairo (canvas, self.window) 67 | else: 68 | toolbar = None 69 | return toolbar 70 | 71 | 72 | class NavigationToolbar2Cairo(NavigationToolbar2GTK): 73 | def _get_canvas(self, fig): 74 | return FigureCanvasGTKCairo(fig) 75 | -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtkcairo.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtkcairo.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_gtkcairo.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_gtkcairo.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_macosx.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_macosx.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_macosx.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_macosx.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_mixed.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_mixed.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_mixed.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_mixed.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_pdf.py -------------------------------------------------------------------------------- /matplotlib/backends/backend_pdf.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_pdf.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_pdf.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_pdf.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_pgf.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_pgf.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_pgf.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_pgf.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_ps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_ps.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_ps.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_ps.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_qt4.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_qt4.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_qt4.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_qt4.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_qt4agg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_qt4agg.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_qt4agg.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_qt4agg.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_svg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_svg.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_svg.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_svg.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_template.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_template.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_template.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_template.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_tkagg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_tkagg.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_tkagg.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_tkagg.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_webagg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_webagg.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_webagg.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_webagg.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_wx.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_wx.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_wx.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_wx.pyo -------------------------------------------------------------------------------- /matplotlib/backends/backend_wxagg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_wxagg.pyc -------------------------------------------------------------------------------- /matplotlib/backends/backend_wxagg.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/backend_wxagg.pyo -------------------------------------------------------------------------------- /matplotlib/backends/qt4_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/qt4_compat.pyc -------------------------------------------------------------------------------- /matplotlib/backends/qt4_compat.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/qt4_compat.pyo -------------------------------------------------------------------------------- /matplotlib/backends/qt4_editor/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | -------------------------------------------------------------------------------- /matplotlib/backends/qt4_editor/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/qt4_editor/__init__.pyc -------------------------------------------------------------------------------- /matplotlib/backends/qt4_editor/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/qt4_editor/__init__.pyo -------------------------------------------------------------------------------- /matplotlib/backends/qt4_editor/figureoptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/qt4_editor/figureoptions.pyc -------------------------------------------------------------------------------- /matplotlib/backends/qt4_editor/figureoptions.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/qt4_editor/figureoptions.pyo -------------------------------------------------------------------------------- /matplotlib/backends/qt4_editor/formlayout.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/qt4_editor/formlayout.pyc -------------------------------------------------------------------------------- /matplotlib/backends/qt4_editor/formlayout.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/qt4_editor/formlayout.pyo -------------------------------------------------------------------------------- /matplotlib/backends/tkagg.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | from matplotlib.backends import _tkagg 3 | import Tkinter as Tk 4 | 5 | def blit(photoimage, aggimage, bbox=None, colormode=1): 6 | tk = photoimage.tk 7 | 8 | if bbox is not None: 9 | bbox_array = bbox.__array__() 10 | else: 11 | bbox_array = None 12 | try: 13 | tk.call("PyAggImagePhoto", photoimage, id(aggimage), colormode, id(bbox_array)) 14 | except Tk.TclError: 15 | try: 16 | try: 17 | _tkagg.tkinit(tk.interpaddr(), 1) 18 | except AttributeError: 19 | _tkagg.tkinit(id(tk), 0) 20 | tk.call("PyAggImagePhoto", photoimage, id(aggimage), colormode, id(bbox_array)) 21 | except (ImportError, AttributeError, Tk.TclError): 22 | raise 23 | 24 | def test(aggimage): 25 | import time 26 | r = Tk.Tk() 27 | c = Tk.Canvas(r, width=aggimage.width, height=aggimage.height) 28 | c.pack() 29 | p = Tk.PhotoImage(width=aggimage.width, height=aggimage.height) 30 | blit(p, aggimage) 31 | c.create_image(aggimage.width,aggimage.height,image=p) 32 | blit(p, aggimage) 33 | while 1: r.update_idletasks() 34 | 35 | -------------------------------------------------------------------------------- /matplotlib/backends/tkagg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/tkagg.pyc -------------------------------------------------------------------------------- /matplotlib/backends/tkagg.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/tkagg.pyo -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/all_figures.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 41 | 42 | MPL | WebAgg current figures 43 | 44 | 45 | 46 |
47 | {% for (fig_id, fig_manager) in figures %} 48 | {% set fig_label='Figure: {}'.format(fig_manager.canvas.figure.get_label()) %} 49 | 50 | {% if fig_label == 'Figure: ' %} 51 | {% set fig_label="Figure {}".format(fig_id) %} 52 | {% end %} 53 | 54 |
55 |

56 | 57 | {{ fig_label }} 58 | 59 | 60 |

61 |
62 |
63 |
64 | {% end %} 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/css/boilerplate.css: -------------------------------------------------------------------------------- 1 | /** 2 | * HTML5 ✰ Boilerplate 3 | * 4 | * style.css contains a reset, font normalization and some base styles. 5 | * 6 | * Credit is left where credit is due. 7 | * Much inspiration was taken from these projects: 8 | * - yui.yahooapis.com/2.8.1/build/base/base.css 9 | * - camendesign.com/design/ 10 | * - praegnanz.de/weblog/htmlcssjs-kickstart 11 | */ 12 | 13 | 14 | /** 15 | * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline) 16 | * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark 17 | * html5doctor.com/html-5-reset-stylesheet/ 18 | */ 19 | 20 | html, body, div, span, object, iframe, 21 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 22 | abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, 23 | small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, 24 | fieldset, form, label, legend, 25 | table, caption, tbody, tfoot, thead, tr, th, td, 26 | article, aside, canvas, details, figcaption, figure, 27 | footer, header, hgroup, menu, nav, section, summary, 28 | time, mark, audio, video { 29 | margin: 0; 30 | padding: 0; 31 | border: 0; 32 | font-size: 100%; 33 | font: inherit; 34 | vertical-align: baseline; 35 | } 36 | 37 | sup { vertical-align: super; } 38 | sub { vertical-align: sub; } 39 | 40 | article, aside, details, figcaption, figure, 41 | footer, header, hgroup, menu, nav, section { 42 | display: block; 43 | } 44 | 45 | blockquote, q { quotes: none; } 46 | 47 | blockquote:before, blockquote:after, 48 | q:before, q:after { content: ""; content: none; } 49 | 50 | ins { background-color: #ff9; color: #000; text-decoration: none; } 51 | 52 | mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; } 53 | 54 | del { text-decoration: line-through; } 55 | 56 | abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; } 57 | 58 | table { border-collapse: collapse; border-spacing: 0; } 59 | 60 | hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } 61 | 62 | input, select { vertical-align: middle; } 63 | 64 | 65 | /** 66 | * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/ 67 | */ 68 | 69 | body { font:13px/1.231 sans-serif; *font-size:small; } /* Hack retained to preserve specificity */ 70 | select, input, textarea, button { font:99% sans-serif; } 71 | 72 | /* Normalize monospace sizing: 73 | en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */ 74 | pre, code, kbd, samp { font-family: monospace, sans-serif; } 75 | 76 | em,i { font-style: italic; } 77 | b,strong { font-weight: bold; } 78 | -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/css/fbm.css: -------------------------------------------------------------------------------- 1 | 2 | /* Flexible box model classes */ 3 | /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */ 4 | 5 | .hbox { 6 | display: -webkit-box; 7 | -webkit-box-orient: horizontal; 8 | -webkit-box-align: stretch; 9 | 10 | display: -moz-box; 11 | -moz-box-orient: horizontal; 12 | -moz-box-align: stretch; 13 | 14 | display: box; 15 | box-orient: horizontal; 16 | box-align: stretch; 17 | } 18 | 19 | .hbox > * { 20 | -webkit-box-flex: 0; 21 | -moz-box-flex: 0; 22 | box-flex: 0; 23 | } 24 | 25 | .vbox { 26 | display: -webkit-box; 27 | -webkit-box-orient: vertical; 28 | -webkit-box-align: stretch; 29 | 30 | display: -moz-box; 31 | -moz-box-orient: vertical; 32 | -moz-box-align: stretch; 33 | 34 | display: box; 35 | box-orient: vertical; 36 | box-align: stretch; 37 | } 38 | 39 | .vbox > * { 40 | -webkit-box-flex: 0; 41 | -moz-box-flex: 0; 42 | box-flex: 0; 43 | } 44 | 45 | .reverse { 46 | -webkit-box-direction: reverse; 47 | -moz-box-direction: reverse; 48 | box-direction: reverse; 49 | } 50 | 51 | .box-flex0 { 52 | -webkit-box-flex: 0; 53 | -moz-box-flex: 0; 54 | box-flex: 0; 55 | } 56 | 57 | .box-flex1, .box-flex { 58 | -webkit-box-flex: 1; 59 | -moz-box-flex: 1; 60 | box-flex: 1; 61 | } 62 | 63 | .box-flex2 { 64 | -webkit-box-flex: 2; 65 | -moz-box-flex: 2; 66 | box-flex: 2; 67 | } 68 | 69 | .box-group1 { 70 | -webkit-box-flex-group: 1; 71 | -moz-box-flex-group: 1; 72 | box-flex-group: 1; 73 | } 74 | 75 | .box-group2 { 76 | -webkit-box-flex-group: 2; 77 | -moz-box-flex-group: 2; 78 | box-flex-group: 2; 79 | } 80 | 81 | .start { 82 | -webkit-box-pack: start; 83 | -moz-box-pack: start; 84 | box-pack: start; 85 | } 86 | 87 | .end { 88 | -webkit-box-pack: end; 89 | -moz-box-pack: end; 90 | box-pack: end; 91 | } 92 | 93 | .center { 94 | -webkit-box-pack: center; 95 | -moz-box-pack: center; 96 | box-pack: center; 97 | } 98 | -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/css/page.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Primary styles 3 | * 4 | * Author: IPython Development Team 5 | */ 6 | 7 | 8 | body { 9 | background-color: white; 10 | /* This makes sure that the body covers the entire window and needs to 11 | be in a different element than the display: box in wrapper below */ 12 | position: absolute; 13 | left: 0px; 14 | right: 0px; 15 | top: 0px; 16 | bottom: 0px; 17 | overflow: visible; 18 | } 19 | 20 | 21 | div#header { 22 | /* Initially hidden to prevent FLOUC */ 23 | display: none; 24 | position: relative; 25 | height: 40px; 26 | padding: 5px; 27 | margin: 0px; 28 | width: 100%; 29 | } 30 | 31 | span#ipython_notebook { 32 | position: absolute; 33 | padding: 2px 2px 2px 5px; 34 | } 35 | 36 | span#ipython_notebook img { 37 | font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; 38 | height: 24px; 39 | text-decoration:none; 40 | display: inline; 41 | color: black; 42 | } 43 | 44 | #site { 45 | width: 100%; 46 | display: none; 47 | } 48 | 49 | /* We set the fonts by hand here to override the values in the theme */ 50 | .ui-widget { 51 | font-family: "Lucinda Grande", "Lucinda Sans Unicode", Helvetica, Arial, Verdana, sans-serif; 52 | } 53 | 54 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { 55 | font-family: "Lucinda Grande", "Lucinda Sans Unicode", Helvetica, Arial, Verdana, sans-serif; 56 | } 57 | 58 | /* Smaller buttons */ 59 | .ui-button .ui-button-text { 60 | padding: 0.2em 0.8em; 61 | font-size: 77%; 62 | } 63 | 64 | input.ui-button { 65 | padding: 0.3em 0.9em; 66 | } 67 | 68 | span#login_widget { 69 | float: right; 70 | } 71 | 72 | .border-box-sizing { 73 | box-sizing: border-box; 74 | -moz-box-sizing: border-box; 75 | -webkit-box-sizing: border-box; 76 | } 77 | 78 | -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/jquery/js/jquery.autogrow.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Auto Grow Textarea Plugin 3 | * by Jevin 5/11/2010 4 | * http://www.technoreply.com/autogrow-textarea-plugin/ 5 | * 6 | * Modified by Rob G (aka Fudgey/Mottie) 7 | * - Converted into a plugin 8 | * - Added ability to calculate approximate # cols when textarea is set to 100% 9 | * 10 | * Simplified by Brian Granger on 5/2/2011 11 | */ 12 | 13 | (function($) { 14 | $.fn.autogrow = function() { 15 | 16 | var grow = function(d) { 17 | var linesCount = 0; 18 | // modified split rule from 19 | // http://stackoverflow.com/questions/2035910/how-to-get-the-number-of-lines-in-a-textarea/2036424#2036424 20 | var lines = d.txt.value.split(/\r|\r\n|\n/); 21 | linesCount = lines.length; 22 | if (linesCount >= d.rowsDefault) { 23 | d.txt.rows = linesCount; 24 | } else { 25 | d.txt.rows = d.rowsDefault; 26 | } 27 | }; 28 | 29 | return this.each(function() { 30 | var d = { 31 | colsDefault : 0, 32 | rowsDefault : 1, 33 | txt : this, 34 | $txt : $(this) 35 | }; 36 | d.txt.onkeyup = function() { 37 | grow(d); 38 | }; 39 | grow(d); 40 | }); 41 | }; 42 | })(jQuery); 43 | -------------------------------------------------------------------------------- /matplotlib/backends/web_backend/single_figure.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 35 | 36 | {% set fig_label='Figure: {}'.format(canvas.figure.get_label()) %} 37 | 38 | {% if fig_label == 'Figure: ' %} 39 | {% set fig_label="Figure {}".format(fig_id) %} 40 | {% end %} 41 | 42 | MPL | {{ fig_label }} 43 | 44 | 45 | 46 | 47 |
48 |

49 | {{ fig_label }} 50 |

51 |
52 |
53 |
54 |
55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /matplotlib/backends/windowing.py: -------------------------------------------------------------------------------- 1 | """ 2 | MS Windows-specific helper for the TkAgg backend. 3 | 4 | With rcParams['tk.window_focus'] default of False, it is 5 | effectively disabled. 6 | 7 | It uses a tiny C++ extension module to access MS Win functions. 8 | """ 9 | from __future__ import print_function 10 | from matplotlib import rcParams 11 | 12 | try: 13 | if not rcParams['tk.window_focus']: 14 | raise ImportError 15 | from matplotlib._windowing import GetForegroundWindow, SetForegroundWindow 16 | except ImportError: 17 | def GetForegroundWindow(): 18 | return 0 19 | def SetForegroundWindow(hwnd): 20 | pass 21 | 22 | class FocusManager: 23 | def __init__(self): 24 | self._shellWindow = GetForegroundWindow() 25 | 26 | def __del__(self): 27 | SetForegroundWindow(self._shellWindow) 28 | -------------------------------------------------------------------------------- /matplotlib/backends/windowing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/windowing.pyc -------------------------------------------------------------------------------- /matplotlib/backends/windowing.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/backends/windowing.pyo -------------------------------------------------------------------------------- /matplotlib/bezier.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/bezier.pyc -------------------------------------------------------------------------------- /matplotlib/bezier.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/bezier.pyo -------------------------------------------------------------------------------- /matplotlib/blocking_input.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/blocking_input.pyc -------------------------------------------------------------------------------- /matplotlib/blocking_input.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/blocking_input.pyo -------------------------------------------------------------------------------- /matplotlib/cbook.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/cbook.pyc -------------------------------------------------------------------------------- /matplotlib/cbook.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/cbook.pyo -------------------------------------------------------------------------------- /matplotlib/cm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/cm.pyc -------------------------------------------------------------------------------- /matplotlib/cm.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/cm.pyo -------------------------------------------------------------------------------- /matplotlib/collections.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/collections.pyc -------------------------------------------------------------------------------- /matplotlib/collections.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/collections.pyo -------------------------------------------------------------------------------- /matplotlib/colorbar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/colorbar.pyc -------------------------------------------------------------------------------- /matplotlib/colorbar.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/colorbar.pyo -------------------------------------------------------------------------------- /matplotlib/colors.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/colors.pyc -------------------------------------------------------------------------------- /matplotlib/colors.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/colors.pyo -------------------------------------------------------------------------------- /matplotlib/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/compat/__init__.py -------------------------------------------------------------------------------- /matplotlib/compat/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/compat/__init__.pyc -------------------------------------------------------------------------------- /matplotlib/compat/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/compat/__init__.pyo -------------------------------------------------------------------------------- /matplotlib/compat/subprocess.py: -------------------------------------------------------------------------------- 1 | """ 2 | A replacement wrapper around the subprocess module, with a number of 3 | work-arounds: 4 | - Provides the check_output function (which subprocess only provides from Python 5 | 2.7 onwards). 6 | - Provides a stub implementation of subprocess members on Google App Engine 7 | (which are missing in subprocess). 8 | 9 | Instead of importing subprocess, other modules should use this as follows: 10 | 11 | from matplotlib.compat import subprocess 12 | 13 | This module is safe to import from anywhere within matplotlib. 14 | """ 15 | 16 | from __future__ import absolute_import # Required to import subprocess 17 | from __future__ import print_function 18 | 19 | import subprocess 20 | 21 | __all__ = ['Popen', 'PIPE', 'STDOUT', 'check_output'] 22 | 23 | 24 | if hasattr(subprocess, 'Popen'): 25 | Popen = subprocess.Popen 26 | # Assume that it also has the other constants. 27 | PIPE = subprocess.PIPE 28 | STDOUT = subprocess.STDOUT 29 | else: 30 | # In restricted environments (such as Google App Engine), these are 31 | # non-existent. Replace them with dummy versions that always raise OSError. 32 | def Popen(*args, **kwargs): 33 | raise OSError("subprocess.Popen is not supported") 34 | PIPE = -1 35 | STDOUT = -2 36 | 37 | 38 | def _check_output(*popenargs, **kwargs): 39 | r"""Run command with arguments and return its output as a byte 40 | string. 41 | 42 | If the exit code was non-zero it raises a CalledProcessError. The 43 | CalledProcessError object will have the return code in the 44 | returncode 45 | attribute and output in the output attribute. 46 | 47 | The arguments are the same as for the Popen constructor. Example:: 48 | 49 | >>> check_output(["ls", "-l", "/dev/null"]) 50 | 'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' 51 | 52 | The stdout argument is not allowed as it is used internally. 53 | To capture standard error in the result, use stderr=STDOUT.:: 54 | 55 | >>> check_output(["/bin/sh", "-c", 56 | ... "ls -l non_existent_file ; exit 0"], 57 | ... stderr=STDOUT) 58 | 'ls: non_existent_file: No such file or directory\n' 59 | """ 60 | if 'stdout' in kwargs: 61 | raise ValueError('stdout argument not allowed, it will be overridden.') 62 | process = Popen(stdout=PIPE, *popenargs, **kwargs) 63 | output, unused_err = process.communicate() 64 | retcode = process.poll() 65 | if retcode: 66 | cmd = kwargs.get("args") 67 | if cmd is None: 68 | cmd = popenargs[0] 69 | raise subprocess.CalledProcessError(retcode, cmd, output=output) 70 | return output 71 | 72 | 73 | # python2.7's subprocess provides a check_output method 74 | if hasattr(subprocess, 'check_output'): 75 | check_output = subprocess.check_output 76 | else: 77 | check_output = _check_output 78 | 79 | CalledProcessError = subprocess.CalledProcessError 80 | -------------------------------------------------------------------------------- /matplotlib/compat/subprocess.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/compat/subprocess.pyc -------------------------------------------------------------------------------- /matplotlib/compat/subprocess.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/compat/subprocess.pyo -------------------------------------------------------------------------------- /matplotlib/container.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/container.pyc -------------------------------------------------------------------------------- /matplotlib/container.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/container.pyo -------------------------------------------------------------------------------- /matplotlib/contour.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/contour.pyc -------------------------------------------------------------------------------- /matplotlib/contour.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/contour.pyo -------------------------------------------------------------------------------- /matplotlib/dates.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/dates.pyc -------------------------------------------------------------------------------- /matplotlib/dates.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/dates.pyo -------------------------------------------------------------------------------- /matplotlib/delaunay/__init__.py: -------------------------------------------------------------------------------- 1 | """Delaunay triangulation and interpolation tools. 2 | 3 | :Author: Robert Kern 4 | :Copyright: Copyright 2005 Robert Kern. 5 | :License: BSD-style license. See LICENSE.txt in the scipy source directory. 6 | """ 7 | 8 | from __future__ import print_function 9 | from matplotlib._delaunay import delaunay 10 | from triangulate import * 11 | from interpolate import * 12 | __version__ = "0.2" 13 | -------------------------------------------------------------------------------- /matplotlib/delaunay/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/delaunay/__init__.pyc -------------------------------------------------------------------------------- /matplotlib/delaunay/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/delaunay/__init__.pyo -------------------------------------------------------------------------------- /matplotlib/delaunay/interpolate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/delaunay/interpolate.pyc -------------------------------------------------------------------------------- /matplotlib/delaunay/interpolate.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/delaunay/interpolate.pyo -------------------------------------------------------------------------------- /matplotlib/delaunay/testfuncs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/delaunay/testfuncs.pyc -------------------------------------------------------------------------------- /matplotlib/delaunay/testfuncs.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/delaunay/testfuncs.pyo -------------------------------------------------------------------------------- /matplotlib/delaunay/triangulate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/delaunay/triangulate.pyc -------------------------------------------------------------------------------- /matplotlib/delaunay/triangulate.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/delaunay/triangulate.pyo -------------------------------------------------------------------------------- /matplotlib/docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/docstring.pyc -------------------------------------------------------------------------------- /matplotlib/docstring.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/docstring.pyo -------------------------------------------------------------------------------- /matplotlib/dviread.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/dviread.pyc -------------------------------------------------------------------------------- /matplotlib/dviread.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/dviread.pyo -------------------------------------------------------------------------------- /matplotlib/figure.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/figure.pyc -------------------------------------------------------------------------------- /matplotlib/figure.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/figure.pyo -------------------------------------------------------------------------------- /matplotlib/finance.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/finance.pyc -------------------------------------------------------------------------------- /matplotlib/finance.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/finance.pyo -------------------------------------------------------------------------------- /matplotlib/font_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/font_manager.pyc -------------------------------------------------------------------------------- /matplotlib/font_manager.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/font_manager.pyo -------------------------------------------------------------------------------- /matplotlib/fontconfig_pattern.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/fontconfig_pattern.pyc -------------------------------------------------------------------------------- /matplotlib/fontconfig_pattern.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/fontconfig_pattern.pyo -------------------------------------------------------------------------------- /matplotlib/ft2font.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/ft2font.pyd -------------------------------------------------------------------------------- /matplotlib/gridspec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/gridspec.pyc -------------------------------------------------------------------------------- /matplotlib/gridspec.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/gridspec.pyo -------------------------------------------------------------------------------- /matplotlib/hatch.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/hatch.pyc -------------------------------------------------------------------------------- /matplotlib/hatch.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/hatch.pyo -------------------------------------------------------------------------------- /matplotlib/image.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/image.pyc -------------------------------------------------------------------------------- /matplotlib/image.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/image.pyo -------------------------------------------------------------------------------- /matplotlib/legend.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/legend.pyc -------------------------------------------------------------------------------- /matplotlib/legend.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/legend.pyo -------------------------------------------------------------------------------- /matplotlib/legend_handler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/legend_handler.pyc -------------------------------------------------------------------------------- /matplotlib/legend_handler.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/legend_handler.pyo -------------------------------------------------------------------------------- /matplotlib/lines.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/lines.pyc -------------------------------------------------------------------------------- /matplotlib/lines.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/lines.pyo -------------------------------------------------------------------------------- /matplotlib/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/markers.pyc -------------------------------------------------------------------------------- /matplotlib/markers.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/markers.pyo -------------------------------------------------------------------------------- /matplotlib/mathtext.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mathtext.pyc -------------------------------------------------------------------------------- /matplotlib/mathtext.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mathtext.pyo -------------------------------------------------------------------------------- /matplotlib/mlab.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mlab.pyc -------------------------------------------------------------------------------- /matplotlib/mlab.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mlab.pyo -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt: -------------------------------------------------------------------------------- 1 | Font Metrics for the 14 PDF Core Fonts 2 | ====================================== 3 | 4 | This directory contains font metrics for the 14 PDF Core Fonts, 5 | downloaded from Adobe. The title and this paragraph were added by 6 | Matplotlib developers. The download URL was 7 | . 8 | 9 | This file and the 14 PostScript(R) AFM files it accompanies may be used, copied, 10 | and distributed for any purpose and without charge, with or without modification, 11 | provided that all copyright notices are retained; that the AFM files are not 12 | distributed without this file; that all modifications to this file or any of 13 | the AFM files are prominently noted in the modified file(s); and that this 14 | paragraph is not modified. Adobe Systems has no responsibility or obligation 15 | to support the use of the AFM files. 16 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/README.TXT: -------------------------------------------------------------------------------- 1 | Contained herin is the Bitstream Vera font family. 2 | 3 | The Copyright information is found in the COPYRIGHT.TXT file (along 4 | with being incoporated into the fonts themselves). 5 | 6 | The releases notes are found in the file "RELEASENOTES.TXT". 7 | 8 | We hope you enjoy Vera! 9 | 10 | Bitstream, Inc. 11 | The Gnome Project 12 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/Vera.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/VeraBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/VeraBI.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/VeraBd.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/VeraIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/VeraIt.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/VeraMoBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/VeraMoBI.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/VeraMoBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/VeraMoBd.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/VeraMoIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/VeraMoIt.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/VeraMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/VeraMono.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/VeraSe.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/VeraSe.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/VeraSeBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/VeraSeBd.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/cmb10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/cmb10.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/cmex10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/cmex10.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/cmmi10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/cmr10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/cmr10.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/cmss10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/cmss10.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/cmsy10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/fonts/ttf/cmtt10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/back.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/back.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/back.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/back.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | ]> 8 | 9 | 21 | 23 | 32 | 36 | 40 | 44 | 45 | 46 | 48 | 53 | 58 | 63 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/filesave.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/filesave.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/filesave.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/forward.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/forward.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/forward.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | ]> 8 | 9 | 21 | 23 | 32 | 36 | 40 | 44 | 45 | 46 | 48 | 53 | 58 | 63 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/hand.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/hand.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/hand.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/home.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/home.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/home.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/matplotlib.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/matplotlib.gif -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/matplotlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/matplotlib.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/move.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/move.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/move.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/move.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *move[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 26 1", 5 | " c black", 6 | ". c #0B5D7D", 7 | "X c #0B5D7E", 8 | "o c #0B5E7D", 9 | "O c #0D5979", 10 | "+ c #0D5B7D", 11 | "@ c #0C5C7C", 12 | "# c #0C5C7D", 13 | "$ c #0C5D7D", 14 | "% c #0D5C7D", 15 | "& c #0D5D7D", 16 | "* c #0C5C7E", 17 | "= c #0C5D7E", 18 | "- c #0D5C7E", 19 | "; c #0D5D7E", 20 | ": c #0C5E7D", 21 | "> c #0C5E7E", 22 | ", c #0D5E7E", 23 | "< c #0E5C7E", 24 | "1 c #0E5C7F", 25 | "2 c #004080", 26 | "3 c #095B80", 27 | "4 c #0D5D80", 28 | "5 c #0E5C80", 29 | "6 c #006080", 30 | "7 c None", 31 | /* pixels */ 32 | "777777777777777777777777", 33 | "77777777772o677777777777", 34 | "7777777777< c #B2C7DB", 17 | ", c #9CB7D1", 18 | "' c #9AB5CF", 19 | ") c #B6CADD", 20 | "! c #5B88B2", 21 | "~ c #A4BDD5", 22 | "{ c #2A435B", 23 | "] c #5080AD", 24 | "^ c #97B3CE", 25 | "/ c #080D11", 26 | "( c #5F8BB4", 27 | "_ c #95B2CE", 28 | ": c #4C79A3", 29 | " ", 30 | " ", 31 | " ....... ", 32 | " .+@#$%. ", 33 | " .&*=-;. ", 34 | " .>,'-;. ", 35 | " .),'-;. ", 36 | " .)@@-;. ", 37 | " ....)',-;.... ", 38 | " .!=~*,---{. ", 39 | " .],,,--{. ", 40 | " .]^*-{. ", 41 | " /(_{. ", 42 | " .:. ", 43 | " . ", 44 | " "}; 45 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_left.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/stock_left.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_left.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stock_left_xpm[] = { 3 | "16 16 26 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #C4D4E3", 7 | "@ c #A3BCD4", 8 | "# c #A6BED5", 9 | "$ c #AAC1D7", 10 | "% c #ABC2D8", 11 | "& c #AFC5DA", 12 | "* c #AEC4D9", 13 | "= c #6892B9", 14 | "- c #9CB7D1", 15 | "; c #A4BDD5", 16 | "> c #9FB9D2", 17 | ", c #9BB6D0", 18 | "' c #9AB5CF", 19 | ") c #49759E", 20 | "! c #1C2D3D", 21 | "~ c #C5D5E4", 22 | "{ c #A0BAD3", 23 | "] c #9EB8D1", 24 | "^ c #4B78A2", 25 | "/ c #2A435B", 26 | "( c #3F6588", 27 | "_ c #34536F", 28 | ": c #29425A", 29 | "< c #2D4760", 30 | " ", 31 | " . ", 32 | " .. ", 33 | " .+. ", 34 | " .+@....... ", 35 | " .+#$%&%*@=. ", 36 | " .+-;@>,,>'). ", 37 | " !~>{]]->>>>^. ", 38 | " ./((((((((_. ", 39 | " ./((:::::<. ", 40 | " ./(....... ", 41 | " ./. ", 42 | " .. ", 43 | " . ", 44 | " ", 45 | " "}; 46 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_refresh.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/stock_refresh.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_refresh.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stock_refresh_xpm[] = { 3 | "16 16 16 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #8FA8BE", 7 | "@ c #D5DEE6", 8 | "# c #BBCBD8", 9 | "$ c #A6BACB", 10 | "% c #A2B7C9", 11 | "& c #83A0B8", 12 | "* c #7393AE", 13 | "= c #4F6F8A", 14 | "- c #48667F", 15 | "; c #92ABC0", 16 | "> c #33485A", 17 | ", c #22303B", 18 | "' c #7897B1", 19 | ") c #4B6A84", 20 | " ", 21 | " . ", 22 | " ..+. ", 23 | " .@#$%. ", 24 | " .&*==-. ", 25 | " .;>.,. ", 26 | " .'. . . ", 27 | " .). .. ", 28 | " .. .@. ", 29 | " . . .=. ", 30 | " .@.>=. ", 31 | " .@===>. ", 32 | " .'=>>. ", 33 | " .'.. ", 34 | " . ", 35 | " "}; 36 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_right.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/stock_right.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_right.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stock_right_xpm[] = { 3 | "16 16 25 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #5B88B2", 7 | "@ c #9EB8D1", 8 | "# c #5080AD", 9 | "$ c #B5C9DC", 10 | "% c #AFC5DA", 11 | "& c #B2C7DB", 12 | "* c #B6CADD", 13 | "= c #A4BDD5", 14 | "- c #9CB7D1", 15 | "; c #080D11", 16 | "> c #9BB6D0", 17 | ", c #A0BAD3", 18 | "' c #9AB5CF", 19 | ") c #97B3CE", 20 | "! c #5F8BB4", 21 | "~ c #91B0CC", 22 | "{ c #95B2CE", 23 | "] c #4C79A3", 24 | "^ c #49749C", 25 | "/ c #3F6588", 26 | "( c #2A435B", 27 | "_ c #456F96", 28 | ": c #375978", 29 | " ", 30 | " . ", 31 | " .. ", 32 | " .+. ", 33 | " .......@#. ", 34 | " .$%&***=-#; ", 35 | " .>,-->',-)!. ", 36 | " .~@''>---,{]. ", 37 | " .^////////(. ", 38 | " ._::::://(. ", 39 | " ......./(. ", 40 | " .(. ", 41 | " .. ", 42 | " . ", 43 | " ", 44 | " "}; 45 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_save_as.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/stock_save_as.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_save_as.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stock_save_as_xpm[] = { 3 | "16 16 111 2", 4 | " c None", 5 | ". c #000000", 6 | "+ c #F7F8FA", 7 | "@ c #CBDDEB", 8 | "# c #C88A80", 9 | "$ c #D18F84", 10 | "% c #CF8D82", 11 | "& c #A49626", 12 | "* c #634A1E", 13 | "= c #A8BBCC", 14 | "- c #BFD5E8", 15 | "; c #DBE7F1", 16 | "> c #8DA9BE", 17 | ", c #B7877E", 18 | "' c #C77568", 19 | ") c #C77467", 20 | "! c #C57366", 21 | "~ c #FCEB3D", 22 | "{ c #F7B544", 23 | "] c #61522E", 24 | "^ c #72899A", 25 | "/ c #54697C", 26 | "( c #CFE0ED", 27 | "_ c #D7D7D7", 28 | ": c #FEFEFE", 29 | "< c #FCFCFC", 30 | "[ c #F9DF39", 31 | "} c #F7B545", 32 | "| c #6C5F34", 33 | "1 c #B4B4B4", 34 | "2 c #84A0B5", 35 | "3 c #4F6475", 36 | "4 c #D6D6D6", 37 | "5 c #F8D837", 38 | "6 c #EFB44D", 39 | "7 c #584D2B", 40 | "8 c #8F8F8F", 41 | "9 c #F1F1F1", 42 | "0 c #819AAE", 43 | "a c #496072", 44 | "b c #FDFDFD", 45 | "c c #F6D236", 46 | "d c #EDA43E", 47 | "e c #584E2B", 48 | "f c #AAAAAA", 49 | "g c #D3D3D3", 50 | "h c #485F71", 51 | "i c #D5D5D5", 52 | "j c #D7AE74", 53 | "k c #61562F", 54 | "l c #737373", 55 | "m c #C5C5C5", 56 | "n c #B0B0B0", 57 | "o c #7F98AC", 58 | "p c #EDEDED", 59 | "q c #4F4115", 60 | "r c #8D8D8D", 61 | "s c #EBEBEB", 62 | "t c #ECECEC", 63 | "u c #ACBDCB", 64 | "v c #6F767D", 65 | "w c #9AA3AC", 66 | "x c #BFCBD6", 67 | "y c #BDC9D4", 68 | "z c #A1B6C4", 69 | "A c #8BA7BC", 70 | "B c #809CB0", 71 | "C c #6C8394", 72 | "D c #7D97AB", 73 | "E c #7D97AC", 74 | "F c #A4ACB8", 75 | "G c #B9B9B9", 76 | "H c #C7C7C7", 77 | "I c #E1E1E1", 78 | "J c #D4D4D4", 79 | "K c #9C9D9D", 80 | "L c #2F4656", 81 | "M c #80868C", 82 | "N c #183042", 83 | "O c #33495A", 84 | "P c #132D3C", 85 | "Q c #586D80", 86 | "R c #97A5B0", 87 | "S c #86A4B9", 88 | "T c #CDCDCD", 89 | "U c #2E4353", 90 | "V c #5A7082", 91 | "W c #BFBFBF", 92 | "X c #112835", 93 | "Y c #9DA9B0", 94 | "Z c #6B7882", 95 | "` c #829DB1", 96 | " . c #CBCBCB", 97 | ".. c #E5E5E5", 98 | "+. c #213648", 99 | "@. c #5F7989", 100 | "#. c #C2C2C2", 101 | "$. c #B2B2B2", 102 | "%. c #112C3A", 103 | "&. c #9FA9B0", 104 | "*. c #59636D", 105 | "=. c #A1A1A1", 106 | "-. c #C0C0C0", 107 | ";. c #909090", 108 | ">. c #868686", 109 | ",. c #6E6E6E", 110 | "'. c #7A7A7A", 111 | "). c #2D3949", 112 | "!. c #3E4F5C", 113 | "~. c #80878F", 114 | "{. c #1A3140", 115 | " . . . . . . . . . . . . . . ", 116 | ". + @ # $ $ $ $ % . & * . = - . ", 117 | ". ; > , ' ) ) ! . ~ { ] . ^ / . ", 118 | ". ( > _ : : < . [ } | . 1 2 3 . ", 119 | ". ( > _ _ 4 . 5 6 7 . 8 9 0 a . ", 120 | ". ( > _ b . c d e . f g 9 0 h . ", 121 | ". ( > _ i . j k . l m n 9 o a . ", 122 | ". ( > p . q . . r g s s t 0 a . ", 123 | ". ( > u . . v w x x x y z 0 a . ", 124 | ". ( > A B C 0 0 0 0 D E 0 0 a . ", 125 | ". ( > A F G G H I J K L M 0 a . ", 126 | ". ( > 2 m m N O i m G P Q R a . ", 127 | ". ( S 0 m T U V m m W X V Y a . ", 128 | ". Z ` o ...+.@.m #.$.%.V &.a . ", 129 | ". . *.3 =.-.;.;.>.,.'.).!.~.{.. ", 130 | " . . . . . . . . . . . . . . "}; 131 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_up.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/stock_up.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_up.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stock_up_xpm[] = { 3 | "16 16 26 1", 4 | " c None", 5 | ". c #1C2D3D", 6 | "+ c #000000", 7 | "@ c #C5D5E4", 8 | "# c #C4D4E3", 9 | "$ c #9FB9D2", 10 | "% c #2A435B", 11 | "& c #9CB7D1", 12 | "* c #A0BAD3", 13 | "= c #3F6588", 14 | "- c #A6BED5", 15 | "; c #A4BDD5", 16 | "> c #9EB8D1", 17 | ", c #A3BCD4", 18 | "' c #AAC1D7", 19 | ") c #ABC2D8", 20 | "! c #29425A", 21 | "~ c #AFC5DA", 22 | "{ c #9BB6D0", 23 | "] c #AEC4D9", 24 | "^ c #9AB5CF", 25 | "/ c #6892B9", 26 | "( c #49759E", 27 | "_ c #4B78A2", 28 | ": c #34536F", 29 | "< c #2D4760", 30 | " ", 31 | " . ", 32 | " +@+ ", 33 | " +#$%+ ", 34 | " +#&*=%+ ", 35 | " +#-;>==%+ ", 36 | " +#,',>===%+ ", 37 | " ++++)$&=!++++ ", 38 | " +~{$=!+ ", 39 | " +){$=!+ ", 40 | " +]$$=!+ ", 41 | " +,^$=!+ ", 42 | " +/(_:<+ ", 43 | " +++++++ ", 44 | " ", 45 | " "}; 46 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_zoom-in.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/stock_zoom-in.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_zoom-in.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stock_zoom_in_xpm[] = { 3 | "16 16 42 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #262626", 7 | "@ c #C5C5C5", 8 | "# c #EEEEEE", 9 | "$ c #EDEDED", 10 | "% c #ABABAB", 11 | "& c #464646", 12 | "* c #878787", 13 | "= c #F1F1F1", 14 | "- c #FEFEFE", 15 | "; c #FDFDFD", 16 | "> c #FCFCFC", 17 | ", c #EAEAEA", 18 | "' c #707070", 19 | ") c #252525", 20 | "! c #282828", 21 | "~ c #FBFBFB", 22 | "{ c #E8E8E8", 23 | "] c #B0B0B0", 24 | "^ c #FFFFFF", 25 | "/ c #050505", 26 | "( c #040404", 27 | "_ c #FAFAFA", 28 | ": c #A4A4A4", 29 | "< c #090909", 30 | "[ c #242424", 31 | "} c #E5E5E5", 32 | "| c #E4E4E4", 33 | "1 c #F9F9F9", 34 | "2 c #BABABA", 35 | "3 c #E7E7E7", 36 | "4 c #858585", 37 | "5 c #E3E3E3", 38 | "6 c #6D6D6D", 39 | "7 c #A1A1A1", 40 | "8 c #202020", 41 | "9 c #686868", 42 | "0 c #343434", 43 | "a c #797979", 44 | "b c #3A3A3A", 45 | "c c #1F1F1F", 46 | " .... ", 47 | " .+@#$%&. ", 48 | " .*=--;>,'. ", 49 | " &=--)!;~{& ", 50 | ".]--^/(;>_:. ", 51 | ".#-//<(([_}. ", 52 | ".$;[(../[_|. ", 53 | ".%>;;((~_12. ", 54 | " &,~><)_13& ", 55 | " .4{___156. ", 56 | " .&:}|7&.... ", 57 | " .... 88.. ", 58 | " .90.. ", 59 | " .ab..", 60 | " .9c.", 61 | " .. "}; 62 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_zoom-out.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/stock_zoom-out.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/stock_zoom-out.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stock_zoom_out_xpm[] = { 3 | "16 16 40 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #262626", 7 | "@ c #C5C5C5", 8 | "# c #EEEEEE", 9 | "$ c #EDEDED", 10 | "% c #ABABAB", 11 | "& c #464646", 12 | "* c #878787", 13 | "= c #F1F1F1", 14 | "- c #FEFEFE", 15 | "; c #FDFDFD", 16 | "> c #FCFCFC", 17 | ", c #EAEAEA", 18 | "' c #707070", 19 | ") c #FBFBFB", 20 | "! c #E8E8E8", 21 | "~ c #B0B0B0", 22 | "{ c #FFFFFF", 23 | "] c #FAFAFA", 24 | "^ c #A4A4A4", 25 | "/ c #050505", 26 | "( c #090909", 27 | "_ c #040404", 28 | ": c #242424", 29 | "< c #E5E5E5", 30 | "[ c #E4E4E4", 31 | "} c #F9F9F9", 32 | "| c #BABABA", 33 | "1 c #E7E7E7", 34 | "2 c #858585", 35 | "3 c #E3E3E3", 36 | "4 c #6D6D6D", 37 | "5 c #A1A1A1", 38 | "6 c #202020", 39 | "7 c #686868", 40 | "8 c #343434", 41 | "9 c #797979", 42 | "0 c #3A3A3A", 43 | "a c #1F1F1F", 44 | " .... ", 45 | " .+@#$%&. ", 46 | " .*=--;>,'. ", 47 | " &=----;)!& ", 48 | ".~--{--;>]^. ", 49 | ".#-//(__:]<. ", 50 | ".$;:_../:][. ", 51 | ".%>;;;>)]}|. ", 52 | " &,)>))]}1& ", 53 | " .2!]]]}34. ", 54 | " .&^<[5&.... ", 55 | " .... 66.. ", 56 | " .78.. ", 57 | " .90..", 58 | " .7a.", 59 | " .. "}; 60 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/subplots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/subplots.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/subplots.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/subplots.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/zoom_to_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/zoom_to_rect.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/images/zoom_to_rect.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/images/zoom_to_rect.ppm -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/AAPL.dat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/AAPL.dat.gz -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/INTC.dat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/INTC.dat.gz -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/Minduka_Present_Blue_Pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/Minduka_Present_Blue_Pack.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/README.txt: -------------------------------------------------------------------------------- 1 | This is the sample data needed for some of matplotlib's examples and 2 | docs. See matplotlib.cbook.get_sample_data for more info. 3 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/aapl.npy.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/aapl.npy.gz -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/ada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/ada.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/axes_grid/bivariate_normal.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/axes_grid/bivariate_normal.npy -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/ct.raw.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/ct.raw.gz -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/data_x_x2_x3.csv: -------------------------------------------------------------------------------- 1 | 0 0 0 2 | 1 1 1 3 | 2 4 8 4 | 3 9 27 5 | 4 16 64 6 | 5 25 125 7 | 6 36 216 8 | 7 49 343 9 | 8 64 512 10 | 9 81 729 11 | 10 100 1000 12 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/demodata.csv: -------------------------------------------------------------------------------- 1 | clientid,date,weekdays,gains,prices,up 2 | 0,2008-04-30,Wed,-0.52458192906686452,7791404.0091921333,False 3 | 1,2008-05-01,Thu,0.076191536201738269,3167180.7366340165,True 4 | 2,2008-05-02,Fri,-0.86850970062880861,9589766.9613829032,False 5 | 3,2008-05-03,Sat,-0.42701083852713395,8949415.1867596991,False 6 | 4,2008-05-04,Sun,0.2532553652693274,937163.44375252665,True 7 | 5,2008-05-05,Mon,-0.68151636911081892,949579.88022264629,False 8 | 6,2008-05-06,Tue,0.0071911579626532168,7268426.906552773,True 9 | 7,2008-05-07,Wed,0.67449747200412147,7517014.782897247,True 10 | 8,2008-05-08,Thu,-1.1841008656818983,1920959.5423492221,False 11 | 9,2008-05-09,Fri,-1.5803692595811152,8456240.6198725495,False 12 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/eeg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/eeg.dat -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/embedding_in_wx3.xrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | embedding_in_wx3 5 | 6 | 7 | wxVERTICAL 8 | 9 | 10 | 11 | 12 | 13 | 14 | wxALL|wxEXPAND 15 | 5 16 | 17 | 18 | 19 | wxHORIZONTAL 20 | 21 | 22 | 23 | 24 | 25 | wxALL|wxEXPAND 26 | 2 27 | 28 | 29 | 30 | 31 | 32 | 33 | wxALL|wxEXPAND 34 | 2 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | wxALL|wxEXPAND 43 | 2 44 | 45 | 46 | 47 | 0 48 | 49 | 50 | wxEXPAND 51 | 52 | 53 | 54 | wxLEFT|wxRIGHT|wxEXPAND 55 | 5 56 | 57 | 58 | 59 | 60 | wxEXPAND 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/goog.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/goog.npy -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/grace_hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/grace_hopper.jpg -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/grace_hopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/grace_hopper.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/lena.jpg -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/lena.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/logo2.png -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/membrane.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/membrane.dat -------------------------------------------------------------------------------- /matplotlib/mpl-data/sample_data/s1045.ima.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl-data/sample_data/s1045.ima.gz -------------------------------------------------------------------------------- /matplotlib/mpl.py: -------------------------------------------------------------------------------- 1 | """ 2 | .. note:: Deprecated in 1.3 3 | """ 4 | import warnings 5 | from matplotlib import cbook 6 | cbook.warn_deprecated( 7 | '1.3', name='matplotlib.mpl', alternative='`import matplotlib as mpl`', 8 | obj_type='module') 9 | from matplotlib import artist 10 | from matplotlib import axis 11 | from matplotlib import axes 12 | from matplotlib import collections 13 | from matplotlib import colors 14 | from matplotlib import colorbar 15 | from matplotlib import contour 16 | from matplotlib import dates 17 | from matplotlib import figure 18 | from matplotlib import finance 19 | from matplotlib import font_manager 20 | from matplotlib import image 21 | from matplotlib import legend 22 | from matplotlib import lines 23 | from matplotlib import mlab 24 | from matplotlib import cm 25 | from matplotlib import patches 26 | from matplotlib import quiver 27 | from matplotlib import rcParams 28 | from matplotlib import table 29 | from matplotlib import text 30 | from matplotlib import ticker 31 | from matplotlib import transforms 32 | from matplotlib import units 33 | from matplotlib import widgets 34 | -------------------------------------------------------------------------------- /matplotlib/mpl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl.pyc -------------------------------------------------------------------------------- /matplotlib/mpl.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/mpl.pyo -------------------------------------------------------------------------------- /matplotlib/offsetbox.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/offsetbox.pyc -------------------------------------------------------------------------------- /matplotlib/offsetbox.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/offsetbox.pyo -------------------------------------------------------------------------------- /matplotlib/patches.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/patches.pyc -------------------------------------------------------------------------------- /matplotlib/patches.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/patches.pyo -------------------------------------------------------------------------------- /matplotlib/path.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/path.pyc -------------------------------------------------------------------------------- /matplotlib/path.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/path.pyo -------------------------------------------------------------------------------- /matplotlib/patheffects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/patheffects.pyc -------------------------------------------------------------------------------- /matplotlib/patheffects.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/patheffects.pyo -------------------------------------------------------------------------------- /matplotlib/projections/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/projections/__init__.pyc -------------------------------------------------------------------------------- /matplotlib/projections/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/projections/__init__.pyo -------------------------------------------------------------------------------- /matplotlib/projections/geo.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/projections/geo.pyc -------------------------------------------------------------------------------- /matplotlib/projections/geo.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/projections/geo.pyo -------------------------------------------------------------------------------- /matplotlib/projections/polar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/projections/polar.pyc -------------------------------------------------------------------------------- /matplotlib/projections/polar.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/projections/polar.pyo -------------------------------------------------------------------------------- /matplotlib/pylab.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/pylab.pyc -------------------------------------------------------------------------------- /matplotlib/pylab.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/pylab.pyo -------------------------------------------------------------------------------- /matplotlib/pyplot.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/pyplot.pyc -------------------------------------------------------------------------------- /matplotlib/pyplot.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/pyplot.pyo -------------------------------------------------------------------------------- /matplotlib/quiver.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/quiver.pyc -------------------------------------------------------------------------------- /matplotlib/quiver.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/quiver.pyo -------------------------------------------------------------------------------- /matplotlib/rcsetup.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/rcsetup.pyc -------------------------------------------------------------------------------- /matplotlib/rcsetup.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/rcsetup.pyo -------------------------------------------------------------------------------- /matplotlib/sankey.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sankey.pyc -------------------------------------------------------------------------------- /matplotlib/sankey.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sankey.pyo -------------------------------------------------------------------------------- /matplotlib/scale.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/scale.pyc -------------------------------------------------------------------------------- /matplotlib/scale.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/scale.pyo -------------------------------------------------------------------------------- /matplotlib/sphinxext/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | 3 | -------------------------------------------------------------------------------- /matplotlib/sphinxext/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/__init__.pyc -------------------------------------------------------------------------------- /matplotlib/sphinxext/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/__init__.pyo -------------------------------------------------------------------------------- /matplotlib/sphinxext/ipython_console_highlighting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/ipython_console_highlighting.pyc -------------------------------------------------------------------------------- /matplotlib/sphinxext/ipython_console_highlighting.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/ipython_console_highlighting.pyo -------------------------------------------------------------------------------- /matplotlib/sphinxext/ipython_directive.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/ipython_directive.pyc -------------------------------------------------------------------------------- /matplotlib/sphinxext/ipython_directive.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/ipython_directive.pyo -------------------------------------------------------------------------------- /matplotlib/sphinxext/mathmpl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/mathmpl.pyc -------------------------------------------------------------------------------- /matplotlib/sphinxext/mathmpl.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/mathmpl.pyo -------------------------------------------------------------------------------- /matplotlib/sphinxext/only_directives.py: -------------------------------------------------------------------------------- 1 | # 2 | # A pair of directives for inserting content that will only appear in 3 | # either html or latex. 4 | # 5 | 6 | from __future__ import print_function 7 | from docutils.nodes import Body, Element 8 | from docutils.parsers.rst import directives 9 | 10 | class only_base(Body, Element): 11 | def dont_traverse(self, *args, **kwargs): 12 | return [] 13 | 14 | class html_only(only_base): 15 | pass 16 | 17 | class latex_only(only_base): 18 | pass 19 | 20 | def run(content, node_class, state, content_offset): 21 | text = '\n'.join(content) 22 | node = node_class(text) 23 | state.nested_parse(content, content_offset, node) 24 | return [node] 25 | 26 | def html_only_directive(name, arguments, options, content, lineno, 27 | content_offset, block_text, state, state_machine): 28 | return run(content, html_only, state, content_offset) 29 | 30 | def latex_only_directive(name, arguments, options, content, lineno, 31 | content_offset, block_text, state, state_machine): 32 | return run(content, latex_only, state, content_offset) 33 | 34 | def builder_inited(app): 35 | if app.builder.name == 'html': 36 | latex_only.traverse = only_base.dont_traverse 37 | else: 38 | html_only.traverse = only_base.dont_traverse 39 | 40 | def setup(app): 41 | app.add_directive('htmlonly', html_only_directive, True, (0, 0, 0)) 42 | app.add_directive('latexonly', latex_only_directive, True, (0, 0, 0)) 43 | app.add_node(html_only) 44 | app.add_node(latex_only) 45 | 46 | # This will *really* never see the light of day As it turns out, 47 | # this results in "broken" image nodes since they never get 48 | # processed, so best not to do this. 49 | # app.connect('builder-inited', builder_inited) 50 | 51 | # Add visit/depart methods to HTML-Translator: 52 | def visit_perform(self, node): 53 | pass 54 | def depart_perform(self, node): 55 | pass 56 | def visit_ignore(self, node): 57 | node.children = [] 58 | def depart_ignore(self, node): 59 | node.children = [] 60 | 61 | app.add_node(html_only, html=(visit_perform, depart_perform)) 62 | app.add_node(html_only, latex=(visit_ignore, depart_ignore)) 63 | app.add_node(latex_only, latex=(visit_perform, depart_perform)) 64 | app.add_node(latex_only, html=(visit_ignore, depart_ignore)) 65 | -------------------------------------------------------------------------------- /matplotlib/sphinxext/only_directives.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/only_directives.pyc -------------------------------------------------------------------------------- /matplotlib/sphinxext/only_directives.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/only_directives.pyo -------------------------------------------------------------------------------- /matplotlib/sphinxext/plot_directive.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/plot_directive.pyc -------------------------------------------------------------------------------- /matplotlib/sphinxext/plot_directive.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/sphinxext/plot_directive.pyo -------------------------------------------------------------------------------- /matplotlib/spines.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/spines.pyc -------------------------------------------------------------------------------- /matplotlib/spines.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/spines.pyo -------------------------------------------------------------------------------- /matplotlib/stackplot.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/stackplot.pyc -------------------------------------------------------------------------------- /matplotlib/stackplot.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/stackplot.pyo -------------------------------------------------------------------------------- /matplotlib/streamplot.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/streamplot.pyc -------------------------------------------------------------------------------- /matplotlib/streamplot.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/streamplot.pyo -------------------------------------------------------------------------------- /matplotlib/table.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/table.pyc -------------------------------------------------------------------------------- /matplotlib/table.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/table.pyo -------------------------------------------------------------------------------- /matplotlib/testing/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | -------------------------------------------------------------------------------- /matplotlib/testing/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/__init__.pyc -------------------------------------------------------------------------------- /matplotlib/testing/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/__init__.pyo -------------------------------------------------------------------------------- /matplotlib/testing/compare.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/compare.pyc -------------------------------------------------------------------------------- /matplotlib/testing/compare.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/compare.pyo -------------------------------------------------------------------------------- /matplotlib/testing/decorators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/decorators.pyc -------------------------------------------------------------------------------- /matplotlib/testing/decorators.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/decorators.pyo -------------------------------------------------------------------------------- /matplotlib/testing/image_util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/image_util.pyc -------------------------------------------------------------------------------- /matplotlib/testing/image_util.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/image_util.pyo -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/Duration.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/Duration.pyc -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/Duration.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/Duration.pyo -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/Epoch.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/Epoch.pyc -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/Epoch.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/Epoch.pyo -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/EpochConverter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/EpochConverter.pyc -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/EpochConverter.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/EpochConverter.pyo -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/StrConverter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/StrConverter.pyc -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/StrConverter.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/StrConverter.pyo -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/UnitDbl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/UnitDbl.pyc -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/UnitDbl.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/UnitDbl.pyo -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/UnitDblConverter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/UnitDblConverter.pyc -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/UnitDblConverter.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/UnitDblConverter.pyo -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/UnitDblFormatter.py: -------------------------------------------------------------------------------- 1 | #=========================================================================== 2 | # 3 | # UnitDblFormatter 4 | # 5 | #=========================================================================== 6 | 7 | 8 | """UnitDblFormatter module containing class UnitDblFormatter.""" 9 | 10 | #=========================================================================== 11 | # Place all imports after here. 12 | # 13 | from __future__ import print_function 14 | import matplotlib.ticker as ticker 15 | # 16 | # Place all imports before here. 17 | #=========================================================================== 18 | 19 | __all__ = [ 'UnitDblFormatter' ] 20 | 21 | #=========================================================================== 22 | class UnitDblFormatter( ticker.ScalarFormatter ): 23 | """The formatter for UnitDbl data types. This allows for formatting 24 | with the unit string. 25 | """ 26 | def __init__( self, *args, **kwargs ): 27 | 'The arguments are identical to matplotlib.ticker.ScalarFormatter.' 28 | ticker.ScalarFormatter.__init__( self, *args, **kwargs ) 29 | 30 | def __call__( self, x, pos = None ): 31 | 'Return the format for tick val x at position pos' 32 | if len(self.locs) == 0: 33 | return '' 34 | else: 35 | return str(x) 36 | 37 | def format_data_short( self, value ): 38 | "Return the value formatted in 'short' format." 39 | return str(value) 40 | 41 | def format_data( self, value ): 42 | "Return the value formatted into a string." 43 | return str(value) 44 | -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/UnitDblFormatter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/UnitDblFormatter.pyc -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/UnitDblFormatter.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/UnitDblFormatter.pyo -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/__init__.pyc -------------------------------------------------------------------------------- /matplotlib/testing/jpl_units/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/jpl_units/__init__.pyo -------------------------------------------------------------------------------- /matplotlib/testing/noseclasses.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | import os 3 | from nose.plugins.errorclass import ErrorClass, ErrorClassPlugin 4 | 5 | class KnownFailureTest(Exception): 6 | '''Raise this exception to mark a test as a known failing test.''' 7 | pass 8 | 9 | class KnownFailureDidNotFailTest(Exception): 10 | '''Raise this exception to mark a test should have failed but did not.''' 11 | pass 12 | 13 | class ImageComparisonFailure(AssertionError): 14 | '''Raise this exception to mark a test as a comparison between two images.''' 15 | 16 | class KnownFailure(ErrorClassPlugin): 17 | '''Plugin that installs a KNOWNFAIL error class for the 18 | KnownFailureClass exception. When KnownFailureTest is raised, 19 | the exception will be logged in the knownfail attribute of the 20 | result, 'K' or 'KNOWNFAIL' (verbose) will be output, and the 21 | exception will not be counted as an error or failure. 22 | 23 | This is based on numpy.testing.noseclasses.KnownFailure. 24 | ''' 25 | enabled = True 26 | knownfail = ErrorClass(KnownFailureTest, 27 | label='KNOWNFAIL', 28 | isfailure=False) 29 | 30 | def options(self, parser, env=os.environ): 31 | env_opt = 'NOSE_WITHOUT_KNOWNFAIL' 32 | parser.add_option('--no-knownfail', action='store_true', 33 | dest='noKnownFail', default=env.get(env_opt, False), 34 | help='Disable special handling of KnownFailureTest ' 35 | 'exceptions') 36 | 37 | def configure(self, options, conf): 38 | if not self.can_configure: 39 | return 40 | self.conf = conf 41 | disable = getattr(options, 'noKnownFail', False) 42 | if disable: 43 | self.enabled = False 44 | 45 | def addError( self, test, err, *zero_nine_capt_args ): 46 | # Fixme (Really weird): if I don't leave empty method here, 47 | # nose gets confused and KnownFails become testing errors when 48 | # using the MplNosePlugin and MplTestCase. 49 | 50 | # The *zero_nine_capt_args captures an extra argument. There 51 | # seems to be a bug in 52 | # nose.testing.manager.ZeroNinePlugin.addError() in which a 53 | # 3rd positional argument ("capt") is passed to the plugin's 54 | # addError() method, even if one is not explicitly using the 55 | # ZeroNinePlugin. 56 | pass 57 | -------------------------------------------------------------------------------- /matplotlib/testing/noseclasses.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/noseclasses.pyc -------------------------------------------------------------------------------- /matplotlib/testing/noseclasses.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/testing/noseclasses.pyo -------------------------------------------------------------------------------- /matplotlib/texmanager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/texmanager.pyc -------------------------------------------------------------------------------- /matplotlib/texmanager.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/texmanager.pyo -------------------------------------------------------------------------------- /matplotlib/text.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/text.pyc -------------------------------------------------------------------------------- /matplotlib/text.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/text.pyo -------------------------------------------------------------------------------- /matplotlib/textpath.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/textpath.pyc -------------------------------------------------------------------------------- /matplotlib/textpath.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/textpath.pyo -------------------------------------------------------------------------------- /matplotlib/ticker.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/ticker.pyc -------------------------------------------------------------------------------- /matplotlib/ticker.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/ticker.pyo -------------------------------------------------------------------------------- /matplotlib/tight_bbox.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tight_bbox.pyc -------------------------------------------------------------------------------- /matplotlib/tight_bbox.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tight_bbox.pyo -------------------------------------------------------------------------------- /matplotlib/tight_layout.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tight_layout.pyc -------------------------------------------------------------------------------- /matplotlib/tight_layout.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tight_layout.pyo -------------------------------------------------------------------------------- /matplotlib/transforms.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/transforms.pyc -------------------------------------------------------------------------------- /matplotlib/transforms.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/transforms.pyo -------------------------------------------------------------------------------- /matplotlib/tri/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Unstructured triangular grid functions. 3 | """ 4 | from __future__ import print_function 5 | from triangulation import * 6 | from tricontour import * 7 | from tritools import * 8 | from trifinder import * 9 | from triinterpolate import * 10 | from trirefine import * 11 | from tripcolor import * 12 | from triplot import * 13 | -------------------------------------------------------------------------------- /matplotlib/tri/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/__init__.pyc -------------------------------------------------------------------------------- /matplotlib/tri/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/__init__.pyo -------------------------------------------------------------------------------- /matplotlib/tri/triangulation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/triangulation.pyc -------------------------------------------------------------------------------- /matplotlib/tri/triangulation.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/triangulation.pyo -------------------------------------------------------------------------------- /matplotlib/tri/tricontour.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/tricontour.pyc -------------------------------------------------------------------------------- /matplotlib/tri/tricontour.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/tricontour.pyo -------------------------------------------------------------------------------- /matplotlib/tri/trifinder.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/trifinder.pyc -------------------------------------------------------------------------------- /matplotlib/tri/trifinder.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/trifinder.pyo -------------------------------------------------------------------------------- /matplotlib/tri/triinterpolate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/triinterpolate.pyc -------------------------------------------------------------------------------- /matplotlib/tri/triinterpolate.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/triinterpolate.pyo -------------------------------------------------------------------------------- /matplotlib/tri/tripcolor.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/tripcolor.pyc -------------------------------------------------------------------------------- /matplotlib/tri/tripcolor.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/tripcolor.pyo -------------------------------------------------------------------------------- /matplotlib/tri/triplot.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | from matplotlib.cbook import ls_mapper 3 | from matplotlib.patches import PathPatch 4 | from matplotlib.path import Path 5 | from matplotlib.tri.triangulation import Triangulation 6 | import numpy as np 7 | 8 | def triplot(ax, *args, **kwargs): 9 | """ 10 | Draw a unstructured triangular grid as lines and/or markers. 11 | 12 | The triangulation to plot can be specified in one of two ways; 13 | either:: 14 | 15 | triplot(triangulation, ...) 16 | 17 | where triangulation is a :class:`matplotlib.tri.Triangulation` 18 | object, or 19 | 20 | :: 21 | 22 | triplot(x, y, ...) 23 | triplot(x, y, triangles, ...) 24 | triplot(x, y, triangles=triangles, ...) 25 | triplot(x, y, mask=mask, ...) 26 | triplot(x, y, triangles, mask=mask, ...) 27 | 28 | in which case a Triangulation object will be created. See 29 | :class:`~matplotlib.tri.Triangulation` for a explanation of these 30 | possibilities. 31 | 32 | The remaining args and kwargs are the same as for 33 | :meth:`~matplotlib.axes.Axes.plot`. 34 | 35 | **Example:** 36 | 37 | .. plot:: mpl_examples/pylab_examples/triplot_demo.py 38 | """ 39 | import matplotlib.axes 40 | 41 | tri, args, kwargs = Triangulation.get_from_args_and_kwargs(*args, **kwargs) 42 | 43 | x = tri.x 44 | y = tri.y 45 | edges = tri.edges 46 | 47 | # If draw both lines and markers at the same time, e.g. 48 | # ax.plot(x[edges].T, y[edges].T, *args, **kwargs) 49 | # then the markers are drawn more than once which is incorrect if alpha<1. 50 | # Hence draw lines and markers separately. 51 | 52 | # Decode plot format string, e.g., 'ro-' 53 | fmt = '' 54 | if len(args) > 0: 55 | fmt = args[0] 56 | linestyle, marker, color = matplotlib.axes._process_plot_format(fmt) 57 | 58 | # Draw lines without markers, if lines are required. 59 | if linestyle is not None and linestyle is not 'None': 60 | kw = kwargs.copy() 61 | kw.pop('marker', None) # Ignore marker if set. 62 | kw['linestyle'] = ls_mapper[linestyle] 63 | kw['edgecolor'] = color 64 | kw['facecolor'] = None 65 | 66 | vertices = np.column_stack((x[edges].flatten(), y[edges].flatten())) 67 | codes = ([Path.MOVETO] + [Path.LINETO])*len(edges) 68 | 69 | path = Path(vertices, codes) 70 | pathpatch = PathPatch(path, **kw) 71 | 72 | ax.add_patch(pathpatch) 73 | 74 | # Draw markers without lines. 75 | # Should avoid drawing markers for points that are not in any triangle? 76 | kwargs['linestyle'] = '' 77 | ax.plot(x, y, *args, **kwargs) 78 | -------------------------------------------------------------------------------- /matplotlib/tri/triplot.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/triplot.pyc -------------------------------------------------------------------------------- /matplotlib/tri/triplot.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/triplot.pyo -------------------------------------------------------------------------------- /matplotlib/tri/trirefine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/trirefine.pyc -------------------------------------------------------------------------------- /matplotlib/tri/trirefine.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/trirefine.pyo -------------------------------------------------------------------------------- /matplotlib/tri/tritools.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/tritools.pyc -------------------------------------------------------------------------------- /matplotlib/tri/tritools.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/tri/tritools.pyo -------------------------------------------------------------------------------- /matplotlib/ttconv.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/ttconv.pyd -------------------------------------------------------------------------------- /matplotlib/type1font.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/type1font.pyc -------------------------------------------------------------------------------- /matplotlib/type1font.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/type1font.pyo -------------------------------------------------------------------------------- /matplotlib/units.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/units.pyc -------------------------------------------------------------------------------- /matplotlib/units.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/units.pyo -------------------------------------------------------------------------------- /matplotlib/widgets.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/widgets.pyc -------------------------------------------------------------------------------- /matplotlib/widgets.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/matplotlib/widgets.pyo -------------------------------------------------------------------------------- /matplotlib_test.py: -------------------------------------------------------------------------------- 1 | """ 2 | Demo of scatter plot on a polar axis. 3 | 4 | Size increases radially in this example and color increases with angle (just to 5 | verify the symbols are being scattered correctly). 6 | """ 7 | import numpy as np 8 | import matplotlib.pyplot as plt 9 | 10 | 11 | N = 150 12 | r = 2 * np.random.rand(N) 13 | theta = 2 * np.pi * np.random.rand(N) 14 | area = 200 * r**2 * np.random.rand(N) 15 | colors = theta 16 | 17 | ax = plt.subplot(111, polar=True) 18 | c = plt.scatter(theta, r, c=colors, s=area, cmap=plt.cm.hsv) 19 | 20 | plt.title('Enjoy matplotlib with abaqus!') 21 | plt.show() -------------------------------------------------------------------------------- /mpl_toolkits/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | __version__ = "2.4.1" 3 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/__init__.py: -------------------------------------------------------------------------------- 1 | import axes_size as Size 2 | from axes_divider import Divider, SubplotDivider, LocatableAxes, \ 3 | make_axes_locatable 4 | from axes_grid import Grid, ImageGrid, AxesGrid 5 | #from axes_divider import make_axes_locatable 6 | 7 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/__init__.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/__init__.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/anchored_artists.py: -------------------------------------------------------------------------------- 1 | from matplotlib.offsetbox import AnchoredOffsetbox, AuxTransformBox, VPacker,\ 2 | TextArea, AnchoredText, DrawingArea, AnnotationBbox 3 | 4 | from mpl_toolkits.axes_grid1.anchored_artists import \ 5 | AnchoredDrawingArea, AnchoredAuxTransformBox, \ 6 | AnchoredEllipse, AnchoredSizeBar 7 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/anchored_artists.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/anchored_artists.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/anchored_artists.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/anchored_artists.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/angle_helper.py: -------------------------------------------------------------------------------- 1 | from mpl_toolkits.axisartist.angle_helper import * 2 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/angle_helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/angle_helper.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/angle_helper.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/angle_helper.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_divider.py: -------------------------------------------------------------------------------- 1 | #from mpl_toolkits.axes_grid1.axes_divider import * 2 | 3 | from mpl_toolkits.axes_grid1.axes_divider import Divider, AxesLocator, SubplotDivider, \ 4 | AxesDivider, locatable_axes_factory, make_axes_locatable 5 | 6 | from mpl_toolkits.axes_grid.axislines import Axes 7 | LocatableAxes = locatable_axes_factory(Axes) 8 | 9 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_divider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axes_divider.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_divider.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axes_divider.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_grid.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | import mpl_toolkits.axes_grid1.axes_grid as axes_grid_orig 4 | from axes_divider import LocatableAxes 5 | 6 | class CbarAxes(axes_grid_orig.CbarAxesBase, LocatableAxes): 7 | def __init__(self, *kl, **kwargs): 8 | orientation=kwargs.pop("orientation", None) 9 | if orientation is None: 10 | raise ValueError("orientation must be specified") 11 | self.orientation = orientation 12 | self._default_label_on = False 13 | self.locator = None 14 | 15 | super(LocatableAxes, self).__init__(*kl, **kwargs) 16 | 17 | def cla(self): 18 | super(LocatableAxes, self).cla() 19 | self._config_axes() 20 | 21 | 22 | class Grid(axes_grid_orig.Grid): 23 | _defaultLocatableAxesClass = LocatableAxes 24 | 25 | class ImageGrid(axes_grid_orig.ImageGrid): 26 | _defaultLocatableAxesClass = LocatableAxes 27 | _defaultCbarAxesClass = CbarAxes 28 | 29 | AxesGrid = ImageGrid 30 | 31 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_grid.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axes_grid.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_grid.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axes_grid.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_rgb.py: -------------------------------------------------------------------------------- 1 | #from mpl_toolkits.axes_grid1.axes_rgb import * 2 | from mpl_toolkits.axes_grid1.axes_rgb import make_rgb_axes, imshow_rgb, RGBAxesBase 3 | 4 | #import mpl_toolkits.axes_grid1.axes_rgb as axes_rgb_orig 5 | from axislines import Axes 6 | 7 | class RGBAxes(RGBAxesBase): 8 | _defaultAxesClass = Axes 9 | 10 | 11 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_rgb.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axes_rgb.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_rgb.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axes_rgb.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_size.py: -------------------------------------------------------------------------------- 1 | from mpl_toolkits.axes_grid1.axes_size import * 2 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_size.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axes_size.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axes_size.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axes_size.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axis_artist.py: -------------------------------------------------------------------------------- 1 | from mpl_toolkits.axisartist.axis_artist import * 2 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axis_artist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axis_artist.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axis_artist.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axis_artist.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axisline_style.py: -------------------------------------------------------------------------------- 1 | from mpl_toolkits.axisartist.axisline_style import * 2 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axisline_style.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axisline_style.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axisline_style.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axisline_style.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axislines.py: -------------------------------------------------------------------------------- 1 | from mpl_toolkits.axisartist.axislines import * 2 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axislines.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axislines.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/axislines.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/axislines.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/clip_path.py: -------------------------------------------------------------------------------- 1 | from mpl_toolkits.axisartist.clip_path import * 2 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/clip_path.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/clip_path.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/clip_path.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/clip_path.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/colorbar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/colorbar.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/colorbar.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/colorbar.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/floating_axes.py: -------------------------------------------------------------------------------- 1 | from mpl_toolkits.axisartist.floating_axes import * 2 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/floating_axes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/floating_axes.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/floating_axes.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/floating_axes.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/grid_finder.py: -------------------------------------------------------------------------------- 1 | from mpl_toolkits.axisartist.grid_finder import * 2 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/grid_finder.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/grid_finder.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/grid_finder.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/grid_finder.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/grid_helper_curvelinear.py: -------------------------------------------------------------------------------- 1 | from mpl_toolkits.axisartist.grid_helper_curvelinear import * 2 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/grid_helper_curvelinear.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/grid_helper_curvelinear.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/grid_helper_curvelinear.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/grid_helper_curvelinear.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/inset_locator.py: -------------------------------------------------------------------------------- 1 | from mpl_toolkits.axes_grid1.inset_locator import InsetPosition, \ 2 | AnchoredSizeLocator, \ 3 | AnchoredZoomLocator, BboxPatch, BboxConnector, BboxConnectorPatch, \ 4 | inset_axes, zoomed_inset_axes, mark_inset 5 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/inset_locator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/inset_locator.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/inset_locator.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/inset_locator.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/parasite_axes.py: -------------------------------------------------------------------------------- 1 | from mpl_toolkits.axes_grid1.parasite_axes import \ 2 | subplot_class_factory, \ 3 | parasite_axes_class_factory, parasite_axes_auxtrans_class_factory, \ 4 | host_axes_class_factory 5 | 6 | from axislines import Axes 7 | 8 | 9 | ParasiteAxes = parasite_axes_class_factory(Axes) 10 | 11 | ParasiteAxesAuxTrans = parasite_axes_auxtrans_class_factory(axes_class=ParasiteAxes) 12 | 13 | HostAxes = host_axes_class_factory(axes_class=Axes) 14 | 15 | SubplotHost = subplot_class_factory(HostAxes) 16 | 17 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/parasite_axes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/parasite_axes.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid/parasite_axes.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid/parasite_axes.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/__init__.py: -------------------------------------------------------------------------------- 1 | import axes_size as Size 2 | from axes_divider import Divider, SubplotDivider, LocatableAxes, \ 3 | make_axes_locatable 4 | from axes_grid import Grid, ImageGrid, AxesGrid 5 | #from axes_divider import make_axes_locatable 6 | 7 | from parasite_axes import host_subplot, host_axes 8 | -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/__init__.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/__init__.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/anchored_artists.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/anchored_artists.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/anchored_artists.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/anchored_artists.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/axes_divider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/axes_divider.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/axes_divider.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/axes_divider.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/axes_grid.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/axes_grid.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/axes_grid.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/axes_grid.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/axes_rgb.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/axes_rgb.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/axes_rgb.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/axes_rgb.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/axes_size.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/axes_size.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/axes_size.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/axes_size.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/colorbar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/colorbar.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/colorbar.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/colorbar.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/inset_locator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/inset_locator.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/inset_locator.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/inset_locator.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/mpl_axes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/mpl_axes.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/mpl_axes.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/mpl_axes.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/parasite_axes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/parasite_axes.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axes_grid1/parasite_axes.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axes_grid1/parasite_axes.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/__init__.py: -------------------------------------------------------------------------------- 1 | from axislines import Axes, Subplot, AxesZero, SubplotZero, GridHelperRectlinear, \ 2 | AxisArtistHelperRectlinear, AxisArtistHelper, GridHelperBase, AxisArtist 3 | from axis_artist import AxisArtist, GridlinesCollection 4 | 5 | from grid_helper_curvelinear import GridHelperCurveLinear 6 | 7 | from floating_axes import FloatingAxes, FloatingSubplot 8 | 9 | from mpl_toolkits.axes_grid1.parasite_axes import \ 10 | subplot_class_factory, \ 11 | parasite_axes_class_factory, parasite_axes_auxtrans_class_factory, \ 12 | host_axes_class_factory 13 | 14 | ParasiteAxes = parasite_axes_class_factory(Axes) 15 | 16 | ParasiteAxesAuxTrans = parasite_axes_auxtrans_class_factory(axes_class=ParasiteAxes) 17 | 18 | HostAxes = host_axes_class_factory(axes_class=Axes) 19 | 20 | SubplotHost = subplot_class_factory(HostAxes) 21 | 22 | 23 | -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/__init__.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/__init__.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/angle_helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/angle_helper.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/angle_helper.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/angle_helper.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/axis_artist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/axis_artist.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/axis_artist.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/axis_artist.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/axisline_style.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/axisline_style.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/axisline_style.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/axisline_style.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/axislines.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/axislines.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/axislines.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/axislines.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/clip_path.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/clip_path.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/clip_path.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/clip_path.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/floating_axes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/floating_axes.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/floating_axes.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/floating_axes.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/grid_finder.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/grid_finder.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/grid_finder.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/grid_finder.pyo -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/grid_helper_curvelinear.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/grid_helper_curvelinear.pyc -------------------------------------------------------------------------------- /mpl_toolkits/axisartist/grid_helper_curvelinear.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/axisartist/grid_helper_curvelinear.pyo -------------------------------------------------------------------------------- /mpl_toolkits/exceltools.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/exceltools.pyc -------------------------------------------------------------------------------- /mpl_toolkits/exceltools.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/exceltools.pyo -------------------------------------------------------------------------------- /mpl_toolkits/gtktools.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/gtktools.pyc -------------------------------------------------------------------------------- /mpl_toolkits/gtktools.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/gtktools.pyo -------------------------------------------------------------------------------- /mpl_toolkits/mplot3d/__init__.py: -------------------------------------------------------------------------------- 1 | from axes3d import Axes3D 2 | -------------------------------------------------------------------------------- /mpl_toolkits/mplot3d/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/mplot3d/__init__.pyc -------------------------------------------------------------------------------- /mpl_toolkits/mplot3d/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/mplot3d/__init__.pyo -------------------------------------------------------------------------------- /mpl_toolkits/mplot3d/art3d.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/mplot3d/art3d.pyc -------------------------------------------------------------------------------- /mpl_toolkits/mplot3d/art3d.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/mplot3d/art3d.pyo -------------------------------------------------------------------------------- /mpl_toolkits/mplot3d/axes3d.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/mplot3d/axes3d.pyc -------------------------------------------------------------------------------- /mpl_toolkits/mplot3d/axes3d.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/mplot3d/axes3d.pyo -------------------------------------------------------------------------------- /mpl_toolkits/mplot3d/axis3d.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/mplot3d/axis3d.pyc -------------------------------------------------------------------------------- /mpl_toolkits/mplot3d/axis3d.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/mplot3d/axis3d.pyo -------------------------------------------------------------------------------- /mpl_toolkits/mplot3d/proj3d.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/mplot3d/proj3d.pyc -------------------------------------------------------------------------------- /mpl_toolkits/mplot3d/proj3d.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/mpl_toolkits/mplot3d/proj3d.pyo -------------------------------------------------------------------------------- /pyparsing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/pyparsing.pyc -------------------------------------------------------------------------------- /six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solid-Mechanics/matplotlib-4-abaqus/1117070fb824210c217c564ac36e69112ce70501/six.pyc -------------------------------------------------------------------------------- /test_link_mpl_toolkits.py: -------------------------------------------------------------------------------- 1 | import matplotlib.pyplot as plt 2 | import mpl_toolkits.axisartist as AA 3 | 4 | fig = plt.figure(1) 5 | fig.subplots_adjust(right=0.85) 6 | ax = AA.Subplot(fig, 1, 1, 1) 7 | fig.add_subplot(ax) 8 | 9 | # make some axis invisible 10 | ax.axis["bottom", "top", "right"].set_visible(False) 11 | 12 | # make an new axis along the first axis axis (x-axis) which pass 13 | # throught y=0. 14 | ax.axis["y=0"] = ax.new_floating_axis(nth_coord=0, value=0, 15 | axis_direction="bottom") 16 | ax.axis["y=0"].toggle(all=True) 17 | ax.axis["y=0"].label.set_text("y = 0") 18 | 19 | ax.set_ylim(-2, 4) 20 | 21 | plt.show() --------------------------------------------------------------------------------