diff --git a/examples/api/custom_projection_example.py b/examples/api/custom_projection_example.py index b5e0ed35dac6..32018c534604 100644 --- a/examples/api/custom_projection_example.py +++ b/examples/api/custom_projection_example.py @@ -294,7 +294,7 @@ def __init__(self, round_to=1.0): self._round_to = round_to def __call__(self, x, pos=None): - degrees = round(np.degrees(x) / self._round_to) * self._round_to + degrees = np.round(np.degrees(x) / self._round_to) * self._round_to # \u00b0 : degree symbol return "%d\u00b0" % degrees diff --git a/lib/matplotlib/__init__.py b/lib/matplotlib/__init__.py index 92404c376668..da02508bacfe 100644 --- a/lib/matplotlib/__init__.py +++ b/lib/matplotlib/__init__.py @@ -1444,6 +1444,7 @@ def tk_window_focus(): 'matplotlib.tests.test_contour', 'matplotlib.tests.test_dates', 'matplotlib.tests.test_delaunay', + 'matplotlib.tests.test_dviread', 'matplotlib.tests.test_figure', 'matplotlib.tests.test_font_manager', 'matplotlib.tests.test_gridspec', @@ -1473,6 +1474,7 @@ def tk_window_focus(): 'matplotlib.tests.test_tightlayout', 'matplotlib.tests.test_transforms', 'matplotlib.tests.test_triangulation', + 'matplotlib.tests.test_type1font', 'matplotlib.tests.test_units', 'matplotlib.tests.test_widgets', 'matplotlib.tests.test_cycles', diff --git a/lib/matplotlib/axes/_base.py b/lib/matplotlib/axes/_base.py index 9f504585a35d..c5bebe1a1616 100644 --- a/lib/matplotlib/axes/_base.py +++ b/lib/matplotlib/axes/_base.py @@ -4,6 +4,7 @@ from matplotlib.externals import six from matplotlib.externals.six.moves import xrange +from collections import OrderedDict import itertools import warnings import math @@ -903,11 +904,11 @@ def _gen_axes_spines(self, locations=None, offset=0.0, units='inches'): Intended to be overridden by new projection types. """ - return { - 'left': mspines.Spine.linear_spine(self, 'left'), - 'right': mspines.Spine.linear_spine(self, 'right'), - 'bottom': mspines.Spine.linear_spine(self, 'bottom'), - 'top': mspines.Spine.linear_spine(self, 'top'), } + return OrderedDict([ + ('left', mspines.Spine.linear_spine(self, 'left')), + ('right', mspines.Spine.linear_spine(self, 'right')), + ('bottom', mspines.Spine.linear_spine(self, 'bottom')), + ('top', mspines.Spine.linear_spine(self, 'top'))]) def cla(self): """Clear the current axes.""" @@ -2341,8 +2342,8 @@ def draw(self, renderer=None, inframe=False): for z, im in zorder_images] l, b, r, t = self.bbox.extents - width = int(mag * ((round(r) + 0.5) - (round(l) - 0.5))) - height = int(mag * ((round(t) + 0.5) - (round(b) - 0.5))) + width = int(mag * ((np.round(r) + 0.5) - (np.round(l) - 0.5))) + height = int(mag * ((np.round(t) + 0.5) - (np.round(b) - 0.5))) im = mimage.from_images(height, width, ims) diff --git a/lib/matplotlib/backends/backend_agg.py b/lib/matplotlib/backends/backend_agg.py index 9db2efa2c5b6..d4eb0635c519 100644 --- a/lib/matplotlib/backends/backend_agg.py +++ b/lib/matplotlib/backends/backend_agg.py @@ -175,8 +175,8 @@ def draw_mathtext(self, gc, x, y, s, prop, angle): xd = descent * sin(radians(angle)) yd = descent * cos(radians(angle)) - x = round(x + ox + xd) - y = round(y - oy + yd) + x = np.round(x + ox + xd) + y = np.round(y - oy + yd) self._renderer.draw_text_image(font_image, x, y + 1, angle, gc) def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None): diff --git a/lib/matplotlib/backends/backend_cairo.py b/lib/matplotlib/backends/backend_cairo.py index 1c9659359e9c..0f88175741df 100644 --- a/lib/matplotlib/backends/backend_cairo.py +++ b/lib/matplotlib/backends/backend_cairo.py @@ -359,7 +359,7 @@ def set_clip_rectangle(self, rectangle): if not rectangle: return x,y,w,h = rectangle.bounds # pixel-aligned clip-regions are faster - x,y,w,h = round(x), round(y), round(w), round(h) + x,y,w,h = np.round(x), np.round(y), np.round(w), np.round(h) ctx = self.ctx ctx.new_path() ctx.rectangle (x, self.renderer.height - h - y, w, h) diff --git a/lib/matplotlib/backends/backend_gdk.py b/lib/matplotlib/backends/backend_gdk.py index ba2a3c034a85..2d9d51158f53 100644 --- a/lib/matplotlib/backends/backend_gdk.py +++ b/lib/matplotlib/backends/backend_gdk.py @@ -91,7 +91,7 @@ def draw_path(self, gc, path, transform, rgbFace=None): for polygon in polygons: # draw_polygon won't take an arbitrary sequence -- it must be a list # of tuples - polygon = [(int(round(x)), int(round(y))) for x, y in polygon] + polygon = [(int(np.round(x)), int(np.round(y))) for x, y in polygon] if rgbFace is not None: saveColor = gc.gdkGC.foreground gc.gdkGC.foreground = gc.rgb_to_gdk_color(rgbFace) @@ -281,7 +281,7 @@ def _get_pango_layout(self, s, prop): return value size = prop.get_size_in_points() * self.dpi / 96.0 - size = round(size) + size = np.round(size) font_str = '%s, %s %i' % (prop.get_name(), prop.get_style(), size,) font = pango.FontDescription(font_str) @@ -387,7 +387,7 @@ def set_dashes(self, dash_offset, dash_list): self.gdkGC.line_style = gdk.LINE_SOLID else: pixels = self.renderer.points_to_pixels(np.asarray(dash_list)) - dl = [max(1, int(round(val))) for val in pixels] + dl = [max(1, int(np.round(val))) for val in pixels] self.gdkGC.set_dashes(dash_offset, dl) self.gdkGC.line_style = gdk.LINE_ON_OFF_DASH @@ -413,7 +413,7 @@ def set_linewidth(self, w): self.gdkGC.line_width = 0 else: pixels = self.renderer.points_to_pixels(w) - self.gdkGC.line_width = max(1, int(round(pixels))) + self.gdkGC.line_width = max(1, int(np.round(pixels))) def new_figure_manager(num, *args, **kwargs): diff --git a/lib/matplotlib/backends/backend_pdf.py b/lib/matplotlib/backends/backend_pdf.py index bd45bb5f4728..142b41530e99 100644 --- a/lib/matplotlib/backends/backend_pdf.py +++ b/lib/matplotlib/backends/backend_pdf.py @@ -824,7 +824,7 @@ def cvt(length, upe=font.units_per_EM, nearest=True): "Convert font coordinates to PDF glyph coordinates" value = length / upe * 1000 if nearest: - return round(value) + return np.round(value) # Perhaps best to round away from zero for bounding # boxes and the like if value < 0: diff --git a/lib/matplotlib/backends/backend_ps.py b/lib/matplotlib/backends/backend_ps.py index dee9b5336925..a332eb4e72da 100644 --- a/lib/matplotlib/backends/backend_ps.py +++ b/lib/matplotlib/backends/backend_ps.py @@ -1171,8 +1171,6 @@ def print_figure_impl(): print("%s translate"%_nums_to_str(xo, yo), file=fh) if rotation: print("%d rotate"%rotation, file=fh) print("%s clipbox"%_nums_to_str(width*72, height*72, 0, 0), file=fh) - # Disable any sort of miter limit - print("%s setmiterlimit" % 100000, file=fh) # write the figure content = self._pswriter.getvalue() @@ -1322,8 +1320,6 @@ def write(self, *kl, **kwargs): #print >>fh, "gsave" print("%s translate"%_nums_to_str(xo, yo), file=fh) print("%s clipbox"%_nums_to_str(width*72, height*72, 0, 0), file=fh) - # Disable any sort of miter limit - print("%d setmiterlimit" % 100000, file=fh) # write the figure print(self._pswriter.getvalue(), file=fh) diff --git a/lib/matplotlib/backends/backend_svg.py b/lib/matplotlib/backends/backend_svg.py index e3bb8ca234ed..648aff4c9581 100644 --- a/lib/matplotlib/backends/backend_svg.py +++ b/lib/matplotlib/backends/backend_svg.py @@ -6,6 +6,7 @@ from matplotlib.externals.six import unichr import os, base64, tempfile, gzip, io, sys, codecs, re +from collections import OrderedDict import numpy as np @@ -271,15 +272,15 @@ def __init__(self, width, height, svgwriter, basename=None, image_dpi=72): assert basename is not None self.basename = basename self._imaged = {} - self._clipd = {} + self._clipd = OrderedDict() self._char_defs = {} self._markers = {} self._path_collection_id = 0 self._imaged = {} - self._hatchd = {} + self._hatchd = OrderedDict() self._has_gouraud = False self._n_gradients = 0 - self._fonts = {} + self._fonts = OrderedDict() self.mathtext_parser = MathTextParser('SVG') RendererBase.__init__(self) @@ -306,10 +307,7 @@ def _write_default_style(self): writer = self.writer default_style = generate_css({ 'stroke-linejoin': 'round', - 'stroke-linecap': 'butt', - # Disable the miter limit. 100000 seems to be close to - # the maximum that renderers support before breaking. - 'stroke-miterlimit': '100000'}) + 'stroke-linecap': 'butt'}) writer.start('defs') writer.start('style', type='text/css') writer.data('*{%s}\n' % default_style) @@ -1104,7 +1102,7 @@ def _draw_text_as_text(self, gc, x, y, s, prop, angle, ismath, mtext=None): # Sort the characters by font, and output one tspan for # each - spans = {} + spans = OrderedDict() for font, fontsize, thetext, new_x, new_y, metrics in svg_glyphs: style = generate_css({ 'font-size': short_float_fmt(fontsize) + 'px', @@ -1120,7 +1118,7 @@ def _draw_text_as_text(self, gc, x, y, s, prop, angle, ismath, mtext=None): fontset = self._fonts.setdefault(font.fname, set()) fontset.add(thetext) - for style, chars in list(six.iteritems(spans)): + for style, chars in six.iteritems(spans): chars.sort() same_y = True diff --git a/lib/matplotlib/dates.py b/lib/matplotlib/dates.py index 7c71ed2b3faa..dfd0d9669f09 100755 --- a/lib/matplotlib/dates.py +++ b/lib/matplotlib/dates.py @@ -609,7 +609,7 @@ def __init__(self, t, fmt, tz=None): def __call__(self, x, pos=0): 'Return the label for time *x* at position *pos*' - ind = int(round(x)) + ind = int(np.round(x)) if ind >= len(self.t) or ind <= 0: return '' diff --git a/lib/matplotlib/image.py b/lib/matplotlib/image.py index eddabdd95922..9baf584fb5de 100644 --- a/lib/matplotlib/image.py +++ b/lib/matplotlib/image.py @@ -650,10 +650,10 @@ def make_image(self, magnification=1.0): im.apply_translation(tx, ty) l, b, r, t = self.axes.bbox.extents - widthDisplay = ((round(r*magnification) + 0.5) - - (round(l*magnification) - 0.5)) - heightDisplay = ((round(t*magnification) + 0.5) - - (round(b*magnification) - 0.5)) + widthDisplay = ((np.round(r*magnification) + 0.5) - + (np.round(l*magnification) - 0.5)) + heightDisplay = ((np.round(t*magnification) + 0.5) - + (np.round(b*magnification) - 0.5)) # resize viewport to display rx = widthDisplay / numcols @@ -773,8 +773,8 @@ def make_image(self, magnification=1.0): x0, y0, v_width, v_height = self.axes.viewLim.bounds l, b, r, t = self.axes.bbox.extents - width = (round(r) + 0.5) - (round(l) - 0.5) - height = (round(t) + 0.5) - (round(b) - 0.5) + width = (np.round(r) + 0.5) - (np.round(l) - 0.5) + height = (np.round(t) + 0.5) - (np.round(b) - 0.5) width *= magnification height *= magnification im = _image.pcolor(self._Ax, self._Ay, A, @@ -897,11 +897,11 @@ def make_image(self, magnification=1.0): bg = mcolors.colorConverter.to_rgba(fc, 0) bg = (np.array(bg)*255).astype(np.uint8) l, b, r, t = self.axes.bbox.extents - width = (round(r) + 0.5) - (round(l) - 0.5) - height = (round(t) + 0.5) - (round(b) - 0.5) + width = (np.round(r) + 0.5) - (np.round(l) - 0.5) + height = (np.round(t) + 0.5) - (np.round(b) - 0.5) # The extra cast-to-int is only needed for python2 - width = int(round(width * magnification)) - height = int(round(height * magnification)) + width = int(np.round(width * magnification)) + height = int(np.round(height * magnification)) if self._rgbacache is None: A = self.to_rgba(self._A, bytes=True) self._rgbacache = A @@ -932,8 +932,8 @@ def draw(self, renderer, *args, **kwargs): gc.set_clip_path(self.get_clip_path()) gc.set_alpha(self.get_alpha()) renderer.draw_image(gc, - round(self.axes.bbox.xmin), - round(self.axes.bbox.ymin), + np.round(self.axes.bbox.xmin), + np.round(self.axes.bbox.ymin), im) gc.restore() self.stale = False @@ -1093,7 +1093,7 @@ def draw(self, renderer, *args, **kwargs): gc.set_clip_rectangle(self.figure.bbox) gc.set_clip_path(self.get_clip_path()) gc.set_alpha(self.get_alpha()) - renderer.draw_image(gc, round(self.ox), round(self.oy), im) + renderer.draw_image(gc, np.round(self.ox), np.round(self.oy), im) gc.restore() self.stale = False @@ -1212,8 +1212,8 @@ def make_image(self, renderer, magnification=1.0): im.set_resample(self._resample) l, b, r, t = self.get_window_extent(renderer).extents # bbox.extents - widthDisplay = abs(round(r) - round(l)) - heightDisplay = abs(round(t) - round(b)) + widthDisplay = abs(np.round(r) - np.round(l)) + heightDisplay = abs(np.round(t) - np.round(b)) widthDisplay *= magnification heightDisplay *= magnification @@ -1245,7 +1245,7 @@ def draw(self, renderer, *args, **kwargs): l = np.min([x0, x1]) b = np.min([y0, y1]) - renderer.draw_image(gc, round(l), round(b), im) + renderer.draw_image(gc, np.round(l), np.round(b), im) gc.restore() self.stale = True diff --git a/lib/matplotlib/mathtext.py b/lib/matplotlib/mathtext.py index 4d20944a5192..ce4de437403c 100644 --- a/lib/matplotlib/mathtext.py +++ b/lib/matplotlib/mathtext.py @@ -60,6 +60,7 @@ import matplotlib.colors as mcolors import matplotlib._png as _png + #################### @@ -2120,10 +2121,10 @@ def hlist_out(self, box): if glue_sign == 1: # stretching if glue_spec.stretch_order == glue_order: cur_glue += glue_spec.stretch - cur_g = round(clamp(float(box.glue_set) * cur_glue)) + cur_g = np.round(clamp(float(box.glue_set) * cur_glue)) elif glue_spec.shrink_order == glue_order: cur_glue += glue_spec.shrink - cur_g = round(clamp(float(box.glue_set) * cur_glue)) + cur_g = np.round(clamp(float(box.glue_set) * cur_glue)) rule_width += cur_g self.cur_h += rule_width self.cur_s -= 1 @@ -2176,10 +2177,10 @@ def vlist_out(self, box): if glue_sign == 1: # stretching if glue_spec.stretch_order == glue_order: cur_glue += glue_spec.stretch - cur_g = round(clamp(float(box.glue_set) * cur_glue)) + cur_g = np.round(clamp(float(box.glue_set) * cur_glue)) elif glue_spec.shrink_order == glue_order: # shrinking cur_glue += glue_spec.shrink - cur_g = round(clamp(float(box.glue_set) * cur_glue)) + cur_g = np.round(clamp(float(box.glue_set) * cur_glue)) rule_height += cur_g self.cur_v += rule_height elif isinstance(p, Char): diff --git a/lib/matplotlib/mlab.py b/lib/matplotlib/mlab.py index db8370ab9c73..31154704dbd7 100644 --- a/lib/matplotlib/mlab.py +++ b/lib/matplotlib/mlab.py @@ -2215,7 +2215,7 @@ def frange(xini, xfin=None, delta=None, **kw): npts = kw['npts'] delta = (xfin-xini)/float(npts-endpoint) except KeyError: - npts = int(round((xfin-xini)/delta)) + endpoint + npts = int(np.round((xfin-xini)/delta)) + endpoint # round finds the nearest, so the endpoint can be up to # delta/2 larger than xfin. diff --git a/lib/matplotlib/mpl-data/stylelib/classic.mplstyle b/lib/matplotlib/mpl-data/stylelib/classic.mplstyle index eb122d29c9c3..917b8f202e10 100644 --- a/lib/matplotlib/mpl-data/stylelib/classic.mplstyle +++ b/lib/matplotlib/mpl-data/stylelib/classic.mplstyle @@ -329,7 +329,7 @@ boxplot.flierprops.linestyle: none boxplot.flierprops.linewidth: 1.0 boxplot.flierprops.marker: + boxplot.flierprops.markeredgecolor: k -boxplot.flierprops.markerfacecolor: b +boxplot.flierprops.markerfacecolor: auto boxplot.flierprops.markersize: 6.0 boxplot.meanline: False boxplot.meanprops.color: r diff --git a/lib/matplotlib/patches.py b/lib/matplotlib/patches.py index addac4992be4..866c636b206b 100644 --- a/lib/matplotlib/patches.py +++ b/lib/matplotlib/patches.py @@ -2291,9 +2291,9 @@ def _get_sawtooth_vertices(self, x0, y0, width, height, mutation_size): # the sizes of the vertical and horizontal sawtooth are # separately adjusted to fit the given box size. - dsx_n = int(round((width - tooth_size) / (tooth_size * 2))) * 2 + dsx_n = int(np.round((width - tooth_size) / (tooth_size * 2))) * 2 dsx = (width - tooth_size) / dsx_n - dsy_n = int(round((height - tooth_size) / (tooth_size * 2))) * 2 + dsy_n = int(np.round((height - tooth_size) / (tooth_size * 2))) * 2 dsy = (height - tooth_size) / dsy_n x0, y0 = x0 - pad + tooth_size2, y0 - pad + tooth_size2 diff --git a/lib/matplotlib/projections/geo.py b/lib/matplotlib/projections/geo.py index 94b57cdf13fe..338deec8279d 100644 --- a/lib/matplotlib/projections/geo.py +++ b/lib/matplotlib/projections/geo.py @@ -34,7 +34,7 @@ def __init__(self, round_to=1.0): def __call__(self, x, pos=None): degrees = (x / np.pi) * 180.0 - degrees = round(degrees / self._round_to) * self._round_to + degrees = np.round(degrees / self._round_to) * self._round_to if rcParams['text.usetex'] and not rcParams['text.latex.unicode']: return r"$%0.0f^\circ$" % degrees else: diff --git a/lib/matplotlib/rcsetup.py b/lib/matplotlib/rcsetup.py index b97f9efb7ef5..57f4549d2290 100644 --- a/lib/matplotlib/rcsetup.py +++ b/lib/matplotlib/rcsetup.py @@ -313,6 +313,12 @@ def validate_color_or_inherit(s): return validate_color(s) +def validate_color_or_auto(s): + if s == 'auto': + return s + return validate_color(s) + + def validate_color(s): 'return a valid color arg' try: @@ -847,7 +853,7 @@ def validate_hist_bins(s): 'boxplot.flierprops.color': ['b', validate_color], 'boxplot.flierprops.marker': ['+', six.text_type], - 'boxplot.flierprops.markerfacecolor': ['b', validate_color], + 'boxplot.flierprops.markerfacecolor': ['auto', validate_color_or_auto], 'boxplot.flierprops.markeredgecolor': ['k', validate_color], 'boxplot.flierprops.markersize': [6, validate_float], 'boxplot.flierprops.linestyle': ['none', six.text_type], diff --git a/lib/matplotlib/testing/compare.py b/lib/matplotlib/testing/compare.py index e107021484f5..e6f9d7f2beef 100644 --- a/lib/matplotlib/testing/compare.py +++ b/lib/matplotlib/testing/compare.py @@ -318,6 +318,12 @@ def compare_images(expected, actual, tol, in_decorator=False): actualImage, expectedImage = crop_to_same( actual, actualImage, expected, expectedImage) + diff_image = make_test_filename(actual, 'failed-diff') + + if tol <= 0.0: + if np.array_equal(expectedImage, actualImage): + return None + # convert to signed integers, so that the images can be subtracted without # overflow expectedImage = expectedImage.astype(np.int16) @@ -325,11 +331,7 @@ def compare_images(expected, actual, tol, in_decorator=False): rms = calculate_rms(expectedImage, actualImage) - diff_image = make_test_filename(actual, 'failed-diff') - if rms <= tol: - if os.path.exists(diff_image): - os.unlink(diff_image) return None save_diff_image(expected, actual, diff_image) diff --git a/lib/matplotlib/testing/decorators.py b/lib/matplotlib/testing/decorators.py index 000c93d64d90..06877c83bf8b 100644 --- a/lib/matplotlib/testing/decorators.py +++ b/lib/matplotlib/testing/decorators.py @@ -252,7 +252,7 @@ def do_test(): yield (do_test,) -def image_comparison(baseline_images=None, extensions=None, tol=13, +def image_comparison(baseline_images=None, extensions=None, tol=0, freetype_version=None, remove_text=False, savefig_kwarg=None, style='classic'): """ @@ -297,7 +297,6 @@ def image_comparison(baseline_images=None, extensions=None, tol=13, if desired. Defaults to the 'classic' style. """ - if baseline_images is None: raise ValueError('baseline_images must be specified') diff --git a/lib/matplotlib/tests/baseline_images/test_arrow_patches/boxarrow_test_image.png b/lib/matplotlib/tests/baseline_images/test_arrow_patches/boxarrow_test_image.png index dc8605d5bf22..9e613ff40ca9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_arrow_patches/boxarrow_test_image.png and b/lib/matplotlib/tests/baseline_images/test_arrow_patches/boxarrow_test_image.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_arrow_patches/fancyarrow_test_image.svg b/lib/matplotlib/tests/baseline_images/test_arrow_patches/fancyarrow_test_image.svg index 06fd78fcffa5..6fb9d9d64991 100644 --- a/lib/matplotlib/tests/baseline_images/test_arrow_patches/fancyarrow_test_image.svg +++ b/lib/matplotlib/tests/baseline_images/test_arrow_patches/fancyarrow_test_image.svg @@ -10,124 +10,122 @@ - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -136,201 +134,199 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -339,191 +335,189 @@ L164.724 32.4" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-line - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -532,191 +526,189 @@ L257.082 32.4" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-line - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -725,191 +717,189 @@ L349.441 32.4" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-line - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -918,191 +908,189 @@ L441.8 32.4" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1111,190 +1099,188 @@ L72.3651 123.882" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1303,190 +1289,188 @@ L164.724 123.882" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1495,185 +1479,183 @@ L257.082 123.882" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1682,185 +1664,183 @@ L349.441 123.882" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1869,190 +1849,188 @@ L441.8 123.882" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-lin - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2061,191 +2039,189 @@ L72.3651 215.365" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2254,191 +2230,189 @@ L164.724 215.365" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2447,191 +2421,189 @@ L257.082 215.365" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2640,191 +2612,189 @@ L349.441 215.365" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - + - + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2833,87 +2803,86 @@ L441.8 215.365" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-lin - + - + - + - + - + - + - + - + - + - + - + - + - diff --git a/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.pdf b/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.pdf index 4aca11990290..456d81047194 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.pdf and b/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.png b/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.png index 426e35add1a3..407cd7b72849 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.png and b/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.svg b/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.svg index 2b29c08fdbb8..c88436921c36 100644 --- a/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.svg +++ b/lib/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.svg @@ -5,143 +5,155 @@ - - - - - - - - +" style="fill:url(#hcb95a09a82);fill-opacity:0.700000;stroke:#0000ff;stroke-opacity:0.700000;stroke-width:5.000000;"/> + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -150,228 +162,226 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - +" style="fill:url(#hcb95a09a82);opacity:0.700000;stroke:#0000ff;stroke-linejoin:miter;stroke-width:5.000000;"/> + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -380,1172 +390,638 @@ z - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - - + - - - - - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/angle_spectrum_freqs.png b/lib/matplotlib/tests/baseline_images/test_axes/angle_spectrum_freqs.png index 7bad9426abe5..39ef1f843dd4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/angle_spectrum_freqs.png and b/lib/matplotlib/tests/baseline_images/test_axes/angle_spectrum_freqs.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/angle_spectrum_noise.png b/lib/matplotlib/tests/baseline_images/test_axes/angle_spectrum_noise.png index aad05d6fd61f..434bbbf7d674 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/angle_spectrum_noise.png and b/lib/matplotlib/tests/baseline_images/test_axes/angle_spectrum_noise.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/arc_ellipse.png b/lib/matplotlib/tests/baseline_images/test_axes/arc_ellipse.png index 9f5b8fc2fb31..64d0b901379a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/arc_ellipse.png and b/lib/matplotlib/tests/baseline_images/test_axes/arc_ellipse.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/arc_ellipse.svg b/lib/matplotlib/tests/baseline_images/test_axes/arc_ellipse.svg index 3380981aa4b4..7895ba67d527 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/arc_ellipse.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/arc_ellipse.svg @@ -5,494 +5,511 @@ - - - +" style="fill:#ffff00;opacity:0.200000;stroke:#ffff00;stroke-linejoin:miter;"/> - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -501,596 +518,594 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - +" style="fill:#008000;opacity:0.200000;stroke:#008000;stroke-linejoin:miter;"/> - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1099,127 +1114,107 @@ C307.578 338.668 312.459 331.376 316.879 323.719" style="fill:none;stroke:#00000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.pdf b/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.pdf index 731f5d5b9c25..815604f0f66a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.png b/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.png index bb6f2fe34425..dfb608d5d915 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.png and b/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.svg b/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.svg index 8a4499edd94f..8d91e8b5779a 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.svg @@ -5,114 +5,132 @@ - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -121,204 +139,203 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -327,194 +344,193 @@ L518.4 69.375" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -523,182 +539,181 @@ L274.909 319.672" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -707,110 +722,90 @@ L518.4 325.328" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + - + - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.png b/lib/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.png index 8f2b7cad1ca0..96f35a232225 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.png and b/lib/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.svg b/lib/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.svg index 214729508539..6cbb307f1e79 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.svg @@ -10,343 +10,332 @@ - - - +" style="fill:#0000ff;opacity:0.250000;stroke:#000000;stroke-linejoin:miter;"/> - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + @@ -355,385 +344,379 @@ z - + - + - + - + - - - + - - - + + + +" id="DejaVuSans-37"/> + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - +" id="DejaVuSans-35"/> - - - - - - - - - - - - + + + + + + + + + + + + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - - + +" id="DejaVuSans-54"/> - - - + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.png b/lib/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.png index b8ed868df20c..5303eb6ae4d6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.png and b/lib/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.svg b/lib/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.svg index 57334eb244ab..015d86f0cf65 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.svg @@ -10,489 +10,475 @@ - - - +" style="fill:#0000ff;opacity:0.250000;stroke:#000000;stroke-linejoin:miter;"/> - + - + - + - + - + - + - + - + - - - - - + - + + + - - - + +" id="DejaVuSans-37"/> + + + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - +" id="DejaVuSans-35"/> - - - - - - - - - - - - + + + + + + + + + + + + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - - + +" id="DejaVuSans-54"/> - - - + + + @@ -500,228 +486,225 @@ z - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + @@ -729,7 +712,7 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bar_tick_label_multiple.png b/lib/matplotlib/tests/baseline_images/test_axes/bar_tick_label_multiple.png index a0ce8625befc..11523f308363 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bar_tick_label_multiple.png and b/lib/matplotlib/tests/baseline_images/test_axes/bar_tick_label_multiple.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bar_tick_label_single.png b/lib/matplotlib/tests/baseline_images/test_axes/bar_tick_label_single.png index e4742e58af9b..2ecd9bda53f5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bar_tick_label_single.png and b/lib/matplotlib/tests/baseline_images/test_axes/bar_tick_label_single.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/barh_tick_label.png b/lib/matplotlib/tests/baseline_images/test_axes/barh_tick_label.png index e83d42a4290d..f1418da86c4f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/barh_tick_label.png and b/lib/matplotlib/tests/baseline_images/test_axes/barh_tick_label.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot.pdf b/lib/matplotlib/tests/baseline_images/test_axes/boxplot.pdf index 1afba9760bc1..597ad75028e0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/boxplot.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/boxplot.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot.png b/lib/matplotlib/tests/baseline_images/test_axes/boxplot.png index 932ab02ebcad..03ccab6cc4a0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/boxplot.png and b/lib/matplotlib/tests/baseline_images/test_axes/boxplot.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot.svg b/lib/matplotlib/tests/baseline_images/test_axes/boxplot.svg index fb863d5b7026..de6281b5b4ca 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/boxplot.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/boxplot.svg @@ -10,230 +10,223 @@ - - - + - + - + - + - + - + - + - - - + + + - + - + - + - + - + - + - - - + + + - + - + - + - + - + - + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + @@ -242,204 +235,203 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - - - +" id="DejaVuSans-2212"/> + + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + @@ -447,7 +439,7 @@ Q19.5312 74.2188 31.7812 74.2188" id="BitstreamVeraSans-Roman-30"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_autorange_whiskers.png b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_autorange_whiskers.png index e2d51f755042..de33550ddf1c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_autorange_whiskers.png and b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_autorange_whiskers.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_autorange_whiskers.svg b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_autorange_whiskers.svg index 2d76ce3d06f5..6e3a395ea6ee 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_autorange_whiskers.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_autorange_whiskers.svg @@ -10,213 +10,206 @@ - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + @@ -225,151 +218,148 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - - + +" id="DejaVuSans-34"/> - - - + + + - + - + - - - + + + - + - + - + - - + + - + - + - - + + - + - + - - + + @@ -377,7 +367,7 @@ Q19.5312 74.2188 31.7812 74.2188" id="BitstreamVeraSans-Roman-30"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_mod_artists_after_plotting.png b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_mod_artists_after_plotting.png index 6228c10559d3..4e3c3e8e021d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_mod_artists_after_plotting.png and b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_mod_artists_after_plotting.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_no_inverted_whisker.png b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_no_inverted_whisker.png index cba447aca198..cd0a5713c037 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_no_inverted_whisker.png and b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_no_inverted_whisker.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.pdf b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.pdf index 8664d3a51d08..c72882f0e0b9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.png b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.png index db1f522be5f7..074da9d7ec9a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.png and b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.svg b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.svg index e0fa85524626..06e0d4f24384 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_rc_parameters.svg @@ -10,295 +10,239 @@ - - - + - + - + - + - + - + - + - +" id="m7590731c87" style="stroke:#0000ff;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - - - - - - - - - - + - + - - - - - - - - - - + @@ -307,204 +251,94 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - - - - - - - - - - - - - - + - + - - - - - - - - - + - + - - - - - - - - - + - + - - - - - - - + - + - - - - - - - - + - + - - - - - - - - + - + - - - - - - - - + @@ -512,239 +346,185 @@ Q46.9688 40.9219 40.5781 39.3125" id="BitstreamVeraSans-Roman-33"/> - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - + - + - - - - - - - - - + - + - - - - - - - - - + - + - - - - - - - + - + - - - - - - - - + - + - - - - - - - - + - + - - - - - - - - + @@ -753,36 +533,24 @@ L518.4 165.176" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-lin - + - - - - - - - + - + - - - - - - - + @@ -790,108 +558,95 @@ L518.4 165.176" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-lin - - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - + - + - - - - - - - + @@ -900,255 +655,108 @@ L518.4 287.153" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-lin - + - - - - - - - - - - - + - + - - - - - - - - - - - + - + - - - - - - - - - - - + - + - - - - - - - - + - + - - - - - - - + - + - - - - - - - + - + - - - - - - - + - + - - - - - - - + - + - - - - - - - + @@ -1156,14 +764,14 @@ z - + + + + - + - - - diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_sym.png b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_sym.png index a4ce8d83652d..dd2e566a1ead 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_sym.png and b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_sym.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_sym2.png b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_sym2.png index c0185e092ea8..e68bf11aec10 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_sym2.png and b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_sym2.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_with_CIarray.png b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_with_CIarray.png index 9fb197604e80..0d8c7f146025 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/boxplot_with_CIarray.png and b/lib/matplotlib/tests/baseline_images/test_axes/boxplot_with_CIarray.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_baseline.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_baseline.png index b407b2fd5644..c4ee48f48897 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_baseline.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_baseline.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_custombox.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_custombox.png index 6329a2c51a71..3364f93d4055 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_custombox.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_custombox.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_custommedian.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_custommedian.png index 1c3f6dec22a0..0cceb5cd2d19 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_custommedian.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_custommedian.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_customoutlier.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_customoutlier.png index 53bb0c2bd6e6..7f862e2353e6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_customoutlier.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_customoutlier.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_custompatchartist.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_custompatchartist.png index 9ed745791428..3628a47b7509 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_custompatchartist.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_custompatchartist.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_custompositions.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_custompositions.png index 35a0de4fa8ee..af1494c21914 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_custompositions.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_custompositions.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_customwidths.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_customwidths.png index 9d063c9bded0..c6035af7ee35 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_customwidths.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_customwidths.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_horizontal.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_horizontal.png index 8c79adacf6c4..a15684018b93 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_horizontal.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_horizontal.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_nobox.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_nobox.png index b12088d71ee7..797b14b32b49 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_nobox.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_nobox.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_nocaps.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_nocaps.png index 235d1da545d2..5f5a2f8c84c7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_nocaps.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_nocaps.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_patchartist.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_patchartist.png index 6e54ca819a24..c2b8182eff6f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_patchartist.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_patchartist.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_precentilewhis.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_precentilewhis.png index 0f4352580a4a..6b15f30fb129 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_precentilewhis.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_precentilewhis.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_rangewhis.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_rangewhis.png index c48d0ab78ce2..17caa8ee9872 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_rangewhis.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_rangewhis.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_scalarwidth.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_scalarwidth.png index 90ff37016736..fd47ddb5aa68 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_scalarwidth.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_scalarwidth.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_with_xlabels.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_with_xlabels.png index 92dd1e0fc504..d5f71a3507f5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_with_xlabels.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_with_xlabels.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_with_ylabels.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_with_ylabels.png index 565f491810a6..0db27764dd47 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_with_ylabels.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_with_ylabels.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_custompoint.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_custompoint.png index 74ec31b2e25e..0fe133314c7f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_custompoint.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_custompoint.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_line.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_line.png index 73520f0118d7..73de67c07647 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_line.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_line.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_point.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_point.png index 77ffc6ca3da1..cd08b28cc514 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_point.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_withmean_point.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/bxp_withnotch.png b/lib/matplotlib/tests/baseline_images/test_axes/bxp_withnotch.png index c95f103856ff..5fb5d1046d6d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/bxp_withnotch.png and b/lib/matplotlib/tests/baseline_images/test_axes/bxp_withnotch.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/canonical.png b/lib/matplotlib/tests/baseline_images/test_axes/canonical.png index 602168b49f50..4adab1956419 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/canonical.png and b/lib/matplotlib/tests/baseline_images/test_axes/canonical.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/canonical.svg b/lib/matplotlib/tests/baseline_images/test_axes/canonical.svg index 9328472eb8f1..fadb1ed4f1fb 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/canonical.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/canonical.svg @@ -10,258 +10,249 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + @@ -270,143 +261,143 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + @@ -414,7 +405,7 @@ Q46.9688 40.9219 40.5781 39.3125" id="BitstreamVeraSans-Roman-33"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/const_xy.png b/lib/matplotlib/tests/baseline_images/test_axes/const_xy.png index f6c4d4e3f950..fd82ccd8e358 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/const_xy.png and b/lib/matplotlib/tests/baseline_images/test_axes/const_xy.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/const_xy.svg b/lib/matplotlib/tests/baseline_images/test_axes/const_xy.svg index b9408dddc7af..a6c956348693 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/const_xy.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/const_xy.svg @@ -10,502 +10,491 @@ - - - + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-37"/> - - + + - + - + - + - - + + - + - + - + - - + + @@ -514,166 +503,165 @@ Q23.9688 32.4219 30.6094 32.4219" id="BitstreamVeraSans-Roman-39"/> - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + @@ -681,196 +669,191 @@ z - - + - + - + - + - + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + @@ -879,180 +862,180 @@ L72 165.176" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -1060,211 +1043,205 @@ L72 165.176" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - - +" id="md522364772" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - + + + + + + + + + + + - + - + - + - + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + @@ -1273,147 +1250,147 @@ L72 287.153" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + @@ -1421,14 +1398,14 @@ L72 287.153" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.pdf b/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.pdf index 67e374eb15ef..1efb85b25762 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.png b/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.png index bd1bbbecff6c..7b6020199efa 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.png and b/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.svg b/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.svg index edcf9d219184..8336da331613 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/contour_colorbar.svg @@ -10,18011 +10,18000 @@ - - - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - + + - - - + + + - - - + + + - - - + + + - - - + + + - - + + - - + + - + - + - + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - - + + + + + - - - + + + - - - + + + - - + + - - + + - + - + - + - + - + - + - + - + - + - + - + - - +" id="DejaVuSans-2212"/> + - - - + + + - + - + - + - - - + + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + @@ -18023,175 +18012,175 @@ z - + - + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -18199,411 +18188,410 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - +" style="fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.010000;"/> - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - + - + - - +" id="DejaVuSans-2e"/> + - - - - - + + + + + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - - - - - + + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + @@ -18611,11 +18599,11 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/contour_hatching.png b/lib/matplotlib/tests/baseline_images/test_axes/contour_hatching.png index 404b65f2b694..fdbbdb075851 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/contour_hatching.png and b/lib/matplotlib/tests/baseline_images/test_axes/contour_hatching.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/contour_hatching.svg b/lib/matplotlib/tests/baseline_images/test_axes/contour_hatching.svg index e7fcb9977d13..5d26c28b914f 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/contour_hatching.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/contour_hatching.svg @@ -10,6409 +10,6398 @@ - - - - - - + + + + - - - - + + + + - - - - + + + + - - - - - + + + + + - - + + - - - + + + - - + + - + - + - + - + - + - + - + - + - + - - +" id="DejaVuSans-2212"/> + - - - + + + - + - + - + - - - + + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + @@ -6421,175 +6410,175 @@ z - + - + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -6597,174 +6586,174 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + - + + + + + + + + + - + - + - + - + - + - + - - - - - - - - - - - - - + - + - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/csd_freqs.png b/lib/matplotlib/tests/baseline_images/test_axes/csd_freqs.png index 625d69908a40..96f63a8ab436 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/csd_freqs.png and b/lib/matplotlib/tests/baseline_images/test_axes/csd_freqs.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/csd_noise.png b/lib/matplotlib/tests/baseline_images/test_axes/csd_noise.png index b0f3f9d0f242..d782034b6d5a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/csd_noise.png and b/lib/matplotlib/tests/baseline_images/test_axes/csd_noise.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/dash_offset.svg b/lib/matplotlib/tests/baseline_images/test_axes/dash_offset.svg index f82e44d0784d..4cad44d5e2c8 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/dash_offset.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/dash_offset.svg @@ -5,7 +5,7 @@ @@ -27,7 +27,7 @@ z " style="fill:#ffffff;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:0.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:2.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:4.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:6.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:8.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:10.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:12.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:14.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:16.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:18.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:20.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:22.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:24.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:26.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:28.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:30.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:32.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:34.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:36.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:38.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:40.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:42.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:44.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:46.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:48.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:50.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:52.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:54.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:56.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:58.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:60.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:62.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:64.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:66.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:68.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:70.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:72.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:74.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:76.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:78.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:80.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:82.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:84.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:86.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:88.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:90.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:92.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:94.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:96.0;stroke-width:5.000000;"/> - +" style="fill:none;stroke:#000000;stroke-dasharray:10.000000,10.000000;stroke-dashoffset:98.0;stroke-width:5.000000;"/> - @@ -2692,8 +2692,8 @@ L 518.4 388.8 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;"/> - @@ -2702,80 +2702,80 @@ L 72 43.2 +" id="m06330f1ddb" style="stroke:#000000;stroke-width:0.500000;"/> - + +" id="m11e768e027" style="stroke:#000000;stroke-width:0.500000;"/> - + - + - + - + - + - + - + - + - + - + - + @@ -2786,80 +2786,80 @@ L 0 4 +" id="m676f1748a0" style="stroke:#000000;stroke-width:0.500000;"/> - + +" id="m43a1fcc1ec" style="stroke:#000000;stroke-width:0.500000;"/> - + - + - + - + - + - + - + - + - + - + - + @@ -2867,7 +2867,7 @@ L -4 0 - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_basic.png b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_basic.png index 780d1f1410dc..dc1f9298410a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_basic.png and b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_basic.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_basic.svg b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_basic.svg index 32db3f18fd56..f4951cf3435c 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_basic.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_basic.svg @@ -10,533 +10,521 @@ - - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - + - + - + - - - + + - + +" id="DejaVuSans-35"/> - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + @@ -545,280 +533,280 @@ z - + - + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -826,383 +814,372 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - - - - - + - - + + + - - + + + - + + - + + - + - + - + + - - - + +" id="DejaVuSans-79"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_limits.png b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_limits.png index 71c2a1cecbb0..b6e015a48efb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_limits.png and b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_limits.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_limits.svg b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_limits.svg index 175eeb9bd42f..c217021aa9a4 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_limits.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_limits.svg @@ -10,1117 +10,1105 @@ - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - + + + + + + + - - - + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - + + + + + + + - - - + + + - - - - - - - - - - + + + + + + + + + + - - - - + + + + - - - + + + - - - + + + - - - - + + + + - - - + + + - - - + + + - - - - - - - - + + + + + + + + - + - + - + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - + + + + - - - - + + + + - + - + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - + + + + - - - - + + + + - + - + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - - - - - + + + + + - - - - - + + + + + - + - - - - + + + + - - - - + + + + - + - - - - + + + + - - - - + + + + - + - +" id="m4a371de47d" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - + + + + + + + + + + + - + - - - - + + + + - + - - - - + + + + - + - - + + - + - - + + - +" id="mdcc3c2ddd6" style="stroke:#0000ff;stroke-width:0.500000;"/> - - - - - - - - - - - + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + @@ -1129,187 +1117,185 @@ z - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1317,378 +1303,370 @@ z - - - - - - + - + + - + + + - + + - + + + - - + - - + - - - +" id="DejaVuSans-69"/> + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.pdf b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.pdf index cff1fc76d70c..019e16d8fa93 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.png b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.png index 12b225c2b033..133b3dd4a480 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.png and b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.svg b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.svg index 9f21a95c82b8..d7b29e940058 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.svg @@ -10,197 +10,190 @@ - - - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - +" id="m88a2383015" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -209,187 +202,183 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - - - + + - + +" id="DejaVuSans-35"/> - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - - - - + + + + @@ -397,381 +386,368 @@ z - - - + - + - + - + + + - + + - - - +" id="DejaVuSans-69"/> + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - +" id="m83c6693b27" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -780,234 +756,232 @@ L315.491 43.2" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-line - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1015,421 +989,411 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - - - - + + - + - + - - + +" id="DejaVuSans-6c"/> + + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + - + - + - + - + - - - + + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -1438,101 +1402,101 @@ L72 231.709" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1540,296 +1504,274 @@ L72 231.709" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - +" id="DejaVuSans-2c"/> - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - - - + + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -1838,389 +1780,388 @@ L315.491 231.709" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - +" id="DejaVuSans-2d"/> - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2228,179 +2169,175 @@ L-2 0" id="m101a636a75" style="stroke:#000000;stroke-width:0.5;"/> - - - + - + + +" id="DejaVuSans-67"/> - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - +" id="DejaVuSans-62"/> - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - + + - + - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_zorder.png b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_zorder.png index b4c010f68eeb..890e637f563e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_zorder.png and b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_zorder.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_zorder.svg b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_zorder.svg index 358cdf9937cb..bc60095d9d02 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/errorbar_zorder.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/errorbar_zorder.svg @@ -10,525 +10,508 @@ - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-37"/> - - + + - + - + - + - - + + - + - + - + - - + + @@ -537,516 +520,495 @@ Q23.9688 32.4219 30.6094 32.4219" id="BitstreamVeraSans-Roman-39"/> - + - + - + - + - +" id="DejaVuSans-2212"/> - - - - + + + + - + - + - - - + + + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - - + - + + - - + - + + - - + + +" id="DejaVuSans-74"/> + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + - + - - - - - - - - - - + + + + + + + + + + - + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/eventplot.pdf b/lib/matplotlib/tests/baseline_images/test_axes/eventplot.pdf index 52d5a3f18cb4..e98c3f6d6b34 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/eventplot.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/eventplot.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/eventplot.png b/lib/matplotlib/tests/baseline_images/test_axes/eventplot.png index 50c2f442739f..d8e6c077132e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/eventplot.png and b/lib/matplotlib/tests/baseline_images/test_axes/eventplot.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/eventplot.svg b/lib/matplotlib/tests/baseline_images/test_axes/eventplot.svg index 9a0cfb4fa2c2..dcc145527b7c 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/eventplot.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/eventplot.svg @@ -5,4821 +5,2483 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -4828,158 +2490,138 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.pdf b/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.pdf index 56e89ef042af..952ed88f4d8d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.png b/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.png index c544cf976ae5..b8a6c34709f7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.png and b/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.svg b/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.svg index 0f3d570a4452..cb7a2e09ee12 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.svg @@ -10,580 +10,558 @@ - - - - - + - + - + - - - - - - - - - - - - - +" style="fill:url(#hddfc7df858);stroke:#000000;"/> - - - + - + - + - + - - - - - - - - - - - - - - - - +" style="fill:#ff0000;stroke:#000000;"/> - + - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -592,647 +570,581 @@ L0 4" id="m741efc42ff" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - +" style="fill:#008000;stroke:#000000;"/> - - - - + - + - + - - - - - - - - - - - - - - - - +" style="fill:#ff0000;stroke:#000000;"/> - + - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + @@ -1241,124 +1153,104 @@ L513.936 313.298" style="fill:none;stroke:#000000;stroke-linecap:square;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + - + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/fill_units.png b/lib/matplotlib/tests/baseline_images/test_axes/fill_units.png index d5eb2e334fe8..57123afcad1c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/fill_units.png and b/lib/matplotlib/tests/baseline_images/test_axes/fill_units.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_large_small.png b/lib/matplotlib/tests/baseline_images/test_axes/formatter_large_small.png index 8f517b1a661f..457a4cdcbfae 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/formatter_large_small.png and b/lib/matplotlib/tests/baseline_images/test_axes/formatter_large_small.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_large_small.svg b/lib/matplotlib/tests/baseline_images/test_axes/formatter_large_small.svg index a1262102b988..20b200e11b39 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/formatter_large_small.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/formatter_large_small.svg @@ -10,473 +10,459 @@ - - - + - + - + - + - + - + - + - + - + - - - + +" id="DejaVuSans-2e"/> + - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - + - - + + - + +" id="DejaVuSans-35"/> - - - - - - - - - - + + + + + + + + + + @@ -484,153 +470,153 @@ z - + - + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - - - - - + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.png b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.png index 690e3d3fbc0f..bd2751a072a2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.png and b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.svg b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.svg index 5dad9362d57e..530c62c2fc6e 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.svg @@ -10,464 +10,448 @@ - - - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - - - + - + - + - + - + +" id="DejaVuSans-65"/> + - - - - - - - - - - - - + + + + + + + + + + + + @@ -475,130 +459,130 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.png b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.png index 669b5cc4dd71..dbe62b68b8e1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.png and b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.svg b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.svg index 197b465033af..bd15f98db786 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.svg @@ -10,659 +10,641 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-37"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - - - + - + - + - + - + +" id="DejaVuSans-65"/> + - - - - - - - - - - - - + + + + + + + + + + + + @@ -670,254 +652,253 @@ z - + - + - + - + - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - - +" id="DejaVuSans-6b"/> + - - - + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.png b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.png index c449d229341f..9c8a083c3326 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.png and b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.svg b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.svg index 2c2cbf3de7fd..6bcd7d0c0aab 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.svg @@ -10,659 +10,641 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-37"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - - - + - + - + - + - + +" id="DejaVuSans-65"/> + - - - - - - - - - - - - + + + + + + + + + + + + @@ -670,254 +652,253 @@ z - + - + - + - + - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - - +" id="DejaVuSans-6b"/> + - - - + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.png b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.png index bb7bb0909ba4..52249a97247a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.png and b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.svg b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.svg index 534cdc887b1b..7499ad1f049e 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.svg @@ -10,460 +10,443 @@ - - - + - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - - - - + + + + + + + - + - + - +" id="DejaVuSans-31"/> - - - - - - + + + + + + - + - + - - - - - - - + + + + + + + - + - + - + - - - - - - + + + + + + - + - + - - - - - - - + + + + + + + - - + - + - + - + - + - + + - +" id="DejaVuSans-34"/> - - - - - - - - - - - - + + + + + + + + + + + + @@ -471,343 +454,342 @@ z - + - + - + - + - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - - +" id="DejaVuSans-6b"/> + - - - + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.png b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.png index 30ef5680b5a6..49dbac2df490 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.png and b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.svg b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.svg index 8ca9869e8e29..976a462a3cc1 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.svg @@ -10,441 +10,426 @@ - - - + - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - - - - + + + + + + + - + - + - +" id="DejaVuSans-31"/> - - - - - - + + + + + + - + - + - - - - - - - + + + + + + + - + - + - + - - - - - - + + + + + + - + - + - - - - - - - + + + + + + + - - - + - + - + - + - + +" id="DejaVuSans-65"/> + - - - - - - - - - - - - + + + + + + + + + + + + @@ -452,364 +437,361 @@ z - + - + - + - + - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - - +" id="DejaVuSans-6b"/> + - - - + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hexbin_extent.png b/lib/matplotlib/tests/baseline_images/test_axes/hexbin_extent.png index c2cd6fcf8610..802bff42c383 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hexbin_extent.png and b/lib/matplotlib/tests/baseline_images/test_axes/hexbin_extent.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hexbin_log.png b/lib/matplotlib/tests/baseline_images/test_axes/hexbin_log.png index 634eaa0bc90d..7b3ddeed9d18 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hexbin_log.png and b/lib/matplotlib/tests/baseline_images/test_axes/hexbin_log.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist2d.png b/lib/matplotlib/tests/baseline_images/test_axes/hist2d.png index bd9c952d7904..60616ff9fb2b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist2d.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist2d.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist2d.svg b/lib/matplotlib/tests/baseline_images/test_axes/hist2d.svg index 32e7c7514ed7..1bcac8d7fcbc 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/hist2d.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/hist2d.svg @@ -10,283 +10,275 @@ - - - - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - + - - + + - + - + - + - - + + @@ -295,162 +287,160 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - + - + - + - + - +" id="DejaVuSans-2212"/> - - - + + + - + - + - + - - - + + + - + - + - - - + + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - - + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist2d_transpose.png b/lib/matplotlib/tests/baseline_images/test_axes/hist2d_transpose.png index dff57d8e3236..b83271bc9cf8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist2d_transpose.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist2d_transpose.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist2d_transpose.svg b/lib/matplotlib/tests/baseline_images/test_axes/hist2d_transpose.svg index 33158d549e2b..c67741245dae 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/hist2d_transpose.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/hist2d_transpose.svg @@ -10,323 +10,313 @@ - - - - + - + - + - + - + - + - + - + - - - + +" id="DejaVuSans-2e"/> + - - - - + + + + - + - + - + - - - - + + + + - + - + - - +" id="DejaVuSans-35"/> + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + @@ -335,162 +325,160 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - +" id="DejaVuSans-2212"/> - - - + + + - + - + - + - - - + + + - + - + - - - + + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - - + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_log.pdf b/lib/matplotlib/tests/baseline_images/test_axes/hist_log.pdf index 3243477ecc89..9c6e73351b0d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_log.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/hist_log.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_log.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_log.png index 50940aab4c0a..c753bd364477 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_log.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_log.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_log.svg b/lib/matplotlib/tests/baseline_images/test_axes/hist_log.svg index c0c7a2f3b8ef..d0825b425ba3 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/hist_log.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/hist_log.svg @@ -5,177 +5,205 @@ - - - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -184,276 +212,256 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_offset.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_offset.png index 7c3e0688244f..b06179890d52 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_offset.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_offset.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_offset.svg b/lib/matplotlib/tests/baseline_images/test_axes/hist_offset.svg index 2bfbac5d7f02..1bb0317cce11 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/hist_offset.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/hist_offset.svg @@ -10,496 +10,467 @@ - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + @@ -508,159 +479,159 @@ z - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + @@ -668,7 +639,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_bar.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_bar.png index a489b4b0901b..e31d4dc523dc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_bar.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_bar.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_bar.svg b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_bar.svg index 47b853594aec..d85588d55b85 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_bar.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_bar.svg @@ -10,997 +10,926 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + @@ -1009,563 +938,547 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - + - + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - - - - - - + + + + - - - - - - + + + + + + - - - + + - - - - - - - + + + + + + + - - - - - + + + + - - - - - - - - + + + + + + + + - - - + + - - - - - - - - + + + + + + + + - - - - + + + - - - - - - + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_normed.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_normed.png index 6b696ee5d520..eca3faa5decd 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_normed.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_normed.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_normed.svg b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_normed.svg index b6ffb643cc63..164d7a1c0421 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_normed.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_normed.svg @@ -10,496 +10,467 @@ - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + @@ -508,172 +479,170 @@ z - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - - + + + + + - + - + - +" id="DejaVuSans-35"/> - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + @@ -681,7 +650,7 @@ z - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_step.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_step.png index d0505a9fad7d..df1cf0d5bc4e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_step.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_step.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_step.svg b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_step.svg index 3dbab47eff89..334b30f12500 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_step.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_step.svg @@ -10,366 +10,357 @@ - - - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + @@ -378,176 +369,176 @@ z - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + @@ -555,7 +546,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled.png index 8a9092c65a16..824ba15a46d4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled.svg b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled.svg index 4a7b3a52a899..8f7bfbef5a68 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled.svg @@ -10,406 +10,395 @@ - - - - - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + @@ -418,176 +407,176 @@ z - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + @@ -595,7 +584,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled_alpha.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled_alpha.png index 0f2195d2593f..fce2262a6a68 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled_alpha.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled_alpha.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled_alpha.svg b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled_alpha.svg index bd58f8a15b3a..504d4435be31 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled_alpha.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled_alpha.svg @@ -10,406 +10,395 @@ - - - +" style="fill:#008000;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + @@ -418,176 +407,176 @@ z - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + @@ -595,7 +584,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_weights.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_weights.png index 9cb5f9ed1a5b..24ac858cfac5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_weights.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_weights.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_weights.svg b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_weights.svg index 10a48c0c270c..8964cca755c1 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_weights.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/hist_stacked_weights.svg @@ -10,406 +10,395 @@ - - - - - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + @@ -418,195 +407,195 @@ z - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + @@ -614,7 +603,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_step.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_step.png index 7086b4cc4a80..a7861e160874 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_step.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_step.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_step_bottom.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_step_bottom.png index 0a18c5cdf521..30084aab668e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_step_bottom.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_step_bottom.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_step_horiz.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_step_horiz.png index 170505aaf54e..809647d30eab 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_step_horiz.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_step_horiz.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_steplog.png b/lib/matplotlib/tests/baseline_images/test_axes/hist_steplog.png index b05cee2fe07b..27f4000d2e42 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/hist_steplog.png and b/lib/matplotlib/tests/baseline_images/test_axes/hist_steplog.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hist_steplog.svg b/lib/matplotlib/tests/baseline_images/test_axes/hist_steplog.svg index 5e03a2c67d9f..e95ecae5ff8f 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/hist_steplog.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/hist_steplog.svg @@ -10,553 +10,550 @@ - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -565,356 +562,356 @@ L0 4" id="m741efc42ff" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -922,533 +919,531 @@ L-2 0" id="ma4f294b3af" style="stroke:#000000;stroke-width:0.5;"/> - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1457,336 +1452,336 @@ L72 133.357" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1794,871 +1789,858 @@ L72 133.357" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + @@ -2666,881 +2648,879 @@ L72 223.513" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - - - + - + - + - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + + + + - + + + + - + - + - - - - + - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + - + - + - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + @@ -3548,17 +3528,17 @@ L0 2" id="m5284c7e2a0" style="stroke:#000000;stroke-width:0.5;"/> - - - - + - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/imshow.pdf b/lib/matplotlib/tests/baseline_images/test_axes/imshow.pdf index 622df86397e1..a84fec33de46 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/imshow.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/imshow.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/imshow.png b/lib/matplotlib/tests/baseline_images/test_axes/imshow.png index c490a8bbe4dc..a3f1c75a169c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/imshow.png and b/lib/matplotlib/tests/baseline_images/test_axes/imshow.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/imshow.svg b/lib/matplotlib/tests/baseline_images/test_axes/imshow.svg index 90ee8ff4ace0..34ceb350c550 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/imshow.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/imshow.svg @@ -5,101 +5,119 @@ - - - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -108,98 +126,78 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/imshow_clip.png b/lib/matplotlib/tests/baseline_images/test_axes/imshow_clip.png index c2b00431795a..5e52693577a5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/imshow_clip.png and b/lib/matplotlib/tests/baseline_images/test_axes/imshow_clip.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/imshow_clip.svg b/lib/matplotlib/tests/baseline_images/test_axes/imshow_clip.svg index e5856107ea65..68953e920b58 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/imshow_clip.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/imshow_clip.svg @@ -10,414 +10,402 @@ - - - - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - - + + + - + - + - +" id="DejaVuSans-34"/> - - - + + + - + - + - + - - - + + + - + - + - + - - - + + + @@ -426,104 +414,104 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - + - + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + @@ -531,239 +519,233 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - - + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/log_scales.pdf b/lib/matplotlib/tests/baseline_images/test_axes/log_scales.pdf index 14b1504620dd..8a8ade0b1755 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/log_scales.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/log_scales.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/log_scales.png b/lib/matplotlib/tests/baseline_images/test_axes/log_scales.png index f159e08501d3..9c36d2252e22 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/log_scales.png and b/lib/matplotlib/tests/baseline_images/test_axes/log_scales.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/log_scales.svg b/lib/matplotlib/tests/baseline_images/test_axes/log_scales.svg index d271bc10c066..3f7c4c2a57ce 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/log_scales.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/log_scales.svg @@ -10,404 +10,428 @@ - - - + - + - + - + - + - + - + - + - + - - + + - - - + + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - + - - - + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -416,221 +440,218 @@ L0 2" id="m81ece1b101" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - - + - + +" id="DejaVuSans-35"/> - - - - - - + + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -638,7 +659,7 @@ L-2 0" id="m101a636a75" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_freqs_dB.png b/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_freqs_dB.png index b59f63808eed..ebc50c676692 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_freqs_dB.png and b/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_freqs_dB.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_freqs_linear.png b/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_freqs_linear.png index 6cbf46bbe885..14f832a7355b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_freqs_linear.png and b/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_freqs_linear.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_noise_dB.png b/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_noise_dB.png index f6e85572488e..a18d0b40f43b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_noise_dB.png and b/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_noise_dB.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_noise_linear.png b/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_noise_linear.png index 539c1f698f0a..c2deb9e2414d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_noise_linear.png and b/lib/matplotlib/tests/baseline_images/test_axes/magnitude_spectrum_noise_linear.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/marker_edges.pdf b/lib/matplotlib/tests/baseline_images/test_axes/marker_edges.pdf index ab0cd2472381..92b4267bfac5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/marker_edges.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/marker_edges.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/marker_edges.svg b/lib/matplotlib/tests/baseline_images/test_axes/marker_edges.svg index fd944e867998..be53870176eb 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/marker_edges.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/marker_edges.svg @@ -5,205 +5,220 @@ - - - +" id="m8a88092657"/> - - - - - - - - - - - + + + + + + + + + + + - +" id="mb352f71fcb" style="stroke:#ff0000;"/> - - - - - - - - - - - + + + + + + + + + + + - +" id="me787e1c067" style="stroke:#0000ff;stroke-width:2.000000;"/> - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -212,158 +227,138 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/marker_styles.png b/lib/matplotlib/tests/baseline_images/test_axes/marker_styles.png index edf0329166a4..4a713d58542a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/marker_styles.png and b/lib/matplotlib/tests/baseline_images/test_axes/marker_styles.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery.png b/lib/matplotlib/tests/baseline_images/test_axes/markevery.png index 2cad60f2ed47..6363e0a89c9d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/markevery.png and b/lib/matplotlib/tests/baseline_images/test_axes/markevery.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery.svg b/lib/matplotlib/tests/baseline_images/test_axes/markevery.svg index ae7a20379ae5..71cae974f072 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/markevery.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/markevery.svg @@ -10,398 +10,389 @@ - - - +" id="m7012dc2431" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - +" id="mff394ba7f2" style="stroke:#000000;stroke-linejoin:miter;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - +" id="mc8ace52358" style="stroke:#000000;stroke-linejoin:miter;stroke-width:0.500000;"/> - - - - - - - - - - - + + + + + + + + + + + - + - - - - - - + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -410,599 +401,586 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + - + - + - + - - + - - + +" id="DejaVuSans-6c"/> + - - - - - - - - + + + + + + + + - - + + - - - + - + +" id="DejaVuSans-6b"/> + - - - - - - - - - + + + + + + + + + - - + + - - - + - + +" id="DejaVuSans-31"/> + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - + + - - - + + - - + + +" id="DejaVuSans-67"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_line.png b/lib/matplotlib/tests/baseline_images/test_axes/markevery_line.png index 3c8ce1392899..91cbb0c2ec0c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/markevery_line.png and b/lib/matplotlib/tests/baseline_images/test_axes/markevery_line.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_line.svg b/lib/matplotlib/tests/baseline_images/test_axes/markevery_line.svg index 4cd771a6f360..d964e5bbaf77 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/markevery_line.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/markevery_line.svg @@ -10,802 +10,793 @@ - - - + - +" id="m7057d0c3e5" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - +" id="mf75906a1ca" style="stroke:#000000;stroke-linejoin:miter;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - +" id="mef6541cbd0" style="stroke:#000000;stroke-linejoin:miter;stroke-width:0.500000;"/> - - - - - - - - - - - + + + + + + + + + + + - + - + - - - - - - + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -814,615 +805,602 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + - - + + - + - + - + - - + - - + +" id="DejaVuSans-6c"/> + - - - - - - - - + + + + + + + + - + - - + + - - - + - + +" id="DejaVuSans-6b"/> + - - - - - - - - - + + + + + + + + + - + - - + + - - - + - + +" id="DejaVuSans-31"/> + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - - + + - - - + + - - + + +" id="DejaVuSans-67"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.pdf b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.pdf index cb7f39d4fd35..e0f266c1670c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.png b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.png index e6be6edef786..8e829a587d0b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.png and b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.svg b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.svg index 445694bff68c..760903302ecd 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales.svg @@ -5,395 +5,412 @@ - - - + - +" id="m19f6cf14bf" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -402,284 +419,283 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -688,271 +704,270 @@ L359.403 98.4546" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -961,252 +976,251 @@ L516.956 98.4546" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1215,251 +1229,250 @@ L201.85 188.611" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1468,283 +1481,282 @@ L359.403 188.611" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1753,265 +1765,264 @@ L516.956 188.611" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2020,255 +2031,254 @@ L201.85 278.768" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2277,251 +2287,250 @@ L359.403 278.768" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2530,265 +2539,264 @@ L516.956 278.768" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2797,261 +2805,260 @@ L201.85 368.924" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3060,131 +3067,111 @@ L359.403 368.924" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.pdf b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.pdf index 394e21a0e040..103c8c292503 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.png b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.png index 2f77949c051d..eca3dbd23c55 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.png and b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.svg b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.svg index 401a1173874c..d24dd5298d63 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/markevery_linear_scales_zoomed.svg @@ -5,186 +5,290 @@ - - - + - +" id="m8e55c7c2ef" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -193,3272 +297,3014 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - - - - - - + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - - - - - + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.pdf b/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.pdf index fca29cea2a0d..d2c84bf64c66 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.png b/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.png index d23275c85ee6..41529e4f3384 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.png and b/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.svg b/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.svg index a4bac7ed5c5b..1c1ee14a1282 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/markevery_log_scales.svg @@ -5,549 +5,566 @@ - - - + - +" id="m5c9a596168" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -556,594 +573,593 @@ L0 2" id="md27378e979" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1152,571 +1168,570 @@ L360.532 87.51" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1725,552 +1740,551 @@ L518.085 87.51" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2279,551 +2293,550 @@ L202.979 177.667" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2832,583 +2845,582 @@ L360.532 177.667" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3417,564 +3429,563 @@ L518.085 177.667" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3983,554 +3994,553 @@ L202.979 267.823" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -4539,550 +4549,549 @@ L360.532 267.823" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -5091,564 +5100,563 @@ L518.085 267.823" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -5657,559 +5665,558 @@ L202.979 357.98" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -6218,287 +6225,267 @@ L360.532 357.98" style="fill:none;stroke:#0000ff;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.pdf b/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.pdf index fce0d4818014..fd0a2fa90bb2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.png b/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.png index d0c55cb4436f..68198655a371 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.png and b/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.svg b/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.svg index 840d9ab44a74..443dd4c2dca2 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/markevery_polar.svg @@ -5,8164 +5,8140 @@ - - - + - +" id="ma64103decd" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/minorticks_on_rcParams_both.png b/lib/matplotlib/tests/baseline_images/test_axes/minorticks_on_rcParams_both.png index 42fc1debbd12..edf142585188 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/minorticks_on_rcParams_both.png and b/lib/matplotlib/tests/baseline_images/test_axes/minorticks_on_rcParams_both.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/mixed_collection.png b/lib/matplotlib/tests/baseline_images/test_axes/mixed_collection.png index 990e886b6a70..4e94671af1ae 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/mixed_collection.png and b/lib/matplotlib/tests/baseline_images/test_axes/mixed_collection.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/mixed_collection.svg b/lib/matplotlib/tests/baseline_images/test_axes/mixed_collection.svg index ebddeb511324..95d568651a1c 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/mixed_collection.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/mixed_collection.svg @@ -5,189 +5,205 @@ - - - +" id="C0_0_c44dc81c45"/> - - + + - - + + - +" id="C1_0_2d88ba7888"/> - - + + - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -196,146 +212,126 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/mollweide_grid.png b/lib/matplotlib/tests/baseline_images/test_axes/mollweide_grid.png index fe566f77ee5e..b33444e1f3c7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/mollweide_grid.png and b/lib/matplotlib/tests/baseline_images/test_axes/mollweide_grid.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/mollweide_grid.svg b/lib/matplotlib/tests/baseline_images/test_axes/mollweide_grid.svg index f746856f65e1..64359dcf6376 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/mollweide_grid.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/mollweide_grid.svg @@ -10,1843 +10,1840 @@ - - + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.png b/lib/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.png index 7602127de8fa..06335cdba650 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.png and b/lib/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.svg b/lib/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.svg index d310d5317071..7451314a9eee 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.svg @@ -10,384 +10,375 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + @@ -396,171 +387,168 @@ Q46.9688 40.9219 40.5781 39.3125" id="BitstreamVeraSans-Roman-33"/> - + - + - + - + - +" id="DejaVuSans-2212"/> - - - + + + - + - + - +" id="DejaVuSans-34"/> - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - + + - + - + - - + + @@ -568,7 +556,7 @@ z - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/o_marker_path_snap.png b/lib/matplotlib/tests/baseline_images/test_axes/o_marker_path_snap.png index def1106ad57f..c0649800902e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/o_marker_path_snap.png and b/lib/matplotlib/tests/baseline_images/test_axes/o_marker_path_snap.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/offset_points.png b/lib/matplotlib/tests/baseline_images/test_axes/offset_points.png index 3f0b7465f86e..df2fee46e5e6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/offset_points.png and b/lib/matplotlib/tests/baseline_images/test_axes/offset_points.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/offset_points.svg b/lib/matplotlib/tests/baseline_images/test_axes/offset_points.svg index d0cb5413b68d..85d75654c318 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/offset_points.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/offset_points.svg @@ -10,384 +10,378 @@ - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -396,118 +390,118 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -515,146 +509,143 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - - - - - + + + - + + + - +" id="DejaVuSans-78"/> - - - - - - - - - - + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/pcolor_datetime_axis.png b/lib/matplotlib/tests/baseline_images/test_axes/pcolor_datetime_axis.png index 6352900bef6d..cb7c7dee81f0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/pcolor_datetime_axis.png and b/lib/matplotlib/tests/baseline_images/test_axes/pcolor_datetime_axis.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh.pdf b/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh.pdf index 45b45c461188..e45b4650f8a6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh.svg b/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh.svg index 06ae7b4544a2..a3bcb7c52440 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh.svg @@ -5,4896 +5,3391 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -4903,145 +3398,124 @@ L280.131 -382.009" id="C1_fc_eb50d2133a"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + @@ -5060,7 +3534,7 @@ z - + @@ -5079,7 +3553,7 @@ z - + @@ -5098,7 +3572,7 @@ z - + @@ -5117,7 +3591,7 @@ z - + @@ -5136,7 +3610,7 @@ z - + @@ -5155,7 +3629,7 @@ z - + @@ -5174,7 +3648,7 @@ z - + @@ -5193,7 +3667,7 @@ z - + @@ -5212,7 +3686,7 @@ z - + @@ -5231,7 +3705,7 @@ z - + @@ -5250,7 +3724,7 @@ z - + @@ -5269,7 +3743,7 @@ z - + @@ -5288,7 +3762,7 @@ z - + @@ -5307,7 +3781,7 @@ z - + @@ -5326,7 +3800,7 @@ z - + @@ -5345,7 +3819,7 @@ z - + @@ -5364,7 +3838,7 @@ z - + @@ -5383,7 +3857,7 @@ z - + @@ -5402,7 +3876,7 @@ z - + @@ -5421,7 +3895,7 @@ z - + @@ -5440,7 +3914,7 @@ z - + @@ -5459,7 +3933,7 @@ z - + @@ -5478,7 +3952,7 @@ z - + @@ -5497,7 +3971,7 @@ z - + @@ -5516,7 +3990,7 @@ z - + @@ -5535,7 +4009,7 @@ z - + @@ -5554,7 +4028,7 @@ z - + @@ -5573,7 +4047,7 @@ z - + @@ -5592,7 +4066,7 @@ z - + @@ -5611,7 +4085,7 @@ z - + @@ -5630,7 +4104,7 @@ z - + @@ -5649,7 +4123,7 @@ z - + @@ -5668,7 +4142,7 @@ z - + @@ -5687,7 +4161,7 @@ z - + @@ -5706,7 +4180,7 @@ z - + @@ -5725,7 +4199,7 @@ z - + @@ -5744,7 +4218,7 @@ z - + @@ -5763,7 +4237,7 @@ z - + @@ -5782,7 +4256,7 @@ z - + @@ -5801,7 +4275,7 @@ z - + @@ -5820,7 +4294,7 @@ z - + @@ -5839,7 +4313,7 @@ z - + @@ -5858,7 +4332,7 @@ z - + @@ -5877,7 +4351,7 @@ z - + @@ -5896,7 +4370,7 @@ z - + @@ -5915,7 +4389,7 @@ z - + @@ -5934,7 +4408,7 @@ z - + @@ -5953,7 +4427,7 @@ z - + @@ -5972,7 +4446,7 @@ z - + @@ -5991,7 +4465,7 @@ z - + @@ -6010,7 +4484,7 @@ z - + @@ -6029,7 +4503,7 @@ z - + @@ -6048,7 +4522,7 @@ z - + @@ -6067,7 +4541,7 @@ z - + @@ -6086,7 +4560,7 @@ z - + @@ -6105,7 +4579,7 @@ z - + @@ -6124,7 +4598,7 @@ z - + @@ -6143,7 +4617,7 @@ z - + @@ -6162,7 +4636,7 @@ z - + @@ -6181,7 +4655,7 @@ z - + @@ -6200,7 +4674,7 @@ z - + @@ -6219,7 +4693,7 @@ z - + @@ -6238,7 +4712,7 @@ z - + @@ -6257,7 +4731,7 @@ z - + @@ -6276,7 +4750,7 @@ z - + @@ -6295,7 +4769,7 @@ z - + @@ -6314,7 +4788,7 @@ z - + @@ -6333,7 +4807,7 @@ z - + @@ -6352,7 +4826,7 @@ z - + @@ -6371,7 +4845,7 @@ z - + @@ -6390,7 +4864,7 @@ z - + @@ -6409,7 +4883,7 @@ z - + @@ -6428,7 +4902,7 @@ z - + @@ -6447,7 +4921,7 @@ z - + @@ -6466,7 +4940,7 @@ z - + @@ -6485,7 +4959,7 @@ z - + @@ -6504,7 +4978,7 @@ z - + @@ -6523,7 +4997,7 @@ z - + @@ -6542,7 +5016,7 @@ z - + @@ -6561,7 +5035,7 @@ z - + @@ -6580,7 +5054,7 @@ z - + @@ -6599,7 +5073,7 @@ z - + @@ -6618,7 +5092,7 @@ z - + @@ -6637,7 +5111,7 @@ z - + @@ -6656,7 +5130,7 @@ z - + @@ -6675,7 +5149,7 @@ z - + @@ -6694,7 +5168,7 @@ z - + @@ -6713,7 +5187,7 @@ z - + @@ -6732,7 +5206,7 @@ z - + @@ -6751,7 +5225,7 @@ z - + @@ -6770,7 +5244,7 @@ z - + @@ -6789,7 +5263,7 @@ z - + @@ -6808,7 +5282,7 @@ z - + @@ -6827,7 +5301,7 @@ z - + @@ -6846,7 +5320,7 @@ z - + @@ -6865,7 +5339,7 @@ z - + @@ -6884,7 +5358,7 @@ z - + @@ -6903,7 +5377,7 @@ z - + @@ -6922,7 +5396,7 @@ z - + @@ -6941,7 +5415,7 @@ z - + @@ -6960,7 +5434,7 @@ z - + @@ -6979,7 +5453,7 @@ z - + @@ -6998,7 +5472,7 @@ z - + @@ -7017,7 +5491,7 @@ z - + @@ -7036,7 +5510,7 @@ z - + @@ -7055,7 +5529,7 @@ z - + @@ -7074,7 +5548,7 @@ z - + @@ -7093,7 +5567,7 @@ z - + @@ -7112,7 +5586,7 @@ z - + @@ -7131,7 +5605,7 @@ z - + @@ -7150,7 +5624,7 @@ z - + @@ -7169,7 +5643,7 @@ z - + @@ -7188,7 +5662,7 @@ z - + @@ -7207,7 +5681,7 @@ z - + @@ -7226,7 +5700,7 @@ z - + @@ -7245,7 +5719,7 @@ z - + @@ -7264,7 +5738,7 @@ z - + @@ -7283,7 +5757,7 @@ z - + @@ -7302,7 +5776,7 @@ z - + @@ -7321,7 +5795,7 @@ z - + @@ -7340,7 +5814,7 @@ z - + @@ -7359,7 +5833,7 @@ z - + @@ -7378,7 +5852,7 @@ z - + @@ -7397,7 +5871,7 @@ z - + @@ -7416,7 +5890,7 @@ z - + @@ -7435,7 +5909,7 @@ z - + @@ -7454,7 +5928,7 @@ z - + @@ -7473,7 +5947,7 @@ z - + @@ -7492,7 +5966,7 @@ z - + @@ -7511,7 +5985,7 @@ z - + @@ -7530,7 +6004,7 @@ z - + @@ -7549,7 +6023,7 @@ z - + @@ -7568,7 +6042,7 @@ z - + @@ -7587,7 +6061,7 @@ z - + @@ -7606,7 +6080,7 @@ z - + @@ -7625,7 +6099,7 @@ z - + @@ -7644,7 +6118,7 @@ z - + @@ -7663,7 +6137,7 @@ z - + @@ -7682,7 +6156,7 @@ z - + @@ -7701,7 +6175,7 @@ z - + @@ -7720,7 +6194,7 @@ z - + @@ -7739,7 +6213,7 @@ z - + @@ -7758,7 +6232,7 @@ z - + @@ -7777,7 +6251,7 @@ z - + @@ -7796,7 +6270,7 @@ z - + @@ -7815,7 +6289,7 @@ z - + @@ -7834,7 +6308,7 @@ z - + @@ -7853,7 +6327,7 @@ z - + @@ -7872,7 +6346,7 @@ z - + @@ -7891,7 +6365,7 @@ z - + @@ -7910,7 +6384,7 @@ z - + @@ -7929,7 +6403,7 @@ z - + @@ -7948,7 +6422,7 @@ z - + @@ -7967,7 +6441,7 @@ z - + @@ -7986,7 +6460,7 @@ z - + @@ -8005,7 +6479,7 @@ z - + @@ -8024,7 +6498,7 @@ z - + @@ -8043,7 +6517,7 @@ z - + @@ -8062,7 +6536,7 @@ z - + @@ -8081,7 +6555,7 @@ z - + @@ -8100,7 +6574,7 @@ z - + @@ -8119,7 +6593,7 @@ z - + @@ -8138,7 +6612,7 @@ z - + @@ -8157,7 +6631,7 @@ z - + @@ -8176,7 +6650,7 @@ z - + @@ -8195,7 +6669,7 @@ z - + @@ -8214,7 +6688,7 @@ z - + @@ -8233,7 +6707,7 @@ z - + @@ -8252,7 +6726,7 @@ z - + @@ -8271,7 +6745,7 @@ z - + @@ -8290,7 +6764,7 @@ z - + @@ -8309,7 +6783,7 @@ z - + @@ -8328,7 +6802,7 @@ z - + @@ -8347,7 +6821,7 @@ z - + @@ -8366,7 +6840,7 @@ z - + @@ -8385,7 +6859,7 @@ z - + @@ -8404,7 +6878,7 @@ z - + @@ -8423,7 +6897,7 @@ z - + @@ -8442,7 +6916,7 @@ z - + @@ -8461,7 +6935,7 @@ z - + @@ -8480,7 +6954,7 @@ z - + @@ -8499,7 +6973,7 @@ z - + @@ -8518,7 +6992,7 @@ z - + @@ -8537,7 +7011,7 @@ z - + @@ -8556,7 +7030,7 @@ z - + @@ -8575,7 +7049,7 @@ z - + @@ -8594,7 +7068,7 @@ z - + @@ -8613,7 +7087,7 @@ z - + @@ -8632,7 +7106,7 @@ z - + @@ -8651,7 +7125,7 @@ z - + @@ -8670,7 +7144,7 @@ z - + @@ -8689,7 +7163,7 @@ z - + @@ -8708,7 +7182,7 @@ z - + @@ -8727,7 +7201,7 @@ z - + @@ -8746,7 +7220,7 @@ z - + @@ -8765,7 +7239,7 @@ z - + @@ -8784,7 +7258,7 @@ z - + @@ -8803,7 +7277,7 @@ z - + @@ -8822,7 +7296,7 @@ z - + @@ -8841,7 +7315,7 @@ z - + @@ -8860,7 +7334,7 @@ z - + @@ -8879,7 +7353,7 @@ z - + @@ -8898,7 +7372,7 @@ z - + @@ -8917,7 +7391,7 @@ z - + @@ -8936,7 +7410,7 @@ z - + @@ -8955,7 +7429,7 @@ z - + @@ -8974,7 +7448,7 @@ z - + @@ -8993,7 +7467,7 @@ z - + @@ -9012,7 +7486,7 @@ z - + @@ -9031,7 +7505,7 @@ z - + @@ -9050,7 +7524,7 @@ z - + @@ -9069,7 +7543,7 @@ z - + @@ -9088,7 +7562,7 @@ z - + @@ -9107,7 +7581,7 @@ z - + @@ -9126,7 +7600,7 @@ z - + @@ -9145,7 +7619,7 @@ z - + @@ -9164,7 +7638,7 @@ z - + @@ -9183,7 +7657,7 @@ z - + @@ -9202,7 +7676,7 @@ z - + @@ -9221,7 +7695,7 @@ z - + @@ -9240,7 +7714,7 @@ z - + @@ -9259,7 +7733,7 @@ z - + @@ -9278,7 +7752,7 @@ z - + @@ -9297,7 +7771,7 @@ z - + @@ -9316,7 +7790,7 @@ z - + @@ -9335,7 +7809,7 @@ z - + @@ -9354,7 +7828,7 @@ z - + @@ -9373,7 +7847,7 @@ z - + @@ -9392,7 +7866,7 @@ z - + @@ -9411,7 +7885,7 @@ z - + @@ -9430,7 +7904,7 @@ z - + @@ -9449,7 +7923,7 @@ z - + @@ -9468,7 +7942,7 @@ z - + @@ -9487,7 +7961,7 @@ z - + @@ -9506,7 +7980,7 @@ z - + @@ -9525,7 +7999,7 @@ z - + @@ -9544,7 +8018,7 @@ z - + @@ -9563,7 +8037,7 @@ z - + @@ -9582,7 +8056,7 @@ z - + @@ -9601,7 +8075,7 @@ z - + @@ -9620,7 +8094,7 @@ z - + @@ -9639,7 +8113,7 @@ z - + @@ -9658,7 +8132,7 @@ z - + @@ -9677,7 +8151,7 @@ z - + @@ -9696,7 +8170,7 @@ z - + @@ -9715,7 +8189,7 @@ z - + @@ -9734,7 +8208,7 @@ z - + @@ -9753,7 +8227,7 @@ z - + @@ -9772,7 +8246,7 @@ z - + @@ -9791,7 +8265,7 @@ z - + @@ -9810,7 +8284,7 @@ z - + @@ -9829,7 +8303,7 @@ z - + @@ -9848,7 +8322,7 @@ z - + @@ -9867,7 +8341,7 @@ z - + @@ -9886,7 +8360,7 @@ z - + @@ -9905,7 +8379,7 @@ z - + @@ -9924,7 +8398,7 @@ z - + @@ -9943,7 +8417,7 @@ z - + @@ -9962,7 +8436,7 @@ z - + @@ -9981,7 +8455,7 @@ z - + @@ -10000,7 +8474,7 @@ z - + @@ -10019,7 +8493,7 @@ z - + @@ -10038,7 +8512,7 @@ z - + @@ -10057,7 +8531,7 @@ z - + @@ -10076,7 +8550,7 @@ z - + @@ -10095,7 +8569,7 @@ z - + @@ -10114,7 +8588,7 @@ z - + @@ -10133,7 +8607,7 @@ z - + @@ -10152,7 +8626,7 @@ z - + @@ -10171,7 +8645,7 @@ z - + @@ -10190,7 +8664,7 @@ z - + @@ -10209,7 +8683,7 @@ z - + @@ -10228,7 +8702,7 @@ z - + @@ -10247,7 +8721,7 @@ z - + @@ -10266,7 +8740,7 @@ z - + @@ -10285,7 +8759,7 @@ z - + @@ -10304,7 +8778,7 @@ z - + @@ -10323,7 +8797,7 @@ z - + @@ -10342,7 +8816,7 @@ z - + @@ -10361,7 +8835,7 @@ z - + @@ -10380,7 +8854,7 @@ z - + @@ -10399,7 +8873,7 @@ z - + @@ -10418,7 +8892,7 @@ z - + @@ -10437,7 +8911,7 @@ z - + @@ -10456,7 +8930,7 @@ z - + @@ -10475,7 +8949,7 @@ z - + @@ -10494,7 +8968,7 @@ z - + @@ -10513,7 +8987,7 @@ z - + @@ -10532,7 +9006,7 @@ z - + @@ -10551,7 +9025,7 @@ z - + @@ -10570,7 +9044,7 @@ z - + @@ -10589,7 +9063,7 @@ z - + @@ -10608,7 +9082,7 @@ z - + @@ -10627,7 +9101,7 @@ z - + @@ -10646,7 +9120,7 @@ z - + @@ -10665,7 +9139,7 @@ z - + @@ -10684,7 +9158,7 @@ z - + @@ -10703,7 +9177,7 @@ z - + @@ -10722,7 +9196,7 @@ z - + @@ -10741,7 +9215,7 @@ z - + @@ -10760,7 +9234,7 @@ z - + @@ -10779,7 +9253,7 @@ z - + @@ -10798,7 +9272,7 @@ z - + @@ -10817,7 +9291,7 @@ z - + @@ -10836,7 +9310,7 @@ z - + @@ -10855,7 +9329,7 @@ z - + @@ -10874,7 +9348,7 @@ z - + @@ -10893,7 +9367,7 @@ z - + @@ -10912,7 +9386,7 @@ z - + @@ -10931,7 +9405,7 @@ z - + @@ -10950,7 +9424,7 @@ z - + @@ -10969,7 +9443,7 @@ z - + @@ -10988,7 +9462,7 @@ z - + @@ -11007,7 +9481,7 @@ z - + @@ -11026,7 +9500,7 @@ z - + @@ -11045,7 +9519,7 @@ z - + @@ -11064,7 +9538,7 @@ z - + @@ -11083,7 +9557,7 @@ z - + @@ -11102,7 +9576,7 @@ z - + @@ -11121,7 +9595,7 @@ z - + @@ -11140,7 +9614,7 @@ z - + @@ -11159,7 +9633,7 @@ z - + @@ -11178,7 +9652,7 @@ z - + @@ -11197,7 +9671,7 @@ z - + @@ -11216,7 +9690,7 @@ z - + @@ -11235,7 +9709,7 @@ z - + @@ -11254,7 +9728,7 @@ z - + @@ -11273,7 +9747,7 @@ z - + @@ -11292,7 +9766,7 @@ z - + @@ -11311,7 +9785,7 @@ z - + @@ -11330,7 +9804,7 @@ z - + @@ -11349,7 +9823,7 @@ z - + @@ -11368,7 +9842,7 @@ z - + @@ -11387,7 +9861,7 @@ z - + @@ -11406,7 +9880,7 @@ z - + @@ -11425,7 +9899,7 @@ z - + @@ -11444,7 +9918,7 @@ z - + @@ -11463,7 +9937,7 @@ z - + @@ -11482,7 +9956,7 @@ z - + @@ -11501,7 +9975,7 @@ z - + @@ -11520,7 +9994,7 @@ z - + @@ -11539,7 +10013,7 @@ z - + @@ -11558,7 +10032,7 @@ z - + @@ -11577,7 +10051,7 @@ z - + @@ -11596,7 +10070,7 @@ z - + @@ -11615,7 +10089,7 @@ z - + @@ -11634,7 +10108,7 @@ z - + @@ -11653,7 +10127,7 @@ z - + @@ -11672,7 +10146,7 @@ z - + @@ -11691,7 +10165,7 @@ z - + @@ -11710,7 +10184,7 @@ z - + @@ -11729,7 +10203,7 @@ z - + @@ -11748,7 +10222,7 @@ z - + @@ -11767,7 +10241,7 @@ z - + @@ -11786,7 +10260,7 @@ z - + @@ -11805,7 +10279,7 @@ z - + @@ -11824,7 +10298,7 @@ z - + @@ -11843,7 +10317,7 @@ z - + @@ -11862,7 +10336,7 @@ z - + @@ -11881,7 +10355,7 @@ z - + @@ -11900,7 +10374,7 @@ z - + @@ -11919,7 +10393,7 @@ z - + @@ -11938,7 +10412,7 @@ z - + @@ -11957,7 +10431,7 @@ z - + @@ -11976,7 +10450,7 @@ z - + @@ -11995,7 +10469,7 @@ z - + @@ -12014,7 +10488,7 @@ z - + @@ -12033,7 +10507,7 @@ z - + @@ -12052,7 +10526,7 @@ z - + @@ -12071,7 +10545,7 @@ z - + @@ -12090,7 +10564,7 @@ z - + @@ -12109,7 +10583,7 @@ z - + @@ -12128,7 +10602,7 @@ z - + @@ -12147,7 +10621,7 @@ z - + @@ -12166,7 +10640,7 @@ z - + @@ -12185,7 +10659,7 @@ z - + @@ -12204,7 +10678,7 @@ z - + @@ -12223,7 +10697,7 @@ z - + @@ -12242,7 +10716,7 @@ z - + @@ -12261,7 +10735,7 @@ z - + @@ -12280,7 +10754,7 @@ z - + @@ -12299,7 +10773,7 @@ z - + @@ -12318,7 +10792,7 @@ z - + @@ -12337,7 +10811,7 @@ z - + @@ -12356,7 +10830,7 @@ z - + @@ -12375,7 +10849,7 @@ z - + @@ -12394,7 +10868,7 @@ z - + @@ -12413,7 +10887,7 @@ z - + @@ -12432,7 +10906,7 @@ z - + @@ -12451,7 +10925,7 @@ z - + @@ -12470,7 +10944,7 @@ z - + @@ -12489,7 +10963,7 @@ z - + @@ -12508,7 +10982,7 @@ z - + @@ -12527,7 +11001,7 @@ z - + @@ -12546,7 +11020,7 @@ z - + @@ -12565,7 +11039,7 @@ z - + @@ -12584,7 +11058,7 @@ z - + @@ -12603,7 +11077,7 @@ z - + @@ -12622,7 +11096,7 @@ z - + @@ -12641,7 +11115,7 @@ z - + @@ -12660,7 +11134,7 @@ z - + @@ -12679,7 +11153,7 @@ z - + @@ -12698,7 +11172,7 @@ z - + @@ -12717,7 +11191,7 @@ z - + @@ -12736,7 +11210,7 @@ z - + @@ -12755,7 +11229,7 @@ z - + @@ -12774,7 +11248,7 @@ z - + @@ -12793,7 +11267,7 @@ z - + @@ -12812,7 +11286,7 @@ z - + @@ -12831,7 +11305,7 @@ z - + @@ -12850,7 +11324,7 @@ z - + @@ -12869,7 +11343,7 @@ z - + @@ -12888,7 +11362,7 @@ z - + @@ -12907,7 +11381,7 @@ z - + @@ -12926,7 +11400,7 @@ z - + @@ -12945,7 +11419,7 @@ z - + @@ -12964,7 +11438,7 @@ z - + @@ -12983,7 +11457,7 @@ z - + @@ -13002,7 +11476,7 @@ z - + @@ -13021,7 +11495,7 @@ z - + @@ -13040,7 +11514,7 @@ z - + @@ -13059,7 +11533,7 @@ z - + @@ -13078,7 +11552,7 @@ z - + @@ -13097,7 +11571,7 @@ z - + @@ -13116,7 +11590,7 @@ z - + @@ -13135,7 +11609,7 @@ z - + @@ -13154,7 +11628,7 @@ z - + @@ -13173,7 +11647,7 @@ z - + @@ -13192,7 +11666,7 @@ z - + @@ -13211,7 +11685,7 @@ z - + @@ -13230,7 +11704,7 @@ z - + @@ -13249,7 +11723,7 @@ z - + @@ -13268,7 +11742,7 @@ z - + @@ -13287,7 +11761,7 @@ z - + @@ -13306,7 +11780,7 @@ z - + @@ -13325,7 +11799,7 @@ z - + @@ -13344,7 +11818,7 @@ z - + @@ -13363,7 +11837,7 @@ z - + @@ -13382,7 +11856,7 @@ z - + @@ -13401,7 +11875,7 @@ z - + @@ -13420,7 +11894,7 @@ z - + @@ -13439,7 +11913,7 @@ z - + @@ -13458,7 +11932,7 @@ z - + @@ -13477,7 +11951,7 @@ z - + @@ -13496,7 +11970,7 @@ z - + @@ -13515,7 +11989,7 @@ z - + @@ -13534,7 +12008,7 @@ z - + @@ -13553,7 +12027,7 @@ z - + @@ -13572,7 +12046,7 @@ z - + @@ -13591,7 +12065,7 @@ z - + @@ -13610,7 +12084,7 @@ z - + @@ -13629,7 +12103,7 @@ z - + @@ -13648,7 +12122,7 @@ z - + @@ -13667,7 +12141,7 @@ z - + @@ -13686,7 +12160,7 @@ z - + @@ -13705,7 +12179,7 @@ z - + @@ -13724,7 +12198,7 @@ z - + @@ -13743,7 +12217,7 @@ z - + @@ -13762,7 +12236,7 @@ z - + @@ -13781,7 +12255,7 @@ z - + @@ -13800,7 +12274,7 @@ z - + @@ -13819,7 +12293,7 @@ z - + @@ -13838,7 +12312,7 @@ z - + @@ -13857,7 +12331,7 @@ z - + @@ -13876,7 +12350,7 @@ z - + @@ -13895,7 +12369,7 @@ z - + @@ -13914,7 +12388,7 @@ z - + @@ -13933,7 +12407,7 @@ z - + @@ -13952,7 +12426,7 @@ z - + @@ -13971,7 +12445,7 @@ z - + @@ -13990,7 +12464,7 @@ z - + @@ -14009,7 +12483,7 @@ z - + @@ -14028,7 +12502,7 @@ z - + @@ -14047,7 +12521,7 @@ z - + @@ -14066,7 +12540,7 @@ z - + @@ -14085,7 +12559,7 @@ z - + @@ -14104,7 +12578,7 @@ z - + @@ -14123,7 +12597,7 @@ z - + @@ -14142,7 +12616,7 @@ z - + @@ -14161,7 +12635,7 @@ z - + @@ -14180,7 +12654,7 @@ z - + @@ -14199,7 +12673,7 @@ z - + @@ -14218,7 +12692,7 @@ z - + @@ -14237,7 +12711,7 @@ z - + @@ -14256,7 +12730,7 @@ z - + @@ -14275,7 +12749,7 @@ z - + @@ -14294,7 +12768,7 @@ z - + @@ -14313,7 +12787,7 @@ z - + @@ -14332,7 +12806,7 @@ z - + @@ -14351,7 +12825,7 @@ z - + @@ -14370,7 +12844,7 @@ z - + @@ -14389,7 +12863,7 @@ z - + @@ -14408,7 +12882,7 @@ z - + @@ -14427,7 +12901,7 @@ z - + @@ -14446,7 +12920,7 @@ z - + @@ -14465,7 +12939,7 @@ z - + @@ -14484,7 +12958,7 @@ z - + @@ -14503,7 +12977,7 @@ z - + @@ -14522,7 +12996,7 @@ z - + @@ -14541,7 +13015,7 @@ z - + @@ -14560,7 +13034,7 @@ z - + @@ -14579,7 +13053,7 @@ z - + @@ -14598,7 +13072,7 @@ z - + @@ -14617,7 +13091,7 @@ z - + @@ -14636,7 +13110,7 @@ z - + @@ -14655,7 +13129,7 @@ z - + @@ -14674,7 +13148,7 @@ z - + @@ -14693,7 +13167,7 @@ z - + @@ -14712,7 +13186,7 @@ z - + @@ -14731,7 +13205,7 @@ z - + @@ -14750,7 +13224,7 @@ z - + @@ -14769,7 +13243,7 @@ z - + @@ -14788,7 +13262,7 @@ z - + @@ -14807,7 +13281,7 @@ z - + @@ -14826,7 +13300,7 @@ z - + @@ -14845,7 +13319,7 @@ z - + @@ -14864,7 +13338,7 @@ z - + @@ -14883,7 +13357,7 @@ z - + @@ -14902,7 +13376,7 @@ z - + @@ -14921,7 +13395,7 @@ z - + @@ -14940,7 +13414,7 @@ z - + @@ -14959,7 +13433,7 @@ z - + @@ -14978,7 +13452,7 @@ z - + @@ -14997,7 +13471,7 @@ z - + @@ -15016,7 +13490,7 @@ z - + @@ -15035,7 +13509,7 @@ z - + @@ -15054,7 +13528,7 @@ z - + @@ -15073,7 +13547,7 @@ z - + @@ -15092,7 +13566,7 @@ z - + @@ -15111,7 +13585,7 @@ z - + @@ -15130,7 +13604,7 @@ z - + @@ -15149,7 +13623,7 @@ z - + @@ -15168,7 +13642,7 @@ z - + @@ -15187,7 +13661,7 @@ z - + @@ -15206,7 +13680,7 @@ z - + @@ -15225,7 +13699,7 @@ z - + @@ -15244,7 +13718,7 @@ z - + @@ -15263,7 +13737,7 @@ z - + @@ -15282,7 +13756,7 @@ z - + @@ -15301,7 +13775,7 @@ z - + @@ -15320,7 +13794,7 @@ z - + @@ -15339,7 +13813,7 @@ z - + @@ -15358,7 +13832,7 @@ z - + @@ -15377,7 +13851,7 @@ z - + @@ -15396,7 +13870,7 @@ z - + @@ -15415,7 +13889,7 @@ z - + @@ -15434,7 +13908,7 @@ z - + @@ -15453,7 +13927,7 @@ z - + @@ -15472,7 +13946,7 @@ z - + @@ -15491,7 +13965,7 @@ z - + @@ -15510,7 +13984,7 @@ z - + @@ -15529,7 +14003,7 @@ z - + @@ -15548,7 +14022,7 @@ z - + @@ -15567,7 +14041,7 @@ z - + @@ -15586,7 +14060,7 @@ z - + @@ -15605,7 +14079,7 @@ z - + @@ -15624,7 +14098,7 @@ z - + @@ -15643,7 +14117,7 @@ z - + @@ -15662,7 +14136,7 @@ z - + @@ -15681,7 +14155,7 @@ z - + @@ -15700,7 +14174,7 @@ z - + @@ -15719,7 +14193,7 @@ z - + @@ -15738,7 +14212,7 @@ z - + @@ -15757,7 +14231,7 @@ z - + @@ -15776,7 +14250,7 @@ z - + @@ -15795,7 +14269,7 @@ z - + @@ -15814,7 +14288,7 @@ z - + @@ -15833,7 +14307,7 @@ z - + @@ -15852,7 +14326,7 @@ z - + @@ -15871,7 +14345,7 @@ z - + @@ -15890,7 +14364,7 @@ z - + @@ -15909,7 +14383,7 @@ z - + @@ -15928,7 +14402,7 @@ z - + @@ -15947,7 +14421,7 @@ z - + @@ -15966,7 +14440,7 @@ z - + @@ -15985,7 +14459,7 @@ z - + @@ -16004,7 +14478,7 @@ z - + @@ -16023,7 +14497,7 @@ z - + @@ -16042,7 +14516,7 @@ z - + @@ -16061,7 +14535,7 @@ z - + @@ -16080,7 +14554,7 @@ z - + @@ -16099,7 +14573,7 @@ z - + @@ -16118,7 +14592,7 @@ z - + @@ -16137,7 +14611,7 @@ z - + @@ -16156,7 +14630,7 @@ z - + @@ -16175,7 +14649,7 @@ z - + @@ -16194,7 +14668,7 @@ z - + @@ -16213,7 +14687,7 @@ z - + @@ -16232,7 +14706,7 @@ z - + @@ -16251,7 +14725,7 @@ z - + @@ -16270,7 +14744,7 @@ z - + @@ -16289,7 +14763,7 @@ z - + @@ -16308,7 +14782,7 @@ z - + @@ -16327,7 +14801,7 @@ z - + @@ -16346,7 +14820,7 @@ z - + @@ -16365,7 +14839,7 @@ z - + @@ -16384,7 +14858,7 @@ z - + @@ -16403,7 +14877,7 @@ z - + @@ -16422,7 +14896,7 @@ z - + @@ -16441,7 +14915,7 @@ z - + @@ -16460,7 +14934,7 @@ z - + @@ -16479,7 +14953,7 @@ z - + @@ -16498,7 +14972,7 @@ z - + @@ -16517,7 +14991,7 @@ z - + @@ -16536,7 +15010,7 @@ z - + @@ -16555,7 +15029,7 @@ z - + @@ -16574,7 +15048,7 @@ z - + @@ -16593,7 +15067,7 @@ z - + @@ -16612,7 +15086,7 @@ z - + @@ -16631,7 +15105,7 @@ z - + @@ -16650,7 +15124,7 @@ z - + @@ -16669,7 +15143,7 @@ z - + @@ -16688,7 +15162,7 @@ z - + @@ -16707,7 +15181,7 @@ z - + @@ -16726,7 +15200,7 @@ z - + @@ -16745,7 +15219,7 @@ z - + @@ -16764,7 +15238,7 @@ z - + @@ -16783,7 +15257,7 @@ z - + @@ -16802,7 +15276,7 @@ z - + @@ -16821,7 +15295,7 @@ z - + @@ -16840,7 +15314,7 @@ z - + @@ -16859,7 +15333,7 @@ z - + @@ -16878,7 +15352,7 @@ z - + @@ -16897,7 +15371,7 @@ z - + @@ -16916,7 +15390,7 @@ z - + @@ -16935,7 +15409,7 @@ z - + @@ -16954,7 +15428,7 @@ z - + @@ -16973,7 +15447,7 @@ z - + @@ -16992,7 +15466,7 @@ z - + @@ -17011,7 +15485,7 @@ z - + @@ -17030,7 +15504,7 @@ z - + @@ -17049,7 +15523,7 @@ z - + @@ -17068,7 +15542,7 @@ z - + @@ -17087,7 +15561,7 @@ z - + @@ -17106,7 +15580,7 @@ z - + @@ -17125,7 +15599,7 @@ z - + @@ -17144,7 +15618,7 @@ z - + @@ -17163,7 +15637,7 @@ z - + @@ -17182,7 +15656,7 @@ z - + @@ -17201,7 +15675,7 @@ z - + @@ -17220,7 +15694,7 @@ z - + @@ -17239,7 +15713,7 @@ z - + @@ -17258,7 +15732,7 @@ z - + @@ -17277,7 +15751,7 @@ z - + @@ -17296,7 +15770,7 @@ z - + @@ -17315,7 +15789,7 @@ z - + @@ -17334,7 +15808,7 @@ z - + @@ -17353,7 +15827,7 @@ z - + @@ -17372,7 +15846,7 @@ z - + @@ -17391,7 +15865,7 @@ z - + @@ -17410,7 +15884,7 @@ z - + @@ -17429,7 +15903,7 @@ z - + @@ -17448,7 +15922,7 @@ z - + @@ -17467,7 +15941,7 @@ z - + @@ -17486,7 +15960,7 @@ z - + @@ -17505,7 +15979,7 @@ z - + @@ -17524,7 +15998,7 @@ z - + @@ -17543,7 +16017,7 @@ z - + @@ -17562,7 +16036,7 @@ z - + @@ -17581,7 +16055,7 @@ z - + @@ -17600,7 +16074,7 @@ z - + @@ -17619,7 +16093,7 @@ z - + @@ -17638,7 +16112,7 @@ z - + @@ -17657,7 +16131,7 @@ z - + @@ -17676,7 +16150,7 @@ z - + @@ -17695,7 +16169,7 @@ z - + @@ -17714,7 +16188,7 @@ z - + @@ -17733,7 +16207,7 @@ z - + @@ -17752,7 +16226,7 @@ z - + @@ -17771,7 +16245,7 @@ z - + @@ -17790,7 +16264,7 @@ z - + @@ -17809,7 +16283,7 @@ z - + @@ -17828,7 +16302,7 @@ z - + @@ -17847,7 +16321,7 @@ z - + @@ -17866,7 +16340,7 @@ z - + @@ -17885,7 +16359,7 @@ z - + @@ -17904,7 +16378,7 @@ z - + @@ -17923,7 +16397,7 @@ z - + @@ -17942,7 +16416,7 @@ z - + @@ -17961,7 +16435,7 @@ z - + @@ -17980,7 +16454,7 @@ z - + @@ -17999,7 +16473,7 @@ z - + @@ -18018,7 +16492,7 @@ z - + @@ -18037,7 +16511,7 @@ z - + @@ -18056,7 +16530,7 @@ z - + @@ -18075,7 +16549,7 @@ z - + @@ -18094,7 +16568,7 @@ z - + @@ -18113,7 +16587,7 @@ z - + @@ -18132,7 +16606,7 @@ z - + @@ -18151,7 +16625,7 @@ z - + @@ -18170,7 +16644,7 @@ z - + @@ -18189,7 +16663,7 @@ z - + @@ -18208,7 +16682,7 @@ z - + @@ -18227,7 +16701,7 @@ z - + @@ -18246,7 +16720,7 @@ z - + @@ -18265,7 +16739,7 @@ z - + @@ -18284,7 +16758,7 @@ z - + @@ -18303,7 +16777,7 @@ z - + @@ -18322,7 +16796,7 @@ z - + @@ -18341,7 +16815,7 @@ z - + @@ -18360,7 +16834,7 @@ z - + @@ -18379,7 +16853,7 @@ z - + @@ -18398,7 +16872,7 @@ z - + @@ -18417,7 +16891,7 @@ z - + @@ -18436,7 +16910,7 @@ z - + @@ -18455,7 +16929,7 @@ z - + @@ -18474,7 +16948,7 @@ z - + @@ -18493,7 +16967,7 @@ z - + @@ -18512,7 +16986,7 @@ z - + @@ -18531,7 +17005,7 @@ z - + @@ -18550,7 +17024,7 @@ z - + @@ -18569,7 +17043,7 @@ z - + @@ -18588,7 +17062,7 @@ z - + @@ -18607,7 +17081,7 @@ z - + @@ -18626,7 +17100,7 @@ z - + @@ -18645,7 +17119,7 @@ z - + @@ -18664,7 +17138,7 @@ z - + @@ -18683,7 +17157,7 @@ z - + @@ -18702,7 +17176,7 @@ z - + @@ -18721,7 +17195,7 @@ z - + @@ -18740,7 +17214,7 @@ z - + @@ -18759,7 +17233,7 @@ z - + @@ -18778,7 +17252,7 @@ z - + @@ -18797,7 +17271,7 @@ z - + @@ -18816,7 +17290,7 @@ z - + @@ -18835,7 +17309,7 @@ z - + @@ -18854,7 +17328,7 @@ z - + @@ -18873,7 +17347,7 @@ z - + @@ -18892,7 +17366,7 @@ z - + @@ -18911,7 +17385,7 @@ z - + @@ -18930,7 +17404,7 @@ z - + @@ -18949,7 +17423,7 @@ z - + @@ -18968,7 +17442,7 @@ z - + @@ -18987,7 +17461,7 @@ z - + @@ -19006,7 +17480,7 @@ z - + @@ -19025,7 +17499,7 @@ z - + @@ -19044,7 +17518,7 @@ z - + @@ -19063,7 +17537,7 @@ z - + @@ -19082,7 +17556,7 @@ z - + @@ -19101,7 +17575,7 @@ z - + @@ -19120,7 +17594,7 @@ z - + @@ -19139,7 +17613,7 @@ z - + @@ -19158,7 +17632,7 @@ z - + @@ -19177,7 +17651,7 @@ z - + @@ -19196,7 +17670,7 @@ z - + @@ -19215,7 +17689,7 @@ z - + @@ -19234,7 +17708,7 @@ z - + @@ -19253,7 +17727,7 @@ z - + @@ -19272,7 +17746,7 @@ z - + @@ -19291,7 +17765,7 @@ z - + @@ -19310,7 +17784,7 @@ z - + @@ -19329,7 +17803,7 @@ z - + @@ -19348,7 +17822,7 @@ z - + @@ -19367,7 +17841,7 @@ z - + @@ -19386,7 +17860,7 @@ z - + @@ -19405,7 +17879,7 @@ z - + @@ -19424,7 +17898,7 @@ z - + @@ -19443,7 +17917,7 @@ z - + @@ -19462,7 +17936,7 @@ z - + @@ -19481,7 +17955,7 @@ z - + @@ -19500,7 +17974,7 @@ z - + @@ -19519,7 +17993,7 @@ z - + @@ -19538,7 +18012,7 @@ z - + @@ -19557,7 +18031,7 @@ z - + @@ -19576,7 +18050,7 @@ z - + @@ -19595,7 +18069,7 @@ z - + @@ -19614,7 +18088,7 @@ z - + @@ -19633,7 +18107,7 @@ z - + @@ -19652,7 +18126,7 @@ z - + @@ -19671,7 +18145,7 @@ z - + @@ -19690,7 +18164,7 @@ z - + @@ -19709,7 +18183,7 @@ z - + @@ -19728,7 +18202,7 @@ z - + @@ -19747,7 +18221,7 @@ z - + @@ -19766,7 +18240,7 @@ z - + @@ -19785,7 +18259,7 @@ z - + @@ -19804,7 +18278,7 @@ z - + @@ -19823,7 +18297,7 @@ z - + @@ -19842,7 +18316,7 @@ z - + @@ -19861,7 +18335,7 @@ z - + @@ -19880,7 +18354,7 @@ z - + @@ -19899,7 +18373,7 @@ z - + @@ -19918,7 +18392,7 @@ z - + @@ -19937,7 +18411,7 @@ z - + @@ -19956,7 +18430,7 @@ z - + @@ -19975,7 +18449,7 @@ z - + @@ -19994,7 +18468,7 @@ z - + @@ -20013,7 +18487,7 @@ z - + @@ -20032,7 +18506,7 @@ z - + @@ -20051,7 +18525,7 @@ z - + @@ -20070,7 +18544,7 @@ z - + @@ -20089,7 +18563,7 @@ z - + @@ -20108,7 +18582,7 @@ z - + @@ -20127,7 +18601,7 @@ z - + @@ -20146,7 +18620,7 @@ z - + @@ -20165,7 +18639,7 @@ z - + @@ -20184,7 +18658,7 @@ z - + @@ -20203,7 +18677,7 @@ z - + @@ -20222,7 +18696,7 @@ z - + @@ -20241,7 +18715,7 @@ z - + @@ -20260,7 +18734,7 @@ z - + @@ -20279,7 +18753,7 @@ z - + @@ -20298,7 +18772,7 @@ z - + @@ -20317,7 +18791,7 @@ z - + @@ -20336,7 +18810,7 @@ z - + @@ -20355,7 +18829,7 @@ z - + @@ -20374,7 +18848,7 @@ z - + @@ -20393,7 +18867,7 @@ z - + @@ -20412,7 +18886,7 @@ z - + @@ -20431,7 +18905,7 @@ z - + @@ -20450,7 +18924,7 @@ z - + @@ -20469,7 +18943,7 @@ z - + @@ -20488,7 +18962,7 @@ z - + @@ -20507,7 +18981,7 @@ z - + @@ -20526,7 +19000,7 @@ z - + @@ -20545,7 +19019,7 @@ z - + @@ -20564,7 +19038,7 @@ z - + @@ -20583,7 +19057,7 @@ z - + @@ -20602,7 +19076,7 @@ z - + @@ -20621,7 +19095,7 @@ z - + @@ -20640,7 +19114,7 @@ z - + @@ -20659,7 +19133,7 @@ z - + @@ -20678,7 +19152,7 @@ z - + @@ -20697,7 +19171,7 @@ z - + @@ -20716,7 +19190,7 @@ z - + @@ -20735,7 +19209,7 @@ z - + @@ -20754,7 +19228,7 @@ z - + @@ -20773,7 +19247,7 @@ z - + @@ -20792,7 +19266,7 @@ z - + @@ -20811,7 +19285,7 @@ z - + @@ -20830,7 +19304,7 @@ z - + @@ -20849,7 +19323,7 @@ z - + @@ -20868,7 +19342,7 @@ z - + @@ -20887,7 +19361,7 @@ z - + @@ -20906,7 +19380,7 @@ z - + @@ -20925,7 +19399,7 @@ z - + @@ -20944,7 +19418,7 @@ z - + @@ -20963,7 +19437,7 @@ z - + @@ -20982,7 +19456,7 @@ z - + @@ -21001,7 +19475,7 @@ z - + @@ -21020,7 +19494,7 @@ z - + @@ -21039,7 +19513,7 @@ z - + @@ -21058,7 +19532,7 @@ z - + @@ -21077,7 +19551,7 @@ z - + @@ -21096,7 +19570,7 @@ z - + @@ -21115,7 +19589,7 @@ z - + @@ -21134,7 +19608,7 @@ z - + @@ -21153,7 +19627,7 @@ z - + @@ -21172,7 +19646,7 @@ z - + @@ -21191,7 +19665,7 @@ z - + @@ -21210,7 +19684,7 @@ z - + @@ -21229,7 +19703,7 @@ z - + @@ -21248,7 +19722,7 @@ z - + @@ -21267,7 +19741,7 @@ z - + @@ -21286,7 +19760,7 @@ z - + @@ -21305,7 +19779,7 @@ z - + @@ -21324,7 +19798,7 @@ z - + @@ -21343,7 +19817,7 @@ z - + @@ -21362,7 +19836,7 @@ z - + @@ -21381,7 +19855,7 @@ z - + @@ -21400,7 +19874,7 @@ z - + @@ -21419,7 +19893,7 @@ z - + @@ -21438,7 +19912,7 @@ z - + @@ -21457,7 +19931,7 @@ z - + @@ -21476,7 +19950,7 @@ z - + @@ -21495,7 +19969,7 @@ z - + @@ -21514,7 +19988,7 @@ z - + @@ -21533,7 +20007,7 @@ z - + @@ -21552,7 +20026,7 @@ z - + @@ -21571,7 +20045,7 @@ z - + @@ -21590,7 +20064,7 @@ z - + @@ -21609,7 +20083,7 @@ z - + @@ -21628,7 +20102,7 @@ z - + @@ -21647,7 +20121,7 @@ z - + @@ -21666,7 +20140,7 @@ z - + @@ -21685,7 +20159,7 @@ z - + @@ -21704,7 +20178,7 @@ z - + @@ -21723,7 +20197,7 @@ z - + @@ -21742,7 +20216,7 @@ z - + @@ -21761,7 +20235,7 @@ z - + @@ -21780,7 +20254,7 @@ z - + @@ -21799,7 +20273,7 @@ z - + @@ -21818,7 +20292,7 @@ z - + @@ -21837,7 +20311,7 @@ z - + @@ -21856,7 +20330,7 @@ z - + @@ -21875,7 +20349,7 @@ z - + @@ -21894,7 +20368,7 @@ z - + @@ -21913,7 +20387,7 @@ z - + @@ -21932,7 +20406,7 @@ z - + @@ -21951,7 +20425,7 @@ z - + @@ -21970,7 +20444,7 @@ z - + @@ -21989,7 +20463,7 @@ z - + @@ -22008,7 +20482,7 @@ z - + @@ -22027,7 +20501,7 @@ z - + @@ -22046,7 +20520,7 @@ z - + @@ -22065,7 +20539,7 @@ z - + @@ -22084,7 +20558,7 @@ z - + @@ -22103,7 +20577,7 @@ z - + @@ -22122,7 +20596,7 @@ z - + @@ -22141,7 +20615,7 @@ z - + @@ -22160,7 +20634,7 @@ z - + @@ -22179,7 +20653,7 @@ z - + @@ -22198,7 +20672,7 @@ z - + @@ -22217,7 +20691,7 @@ z - + @@ -22236,7 +20710,7 @@ z - + @@ -22255,7 +20729,7 @@ z - + @@ -22274,7 +20748,7 @@ z - + @@ -22293,7 +20767,7 @@ z - + @@ -22312,7 +20786,7 @@ z - + @@ -22331,7 +20805,7 @@ z - + @@ -22350,7 +20824,7 @@ z - + @@ -22369,7 +20843,7 @@ z - + @@ -22388,7 +20862,7 @@ z - + @@ -22407,7 +20881,7 @@ z - + @@ -22426,7 +20900,7 @@ z - + @@ -22445,7 +20919,7 @@ z - + @@ -22464,7 +20938,7 @@ z - + @@ -22483,7 +20957,7 @@ z - + @@ -22502,7 +20976,7 @@ z - + @@ -22521,7 +20995,7 @@ z - + @@ -22540,7 +21014,7 @@ z - + @@ -22559,7 +21033,7 @@ z - + @@ -22578,7 +21052,7 @@ z - + @@ -22597,7 +21071,7 @@ z - + @@ -22616,7 +21090,7 @@ z - + @@ -22635,7 +21109,7 @@ z - + @@ -22654,7 +21128,7 @@ z - + @@ -22673,7 +21147,7 @@ z - + @@ -22692,7 +21166,7 @@ z - + @@ -22711,7 +21185,7 @@ z - + @@ -22730,7 +21204,7 @@ z - + @@ -22749,7 +21223,7 @@ z - + @@ -22768,7 +21242,7 @@ z - + @@ -22787,7 +21261,7 @@ z - + @@ -22806,7 +21280,7 @@ z - + @@ -22825,7 +21299,7 @@ z - + @@ -22844,7 +21318,7 @@ z - + @@ -22863,7 +21337,7 @@ z - + @@ -22882,7 +21356,7 @@ z - + @@ -22901,7 +21375,7 @@ z - + @@ -22920,7 +21394,7 @@ z - + @@ -22939,7 +21413,7 @@ z - + @@ -22958,7 +21432,7 @@ z - + @@ -22977,7 +21451,7 @@ z - + @@ -22996,7 +21470,7 @@ z - + @@ -23015,7 +21489,7 @@ z - + @@ -23034,7 +21508,7 @@ z - + @@ -23053,7 +21527,7 @@ z - + @@ -23072,7 +21546,7 @@ z - + @@ -23091,7 +21565,7 @@ z - + @@ -23110,7 +21584,7 @@ z - + @@ -23129,7 +21603,7 @@ z - + @@ -23148,7 +21622,7 @@ z - + @@ -23167,7 +21641,7 @@ z - + @@ -23186,7 +21660,7 @@ z - + @@ -23205,7 +21679,7 @@ z - + @@ -23224,7 +21698,7 @@ z - + @@ -23243,7 +21717,7 @@ z - + @@ -23262,7 +21736,7 @@ z - + @@ -23281,7 +21755,7 @@ z - + @@ -23300,7 +21774,7 @@ z - + @@ -23319,7 +21793,7 @@ z - + @@ -23338,7 +21812,7 @@ z - + @@ -23357,7 +21831,7 @@ z - + @@ -23376,7 +21850,7 @@ z - + @@ -23395,7 +21869,7 @@ z - + @@ -23414,7 +21888,7 @@ z - + @@ -23433,7 +21907,7 @@ z - + @@ -23452,7 +21926,7 @@ z - + @@ -23471,7 +21945,7 @@ z - + @@ -23490,7 +21964,7 @@ z - + @@ -23509,7 +21983,7 @@ z - + @@ -23528,7 +22002,7 @@ z - + @@ -23547,7 +22021,7 @@ z - + @@ -23566,7 +22040,7 @@ z - + @@ -23585,7 +22059,7 @@ z - + @@ -23604,7 +22078,7 @@ z - + @@ -23623,7 +22097,7 @@ z - + @@ -23642,7 +22116,7 @@ z - + @@ -23661,7 +22135,7 @@ z - + @@ -23680,7 +22154,7 @@ z - + @@ -23699,7 +22173,7 @@ z - + @@ -23718,7 +22192,7 @@ z - + @@ -23737,7 +22211,7 @@ z - + @@ -23756,7 +22230,7 @@ z - + @@ -23775,7 +22249,7 @@ z - + @@ -23794,7 +22268,7 @@ z - + @@ -23813,7 +22287,7 @@ z - + @@ -23832,7 +22306,7 @@ z - + @@ -23851,7 +22325,7 @@ z - + @@ -23870,7 +22344,7 @@ z - + @@ -23889,7 +22363,7 @@ z - + @@ -23908,7 +22382,7 @@ z - + @@ -23927,7 +22401,7 @@ z - + @@ -23946,7 +22420,7 @@ z - + @@ -23965,7 +22439,7 @@ z - + @@ -23984,7 +22458,7 @@ z - + @@ -24003,7 +22477,7 @@ z - + @@ -24022,7 +22496,7 @@ z - + @@ -24041,7 +22515,7 @@ z - + @@ -24060,7 +22534,7 @@ z - + @@ -24079,7 +22553,7 @@ z - + @@ -24098,7 +22572,7 @@ z - + @@ -24117,7 +22591,7 @@ z - + @@ -24136,7 +22610,7 @@ z - + @@ -24155,7 +22629,7 @@ z - + @@ -24174,7 +22648,7 @@ z - + @@ -24193,7 +22667,7 @@ z - + @@ -24212,7 +22686,7 @@ z - + @@ -24231,7 +22705,7 @@ z - + @@ -24250,7 +22724,7 @@ z - + @@ -24269,82 +22743,102 @@ z - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -24353,143 +22847,123 @@ z - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + + + + - + - - - diff --git a/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh_datetime_axis.png b/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh_datetime_axis.png index 6352900bef6d..cb7c7dee81f0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh_datetime_axis.png and b/lib/matplotlib/tests/baseline_images/test_axes/pcolormesh_datetime_axis.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/phase_spectrum_freqs.png b/lib/matplotlib/tests/baseline_images/test_axes/phase_spectrum_freqs.png index 0c7d829e2e8c..a8483cd26abc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/phase_spectrum_freqs.png and b/lib/matplotlib/tests/baseline_images/test_axes/phase_spectrum_freqs.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/phase_spectrum_noise.png b/lib/matplotlib/tests/baseline_images/test_axes/phase_spectrum_noise.png index b0f896c0c1fe..1cedda8719f0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/phase_spectrum_noise.png and b/lib/matplotlib/tests/baseline_images/test_axes/phase_spectrum_noise.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/pie_ccw_true.png b/lib/matplotlib/tests/baseline_images/test_axes/pie_ccw_true.png index 1cb414023cae..8af5f62b5526 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/pie_ccw_true.png and b/lib/matplotlib/tests/baseline_images/test_axes/pie_ccw_true.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/pie_center_radius.png b/lib/matplotlib/tests/baseline_images/test_axes/pie_center_radius.png index 295eb5e5318a..1f925b75d9d3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/pie_center_radius.png and b/lib/matplotlib/tests/baseline_images/test_axes/pie_center_radius.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/pie_frame_grid.png b/lib/matplotlib/tests/baseline_images/test_axes/pie_frame_grid.png index d7947048bde3..615c9f5bdce4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/pie_frame_grid.png and b/lib/matplotlib/tests/baseline_images/test_axes/pie_frame_grid.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/pie_linewidth_0.png b/lib/matplotlib/tests/baseline_images/test_axes/pie_linewidth_0.png index f61eacab2b08..18acc069100e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/pie_linewidth_0.png and b/lib/matplotlib/tests/baseline_images/test_axes/pie_linewidth_0.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/pie_linewidth_2.png b/lib/matplotlib/tests/baseline_images/test_axes/pie_linewidth_2.png index 90a75c6d2cc0..68fc84a4d596 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/pie_linewidth_2.png and b/lib/matplotlib/tests/baseline_images/test_axes/pie_linewidth_2.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.pdf b/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.pdf index c0451b42b911..3b6519f7d946 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.png b/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.png index dda089a2b6ef..b99565824582 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.png and b/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.svg b/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.svg index 9939c820a04f..f83453398426 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/polar_axes.svg @@ -10,681 +10,674 @@ - - - + - + - +" id="m0f5ad5e540" style="stroke:#000000;stroke-width:0.500000;"/> - - + + - + - + - - + + - - - + + + - + - - + +" id="DejaVuSans-35"/> - - - - + + + + - + - + - - - - + + + + - + - - +" id="DejaVuSans-31"/> + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - +" id="DejaVuSans-37"/> - - - - - + + + + + - + - - - - - + + + + + @@ -692,1044 +685,1036 @@ L417.388 338.188" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.00 - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - - - - + + + + - + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - +" style="stroke:#000000;stroke-linecap:round;"/> - - - - - + + + + - + + + - + - - +" id="DejaVuSans-69"/> - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.pdf b/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.pdf index 7e8048b0509a..be50113a1ed9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.png b/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.png index 4aed7d7beddd..a91c028fc8a3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.png and b/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.svg b/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.svg index 9ba521b08153..1a3fb1fffc75 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/polar_coords.svg @@ -10,178 +10,171 @@ - - - +" style="fill:#ff0000;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -190,261 +183,259 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +" style="stroke:#000000;stroke-linecap:round;"/> - + - - - - - + + - +" id="DejaVuSans-65"/> + + + - - - - - - - - + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_rlabel_position.png b/lib/matplotlib/tests/baseline_images/test_axes/polar_rlabel_position.png index 7ed55164e433..1ade0e05a744 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_rlabel_position.png and b/lib/matplotlib/tests/baseline_images/test_axes/polar_rlabel_position.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_rlabel_position.svg b/lib/matplotlib/tests/baseline_images/test_axes/polar_rlabel_position.svg index e9cf86bd4c87..90bbbaedfdf4 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/polar_rlabel_position.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/polar_rlabel_position.svg @@ -10,404 +10,398 @@ - - - + - + - - + + - - - + + + - + - - + +" id="DejaVuSans-35"/> - - - - + + + + - + - + - - - - + + + + - + - - +" id="DejaVuSans-31"/> + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - +" id="DejaVuSans-37"/> - - - - - + + + + + - + - - - - - + + + + + @@ -415,837 +409,836 @@ L417.388 338.188" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.00 - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - - - - + + + + - + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + @@ -1253,17 +1246,16 @@ L468 216" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.000000;str - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_rmin.png b/lib/matplotlib/tests/baseline_images/test_axes/polar_rmin.png index 8dc5121fd5e4..de2ae419ee77 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_rmin.png and b/lib/matplotlib/tests/baseline_images/test_axes/polar_rmin.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_rmin.svg b/lib/matplotlib/tests/baseline_images/test_axes/polar_rmin.svg index b8ce6cf6cad2..bd4832712ac1 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/polar_rmin.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/polar_rmin.svg @@ -10,641 +10,635 @@ - - - + - + - + - - + + - - - + + + - + - - + +" id="DejaVuSans-35"/> - - - - + + + + - + - + - - - - + + + + - + - - +" id="DejaVuSans-31"/> + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - +" id="DejaVuSans-37"/> - - - - - + + + + + - + - - - - - + + + + + @@ -652,1196 +646,1195 @@ L410.188 338.188" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.00 - + - - +" id="DejaVuSans-2e"/> + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + @@ -1849,17 +1842,16 @@ L460.8 216" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.000000;s - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_theta_position.png b/lib/matplotlib/tests/baseline_images/test_axes/polar_theta_position.png index 312e9bc466cc..2211b4a18a65 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_theta_position.png and b/lib/matplotlib/tests/baseline_images/test_axes/polar_theta_position.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_theta_position.svg b/lib/matplotlib/tests/baseline_images/test_axes/polar_theta_position.svg index 03847d449827..6715175077d4 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/polar_theta_position.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/polar_theta_position.svg @@ -10,689 +10,683 @@ - - - + - + - + - - + + - - - + + + - + - - + +" id="DejaVuSans-35"/> - - - - + + + + - + - + - - - - + + + + - + - - +" id="DejaVuSans-31"/> + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - +" id="DejaVuSans-37"/> - - - - - + + + + + - + - - - - - + + + + + @@ -700,882 +694,881 @@ L115.2 216" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.000000;s - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + @@ -1583,17 +1576,16 @@ L165.812 93.8119" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.00 - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_units.png b/lib/matplotlib/tests/baseline_images/test_axes/polar_units.png index ef884a4a8196..db949627fb83 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_units.png and b/lib/matplotlib/tests/baseline_images/test_axes/polar_units.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_units.svg b/lib/matplotlib/tests/baseline_images/test_axes/polar_units.svg index 12c2408d470c..68461405d02b 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/polar_units.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/polar_units.svg @@ -10,1686 +10,1677 @@ - - - + - + - + - - + + - - - + + + - + - - + +" id="DejaVuSans-35"/> - - - - + + + + - + - + - - - - + + + + - + - - +" id="DejaVuSans-31"/> + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - +" id="DejaVuSans-37"/> - - - - - + + + + + - + - - - - - + + + + + - + - - + +" id="DejaVuSans-67"/> - - - - + + + + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + @@ -1697,17 +1688,16 @@ L468 216" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.000000;str - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.pdf b/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.pdf index a171bdf701ce..7b0aa60b0896 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.png b/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.png index 0d3815e55d94..95e5cee15d17 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.png and b/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.svg b/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.svg index aaa8caf894a4..1e95b074540e 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.svg @@ -10,1814 +10,1803 @@ - - - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - - - - + + - + + + - - +" id="DejaVuSans-31"/> + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - +" id="DejaVuSans-34"/> - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - + - +M 52.203125 31.203125 +L 52.203125 0 +L 43.21875 0 +L 43.21875 8.296875 +Q 40.140625 3.328125 35.546875 0.953125 +Q 30.953125 -1.421875 24.3125 -1.421875 +Q 15.921875 -1.421875 10.953125 3.296875 +Q 6 8.015625 6 15.921875 +Q 6 25.140625 12.171875 29.828125 +Q 18.359375 34.515625 30.609375 34.515625 +L 43.21875 34.515625 +L 43.21875 35.40625 +Q 43.21875 41.609375 39.140625 45 +Q 35.0625 48.390625 27.6875 48.390625 +Q 23 48.390625 18.546875 47.265625 +Q 14.109375 46.140625 10.015625 43.890625 +L 10.015625 52.203125 +Q 14.9375 54.109375 19.578125 55.046875 +Q 24.21875 56 28.609375 56 +Q 40.484375 56 46.34375 49.84375 +Q 52.203125 43.703125 52.203125 31.203125 +" id="DejaVuSans-61"/> + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - - +" id="DejaVuSans-6b"/> + - - - + + + - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.png b/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.png index 6503c7624adc..aca4b93169a0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.png and b/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.svg b/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.svg index 904636543992..db485576a703 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.svg @@ -10,450 +10,442 @@ - - - + - +" id="m5a12c2acaa" style="stroke:#0000ff;stroke-width:0.500000;"/> - - - + + + - + - +" id="m2e8e5cfbdf" style="stroke:#008000;stroke-width:0.500000;"/> - - - + + + - + - + - - + + - - - + + + - + - - + +" id="DejaVuSans-35"/> - - - - + + + + - + - + - - - - + + + + - + - - +" id="DejaVuSans-31"/> + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - +" id="DejaVuSans-37"/> - - - - - + + + + + - + - - - - - + + + + + @@ -461,888 +453,887 @@ L417.388 338.188" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.00 - + - +" id="DejaVuSans-2e"/> - - - - - + + + + + - + - - - - - + + + + + - + - - - - - + + + + + - + - - - - - + + + + + - + - - - - - + + + + + - + - - - - - + + + + + @@ -1350,17 +1341,16 @@ L468 216" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.000000;str - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.png b/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.png index 921a4864b29b..fe396744d9fc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.png and b/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.svg b/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.svg index 944e84399685..93aa780c8eaa 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.svg @@ -10,473 +10,464 @@ - - - + - +" id="m558c420b09" style="stroke:#0000ff;stroke-width:0.500000;"/> - - - + + + - + - +" id="me1b68cbbd5" style="stroke:#008000;stroke-width:0.500000;"/> - - - + + + - + - +" id="m35c762fa31" style="stroke:#ff0000;stroke-width:0.500000;"/> - - - + + + - + - + - - + + - - - + + + - + - - + +" id="DejaVuSans-35"/> - - - - + + + + - + - + - - - - + + + + - + - - +" id="DejaVuSans-31"/> + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - +" id="DejaVuSans-37"/> - - - - - + + + + + - + - - - - - + + + + + @@ -484,888 +475,887 @@ L417.388 338.188" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.00 - + - +" id="DejaVuSans-2e"/> - - - - - + + + + + - + - - - - - + + + + + - + - - - - - + + + + + - + - - - - - + + + + + - + - - - - - + + + + + - + - - - - - + + + + + @@ -1373,17 +1363,16 @@ L468 216" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.000000;str - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.svg b/lib/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.svg index 92e957bff8db..aecf607cbf72 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.svg @@ -10,154 +10,147 @@ - - - +" id="m01198f80e9" style="stroke:#000000;stroke-width:40.000000;"/> - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -166,94 +159,94 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -261,7 +254,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/psd_freqs.png b/lib/matplotlib/tests/baseline_images/test_axes/psd_freqs.png index 98f825579ec4..d55377c96a3b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/psd_freqs.png and b/lib/matplotlib/tests/baseline_images/test_axes/psd_freqs.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/psd_noise.png b/lib/matplotlib/tests/baseline_images/test_axes/psd_noise.png index 88df56de5005..46a499aa65b9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/psd_noise.png and b/lib/matplotlib/tests/baseline_images/test_axes/psd_noise.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/rc_grid.png b/lib/matplotlib/tests/baseline_images/test_axes/rc_grid.png index 27eb8b259db9..ac471c4b3df3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/rc_grid.png and b/lib/matplotlib/tests/baseline_images/test_axes/rc_grid.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/rc_markerfill.png b/lib/matplotlib/tests/baseline_images/test_axes/rc_markerfill.png index e5a36a68a164..4eedc8374ec2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/rc_markerfill.png and b/lib/matplotlib/tests/baseline_images/test_axes/rc_markerfill.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/rc_spines.png b/lib/matplotlib/tests/baseline_images/test_axes/rc_spines.png index ee0a23a207a6..866aac7da5ea 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/rc_spines.png and b/lib/matplotlib/tests/baseline_images/test_axes/rc_spines.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/rgba_markers.png b/lib/matplotlib/tests/baseline_images/test_axes/rgba_markers.png index 4d1730889129..8f202cbe8d31 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/rgba_markers.png and b/lib/matplotlib/tests/baseline_images/test_axes/rgba_markers.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/rgba_markers.svg b/lib/matplotlib/tests/baseline_images/test_axes/rgba_markers.svg index 6ea9ddea630e..a1ff94a96f94 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/rgba_markers.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/rgba_markers.svg @@ -5,247 +5,247 @@ - - - +" id="mb0fa3631e8" style="stroke:#ff0000;stroke-width:20.000000;"/> - - + + - + - - + + - +" id="me1f47d7cf6" style="stroke:#ff0000;stroke-width:20.000000;"/> - - + + - + - - + + - +" id="md637c91b3e" style="stroke:#ff0000;stroke-opacity:0.500000;stroke-width:20.000000;"/> - - + + - + - - + + - +" id="mc360218c81" style="stroke:#ff0000;stroke-opacity:0.500000;stroke-width:20.000000;"/> - - + + - + - - + + - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -254,82 +254,82 @@ L 0.000000 4.000000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -337,184 +337,184 @@ L -4.000000 0.000000 - - +" id="m258ee76e10" style="stroke:#ff0000;stroke-width:20.000000;"/> - - + + - + - - + + - - + + - + - - + + - - + + - + - - + + - - + + - + - - + + - - - - - + - + - + - + - + - + - + - + - + - + - + - + @@ -523,72 +523,72 @@ L 315.490909 43.200000 - + - + - + - + - + - + - + - + - + - + - + - + @@ -596,11 +596,11 @@ L 315.490909 43.200000 - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/scatter.png b/lib/matplotlib/tests/baseline_images/test_axes/scatter.png index 4e695b6c5b2b..3775659610a8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/scatter.png and b/lib/matplotlib/tests/baseline_images/test_axes/scatter.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/scatter.svg b/lib/matplotlib/tests/baseline_images/test_axes/scatter.svg index 6731f0b1c4d3..0e4c04d36a0a 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/scatter.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/scatter.svg @@ -10,396 +10,427 @@ - - - - - - + + + + + + - + - + - + - + - + - + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-37"/> - - + + @@ -408,220 +439,219 @@ z - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -629,7 +659,7 @@ Q19.5312 74.2188 31.7812 74.2188" id="BitstreamVeraSans-Roman-30"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/set_get_ticklabels.png b/lib/matplotlib/tests/baseline_images/test_axes/set_get_ticklabels.png index 9325c02203e8..012e4b279ab8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/set_get_ticklabels.png and b/lib/matplotlib/tests/baseline_images/test_axes/set_get_ticklabels.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/shaped_data.png b/lib/matplotlib/tests/baseline_images/test_axes/shaped_data.png index 463804c9c7a7..d82cb2913fdf 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/shaped_data.png and b/lib/matplotlib/tests/baseline_images/test_axes/shaped_data.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/shaped_data.svg b/lib/matplotlib/tests/baseline_images/test_axes/shaped_data.svg index 1a4116936975..82adf142e5c3 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/shaped_data.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/shaped_data.svg @@ -10,355 +10,345 @@ - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - + + +" id="DejaVuSans-2e"/> + - - - - - - + + + + + + - + - + - +" id="DejaVuSans-34"/> - - - - - - + + + + + + - + - + - + - - - - - - + + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + @@ -367,346 +357,343 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - - + + - + - + - + - - + + - + - + - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - - + + - + - + - +" id="DejaVuSans-37"/> - - + + - + - + - + - - + + - + - + - + - - + + @@ -714,229 +701,224 @@ Q23.9688 32.4219 30.6094 32.4219" id="BitstreamVeraSans-Roman-39"/> - - + - + - + - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -945,180 +927,180 @@ L72 133.357" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -1126,156 +1108,151 @@ L72 133.357" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1284,120 +1261,120 @@ L72 223.513" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1405,184 +1382,178 @@ L72 223.513" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - - +" id="m23b67309ca" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - + + + + + + + + + + + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1591,120 +1562,120 @@ L72 313.67" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoi - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1712,14 +1683,14 @@ L72 313.67" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoi - - - - + - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/single_date.png b/lib/matplotlib/tests/baseline_images/test_axes/single_date.png index e35c353f200f..cc7ed801de4f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/single_date.png and b/lib/matplotlib/tests/baseline_images/test_axes/single_date.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/single_date.svg b/lib/matplotlib/tests/baseline_images/test_axes/single_date.svg index f727c934d70b..11f6b188dcf5 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/single_date.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/single_date.svg @@ -10,541 +10,528 @@ - - - +" id="mfbae1de1fd" style="stroke:#000000;stroke-width:0.500000;"/> - - + + - + - + - + - + - + - + - + - + - - - - + - + - - + + - + + +" id="DejaVuSans-37"/> + - - - - - - - - - + + + + + + + + + - + - + - + - - +" id="DejaVuSans-65"/> + - - - - - - - - - + + + + + + + + + - + - + - - - - - - - - - + + + + + + + + + - + - + - - - - - - - - - + + + + + + + + + - + - + - + - - - - - - - - - + + + + + + + + + - + - + - - - - - - - - - + + + + + + + + + - + - + - - - - - - - - - + + + + + + + + + - + - + - - - - - - - - - + + + + + + + + + @@ -553,285 +540,281 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - + - + - + - + - +" id="DejaVuSans-2212"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + @@ -839,269 +822,264 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - - - + + - + - + - + - + - + - + - + - - - - - - - + + + + + + + - + - + - - - - - - - + + + + + + + - + - + - - - - - - - + + + + + + + - + - + - - - - - - - + + + + + + + - + - + - - - - - - - + + + + + + + - + - + - - - - - - - + + + + + + + - + - + - - - - - - - + + + + + + + - + - + - - - - - - - + + + + + + + - + - + - - - - - - - + + + + + + + @@ -1110,160 +1088,160 @@ Q19.5312 74.2188 31.7812 74.2188" id="BitstreamVeraSans-Roman-30"/> - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1271,10 +1249,10 @@ Q19.5312 74.2188 31.7812 74.2188" id="BitstreamVeraSans-Roman-30"/> - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/single_point.png b/lib/matplotlib/tests/baseline_images/test_axes/single_point.png index 0882d1711f0d..f82af7fca080 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/single_point.png and b/lib/matplotlib/tests/baseline_images/test_axes/single_point.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/single_point.svg b/lib/matplotlib/tests/baseline_images/test_axes/single_point.svg index a3f1b5cc9c1d..0af4b52056c8 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/single_point.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/single_point.svg @@ -10,418 +10,399 @@ - - - +" id="mb9f45c7f32" style="stroke:#000000;stroke-width:0.500000;"/> - - + + - + - + - + - + - + - +" id="md3f5c2bae0" style="stroke:#000000;stroke-width:0.500000;"/> - - - + + + - + - + - + - + - - - - + + +" id="DejaVuSans-2e"/> + - - - - - - + + + + + + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - - - + + + + + + - - - - + + + + - + - + - + - - - - - - + + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + @@ -429,231 +410,224 @@ L518.4 43.2" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.000000; - - - - + + + + - + - + - + - + - - - - - - + + + + + + - - - - + + + + - + - + - - - - - - + + + + + + - - - - + + + + - + - + - - - - - - + + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + @@ -661,342 +635,329 @@ L518.4 43.2" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.000000; - - - + + - + - + - + - + - - - - + + + + - + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - + - - - - - + + + + + - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + @@ -1004,218 +965,211 @@ L518.4 231.709" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.0000 - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + - - - - + + + + - + - + - - - - - + + + + + @@ -1223,10 +1177,10 @@ L518.4 231.709" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.0000 - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_angle_freqs.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_angle_freqs.png index 548f8537e253..738e45e8df8f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_angle_freqs.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_angle_freqs.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_angle_noise.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_angle_noise.png index 150e96d81412..b9e667bca43e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_angle_noise.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_angle_noise.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_freqs.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_freqs.png index d8bac39ae395..a4c5a56426a2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_freqs.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_freqs.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_freqs_linear.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_freqs_linear.png index dfd0be4e5242..a4c5a56426a2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_freqs_linear.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_freqs_linear.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_freqs.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_freqs.png index 26be4fe4e9a5..359f1a74470f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_freqs.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_freqs.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_freqs_linear.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_freqs_linear.png index 26be4fe4e9a5..359f1a74470f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_freqs_linear.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_freqs_linear.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_noise.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_noise.png index 75139224b676..4e00fa96789f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_noise.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_noise.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_noise_linear.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_noise_linear.png index 75139224b676..4e00fa96789f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_noise_linear.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_magnitude_noise_linear.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_noise.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_noise.png index ef9a9ee8f080..c284fb7b2e10 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_noise.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_noise.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_noise_linear.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_noise_linear.png index ea23e70aa079..c284fb7b2e10 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_noise_linear.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_noise_linear.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_phase_freqs.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_phase_freqs.png index edfed212d7e8..be4c994382c1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_phase_freqs.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_phase_freqs.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/specgram_phase_noise.png b/lib/matplotlib/tests/baseline_images/test_axes/specgram_phase_noise.png index b26e0e9377a0..f355c6199fbb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/specgram_phase_noise.png and b/lib/matplotlib/tests/baseline_images/test_axes/specgram_phase_noise.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_baseline.pdf b/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_baseline.pdf index 54ac641122cb..412a798a6702 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_baseline.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_baseline.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_baseline.svg b/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_baseline.svg index 6228dd7e3131..b1fdb22b2da3 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_baseline.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_baseline.svg @@ -5,745 +5,760 @@ - - - +" id="mbf9a7b4bdc" style="stroke:#000000;"/> - - + + - +" id="mfcdae51249" style="stroke:#000000;"/> - - + + - +" id="mbe9093e089" style="stroke:#000000;"/> - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -752,835 +767,831 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - +" id="ma6d91e7c29" style="stroke:#000000;"/> - - + + - +" id="m9ed35b237c" style="stroke:#000000;"/> - - + + - +" id="m6440925e5d" style="stroke:#000000;"/> - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1589,825 +1600,821 @@ z - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - +" id="mc352e45df1" style="stroke:#000000;"/> - - + + - +" id="m6f495adba9" style="stroke:#000000;"/> - - + + - +" id="m4b85bd7af5" style="stroke:#000000;"/> - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2416,837 +2423,833 @@ z - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - +" id="m6ff2825c12" style="stroke:#000000;"/> - - + + - +" id="me1b6ceea1e" style="stroke:#000000;"/> - - + + - +" id="m1132247383" style="stroke:#000000;"/> - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3255,134 +3258,114 @@ z - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + - + - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_image.png b/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_image.png index 87f90f776115..10db4208ebe4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_image.png and b/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_image.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_image.svg b/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_image.svg index 83813f3dc030..f951283f95d5 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_image.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/stackplot_test_image.svg @@ -10,412 +10,400 @@ - - - +" id="m4fba55cbe5" style="stroke:#000000;"/> - - + + - +" id="m7d8ffe92e0" style="stroke:#000000;"/> - - + + - +" id="m9ca8c7a687" style="stroke:#000000;"/> - - + + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + @@ -424,233 +412,231 @@ z - + - + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - + - - - + + + - + - + - - - + + + - + - + - +" id="DejaVuSans-35"/> - - - + + + - + - + - - - + + + - + - + - +" id="DejaVuSans-37"/> - - - + + + @@ -658,7 +644,7 @@ z - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.pdf b/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.pdf index 94d69f575011..3944c50f50e8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.png b/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.png index 5a10a74fe5f2..58e6922252d6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.png and b/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.svg b/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.svg index f3f14d98d04f..b03c00d3425e 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/step_linestyle.svg @@ -5,185 +5,203 @@ - - - + - + - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -192,289 +210,288 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -483,292 +500,291 @@ L577 23.5636" style="fill:none;stroke:#ff0000;stroke-dasharray:6.000000,6.000000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -777,279 +793,278 @@ L410.182 153.164" style="fill:none;stroke:#ff0000;stroke-dasharray:3.000000,5.00 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1058,146 +1073,126 @@ L577 212.073" style="fill:none;stroke:#ff0000;stroke-dasharray:1.000000,3.000000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - + + - + - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/symlog.svg b/lib/matplotlib/tests/baseline_images/test_axes/symlog.svg index 209dcb768852..c1322e30cfe0 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/symlog.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/symlog.svg @@ -5,7 +5,7 @@ @@ -27,7 +27,7 @@ z " style="fill:#ffffff;"/> - - - - @@ -63,20 +63,20 @@ L 518.4 388.8 +" id="m964f071d53" style="stroke:#000000;stroke-width:0.500000;"/> - + +" id="ma6afe2efb6" style="stroke:#000000;stroke-width:0.500000;"/> - + @@ -102,7 +102,7 @@ Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 " id="DejaVuSans-30"/> - + @@ -110,12 +110,12 @@ Q 19.53125 74.21875 31.78125 74.21875 - + - + @@ -146,7 +146,7 @@ Q 14.890625 38.140625 10.796875 36.28125 z " id="DejaVuSans-35"/> - + @@ -154,12 +154,12 @@ z - + - + @@ -179,7 +179,7 @@ L 12.40625 0 z " id="DejaVuSans-31"/> - + @@ -188,17 +188,17 @@ z - + - + - + @@ -207,12 +207,12 @@ z - + - + @@ -242,7 +242,7 @@ Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 " id="DejaVuSans-32"/> - + @@ -251,17 +251,17 @@ Q 31.109375 20.453125 19.1875 8.296875 - + - + - + @@ -274,98 +274,98 @@ Q 31.109375 20.453125 19.1875 8.296875 +" id="m2d49e286aa" style="stroke:#000000;stroke-width:0.500000;"/> - + +" id="me65b278476" style="stroke:#000000;stroke-width:0.500000;"/> - + - - + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + @@ -403,22 +403,22 @@ Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 " id="DejaVuSans-33"/> - - - - + + + + - + - + @@ -442,42 +442,42 @@ L 4.890625 26.703125 z " id="DejaVuSans-34"/> - - - - + + + + - + - + - - - - + + + + - + - + @@ -512,22 +512,22 @@ Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 " id="DejaVuSans-36"/> - - - - + + + + - + - + @@ -543,10 +543,10 @@ L 8.203125 64.59375 z " id="DejaVuSans-37"/> - - - - + + + + @@ -555,116 +555,116 @@ z +" id="md1412ee2c9" style="stroke:#000000;stroke-width:0.500000;"/> - + +" id="m478560d479" style="stroke:#000000;stroke-width:0.500000;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -672,7 +672,7 @@ L -2 0 - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/symlog2.png b/lib/matplotlib/tests/baseline_images/test_axes/symlog2.png index 931c89033e3b..44e5cfa3025e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/symlog2.png and b/lib/matplotlib/tests/baseline_images/test_axes/symlog2.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/symlog2.svg b/lib/matplotlib/tests/baseline_images/test_axes/symlog2.svg index 65154167a7ca..977f6ccdc084 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/symlog2.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/symlog2.svg @@ -5,214 +5,232 @@ - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -220,405 +238,404 @@ L0 2" id="md27378e979" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -626,397 +643,396 @@ L518.4 114.703" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.0000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1024,459 +1040,458 @@ L518.4 186.207" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.0000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1484,538 +1499,537 @@ L518.4 257.71" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.00000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2023,127 +2037,107 @@ L518.4 329.214" style="fill:none;stroke:#000000;stroke-dasharray:1.000000,3.0000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + - + - + - - + + - - + + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/test_alpha.png b/lib/matplotlib/tests/baseline_images/test_axes/test_alpha.png index 93af3f4310d4..8b6c5da25874 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/test_alpha.png and b/lib/matplotlib/tests/baseline_images/test_axes/test_alpha.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/test_alpha.svg b/lib/matplotlib/tests/baseline_images/test_axes/test_alpha.svg index e993d37d86f5..d25131e05b05 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/test_alpha.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/test_alpha.svg @@ -5,652 +5,668 @@ - - - + - +" id="m53e74dc264" style="stroke:#000000;stroke-linejoin:miter;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - +" id="ma09d1c8c6e" style="stroke:#000000;stroke-linejoin:miter;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -659,158 +675,138 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.pdf b/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.pdf index 30da2aced7cb..d1245169e994 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.pdf and b/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.png b/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.png index b3ad74c1e431..cae731c3930a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.png and b/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.svg b/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.svg index 941bd8433541..08af548ba6bf 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/transparent_markers.svg @@ -5,172 +5,189 @@ - - - +" id="m66bbde68f9" style="stroke:#000000;stroke-linejoin:miter;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -179,110 +196,90 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/twin_axis_locaters_formatters.png b/lib/matplotlib/tests/baseline_images/test_axes/twin_axis_locaters_formatters.png index eb8b4f1f0388..f3dffa69ea64 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/twin_axis_locaters_formatters.png and b/lib/matplotlib/tests/baseline_images/test_axes/twin_axis_locaters_formatters.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/twin_axis_locaters_formatters.svg b/lib/matplotlib/tests/baseline_images/test_axes/twin_axis_locaters_formatters.svg index 4180d4eac2f6..4fc156051cf4 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/twin_axis_locaters_formatters.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/twin_axis_locaters_formatters.svg @@ -10,630 +10,618 @@ - - - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - - - + + + + + + - + - +" id="DejaVuSans-31"/> - - - - - - + + + + + + - + - + - - - - - - + + + + + + - + - + - - - - - - + + + + + + - + - +" id="DejaVuSans-34"/> - - - - - - + + + + + + - + - +" id="DejaVuSans-35"/> - - - - - - + + + + + + - + - + - - - - - - + + + + + + - + - +" id="DejaVuSans-37"/> - - - - - - + + + + + + - + - + - - - - - - + + + + + + - + - + - - - - - - + + + + + + - + - - - - - - - + + + + + + + - + - + - + - - + + - + - - + + - + - + - - + + - + - + - - + + @@ -642,375 +630,367 @@ Q18.8438 56 30.6094 56" id="BitstreamVeraSans-Roman-6f"/> - + - + - - - - - - - - - + + + + + + + + + - + - - - - - - - - - + + + + + + + + + - + - - - - - - - - - + + + + + + + + + - + - - - - - - - - - + + + + + + + + + - + - - - - - - - - - + + + + + + + + + - + - + - + - + - - - + +" id="DejaVuSans-6b"/> + - - - - - - - + + + + + + + - + - - - + + + - - - - - + + + + + - + - - + +" id="DejaVuSans-65"/> - - - - - + + + + + @@ -1018,122 +998,118 @@ z - + - + - + - + - + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + @@ -1141,122 +1117,118 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + @@ -1264,7 +1236,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/twin_spines.png b/lib/matplotlib/tests/baseline_images/test_axes/twin_spines.png index e098f59dd77d..10fcf6b091a9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/twin_spines.png and b/lib/matplotlib/tests/baseline_images/test_axes/twin_spines.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/units_strings.png b/lib/matplotlib/tests/baseline_images/test_axes/units_strings.png index 3a9abdd61d90..1366c2ba44b4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/units_strings.png and b/lib/matplotlib/tests/baseline_images/test_axes/units_strings.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/units_strings.svg b/lib/matplotlib/tests/baseline_images/test_axes/units_strings.svg index 2da024934fbd..1c12560175f0 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/units_strings.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/units_strings.svg @@ -10,250 +10,242 @@ - - - + - + - + - + - + - + - + - + - + - - +" id="DejaVuSans-35"/> + - - - + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + @@ -262,284 +254,282 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - - + + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + @@ -547,7 +537,7 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_baseline.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_baseline.png index c386bd72d83b..1b7e7ba2e9c9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_baseline.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_baseline.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_custompoints_10.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_custompoints_10.png index f3178860b6df..6dfde58c118a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_custompoints_10.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_custompoints_10.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_custompoints_200.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_custompoints_200.png index 38ffbd5d359d..da8287ebec7f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_custompoints_200.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_custompoints_200.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showall.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showall.png index 2aeb79b5c49c..0a703ce96fbc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showall.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showall.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showextrema.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showextrema.png index 140aae606458..ba803d79e5f4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showextrema.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showextrema.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showmeans.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showmeans.png index b7c8bacd1b50..137d388189d5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showmeans.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showmeans.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showmedians.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showmedians.png index 6307e2e2afc5..999f31325054 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showmedians.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_horiz_showmedians.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_baseline.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_baseline.png index 00c7280f8538..54898d066ff7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_baseline.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_baseline.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_custompoints_10.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_custompoints_10.png index 2d8105c8f1b2..7b807c366d2b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_custompoints_10.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_custompoints_10.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_custompoints_200.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_custompoints_200.png index 92980f28750d..74f0446f4d5b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_custompoints_200.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_custompoints_200.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showall.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showall.png index 8faadd80ccee..71ced055bd88 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showall.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showall.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showextrema.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showextrema.png index 74a2fa96eaab..54fbc5d1895b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showextrema.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showextrema.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showmeans.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showmeans.png index bcfa3481d02f..75620bd9c143 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showmeans.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showmeans.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showmedians.png b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showmedians.png index 55151d89013b..8b335ebeaf18 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showmedians.png and b/lib/matplotlib/tests/baseline_images/test_axes/violinplot_vert_showmedians.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/vline_hline_zorder.png b/lib/matplotlib/tests/baseline_images/test_axes/vline_hline_zorder.png index 4f1a174af834..906551745929 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_axes/vline_hline_zorder.png and b/lib/matplotlib/tests/baseline_images/test_axes/vline_hline_zorder.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_axes/vline_hline_zorder.svg b/lib/matplotlib/tests/baseline_images/test_axes/vline_hline_zorder.svg index 955ec1e62d08..65465e54661b 100644 --- a/lib/matplotlib/tests/baseline_images/test_axes/vline_hline_zorder.svg +++ b/lib/matplotlib/tests/baseline_images/test_axes/vline_hline_zorder.svg @@ -10,495 +10,483 @@ - - - + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-37"/> - - + + - + - + - + - - + + - + - + - + - - + + @@ -507,529 +495,516 @@ Q23.9688 32.4219 30.6094 32.4219" id="BitstreamVeraSans-Roman-39"/> - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - - - - - + - + - + - + - - + + - + + + + - - + + - + - +" id="DejaVuSans-74"/> + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_pdflatex.pdf b/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_pdflatex.pdf index 05d155b939c8..3820562f9ee5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_pdflatex.pdf and b/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_pdflatex.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_rcupdate1.pdf b/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_rcupdate1.pdf index 3728b59eaac2..40e903070df1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_rcupdate1.pdf and b/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_rcupdate1.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_xelatex.pdf b/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_xelatex.pdf index 6e7fa7bdb6aa..dbbacdb693ee 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_xelatex.pdf and b/lib/matplotlib/tests/baseline_images/test_backend_pgf/pgf_xelatex.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_backend_svg/bold_font_output.svg b/lib/matplotlib/tests/baseline_images/test_backend_svg/bold_font_output.svg index dbb0d5f60f3c..9c4f9e7a5cbb 100644 --- a/lib/matplotlib/tests/baseline_images/test_backend_svg/bold_font_output.svg +++ b/lib/matplotlib/tests/baseline_images/test_backend_svg/bold_font_output.svg @@ -10,691 +10,678 @@ - - - + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-37"/> - - + + - + - + - + - - + + - + - + - + - - + + - + + - - + - + + - + - + - - - + +" id="DejaVuSans-65"/> - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -702,422 +689,413 @@ z - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - - + + - + + - + - - - + - + +" id="DejaVuSans-Bold-65"/> - - - - - - - - - - - - + + + + + + + + + + + + - - + +" id="DejaVuSans-Bold-69"/> - - - - - - - - - - - + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_backend_svg/bold_font_output_with_none_fonttype.svg b/lib/matplotlib/tests/baseline_images/test_backend_svg/bold_font_output_with_none_fonttype.svg index 65a7c0b576d5..dd976ecb98ff 100644 --- a/lib/matplotlib/tests/baseline_images/test_backend_svg/bold_font_output_with_none_fonttype.svg +++ b/lib/matplotlib/tests/baseline_images/test_backend_svg/bold_font_output_with_none_fonttype.svg @@ -5,397 +5,397 @@ - - - - - - - - + - + - + - + - 0 + 0 - + - + - 1 + 1 - + - + - 2 + 2 - + - + - 3 + 3 - + - + - 4 + 4 - + - + - 5 + 5 - + - + - 6 + 6 - + - + - 7 + 7 - + - + - 8 + 8 - + - + - 9 + 9 - nonbold-xlabel + nonbold-xlabel - + - + - + - + - 0 + 0 - + - + - 1 + 1 - + - + - 2 + 2 - + - + - 3 + 3 - + - + - 4 + 4 - + - + - 5 + 5 - + - + - 6 + 6 - + - + - 7 + 7 - + - + - 8 + 8 - + - + - 9 + 9 - bold-ylabel + bold-ylabel - bold-title + bold-title - + diff --git a/lib/matplotlib/tests/baseline_images/test_backend_svg/fill_black_with_alpha.svg b/lib/matplotlib/tests/baseline_images/test_backend_svg/fill_black_with_alpha.svg index c9b37024b249..e2a201b75ca1 100644 --- a/lib/matplotlib/tests/baseline_images/test_backend_svg/fill_black_with_alpha.svg +++ b/lib/matplotlib/tests/baseline_images/test_backend_svg/fill_black_with_alpha.svg @@ -10,153 +10,166 @@ - - - +" id="m82e454d78f" style="stroke:#000000;stroke-opacity:0.100000;"/> - - - - - - - - + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -165,122 +178,102 @@ L0 4" id="m5a7d422ac3" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.pdf b/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.pdf index e4a59e03790e..87990bdcb735 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.pdf and b/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.png b/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.png index c0a4407108e7..49dfdebc09a3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.png and b/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.svg b/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.svg index c78ea5a5af33..884d47788c2a 100644 --- a/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.svg +++ b/lib/matplotlib/tests/baseline_images/test_backend_svg/noscale.svg @@ -5,101 +5,119 @@ - - - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -108,98 +126,78 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.pdf b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.pdf index 03b8cd70a431..fbf29531c266 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.pdf and b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.png b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.png index a87f857ef2ce..3aff36a6b054 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.png and b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.svg b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.svg index cc58d0914fd9..87466fde0c78 100644 --- a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.svg +++ b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.svg @@ -10,516 +10,471 @@ - - - +" style="fill:#ffffff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#ffffff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#ffffff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#ffffff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#ffffff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#ffffff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#ffffff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#ffffff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#ffffff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#ffffff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#ffffff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - +" style="fill:#0000ff;stroke:#000000;stroke-linejoin:miter;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_clipping.png b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_clipping.png index 95682004be40..6368bc410213 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_clipping.png and b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_clipping.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_clipping.svg b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_clipping.svg index 4fbc1e2de7f6..3aaea30bda7b 100644 --- a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_clipping.svg +++ b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_clipping.svg @@ -5,155 +5,151 @@ - - - +" id="m5da1c8a14a" style="stroke:#000000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -162,133 +158,111 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - +" style="fill:#0000ff;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - + - - + diff --git a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_raster.pdf b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_raster.pdf index c702c926aad7..eb50707aeb4f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_raster.pdf and b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_raster.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_raster.svg b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_raster.svg index 8f70e2942303..c6f02bb31839 100644 --- a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_raster.svg +++ b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_raster.svg @@ -10,126 +10,124 @@ - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -138,94 +136,94 @@ L0 4" id="m741efc42ff" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.pdf b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.pdf index 07a842d7ad79..6a899457c0c1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.pdf and b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.png b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.png index e7b76e784002..e470c34f0acb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.png and b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.svg b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.svg index ca4e08f6a766..23379c908dff 100644 --- a/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.svg +++ b/lib/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.svg @@ -10,622 +10,606 @@ - - - + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-37"/> - - + + - + - + - + - - + + - + - + - + - - + + - - + + - + - + - - +" id="DejaVuSans-69"/> + - - - - - - - + + + + + + + @@ -633,390 +617,387 @@ Q40.5781 54.5469 44.2812 53.0781" id="BitstreamVeraSans-Roman-73"/> - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - - + + - - + + - + + +" id="DejaVuSans-62"/> + - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1024,133 +1005,127 @@ z - - - + + +" id="DejaVuSans-6c"/> - - - - - - - - - - - + + + + + + + + + + + - - + - +" id="DejaVuSans-67"/> - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -1158,38 +1133,37 @@ z - +" id="DejaVuSans-46"/> - - - - - - - - - - - - - + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__add_positions.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__add_positions.png index 87596b272f8e..0271d28824c4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__add_positions.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__add_positions.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__add_positions.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__add_positions.svg index 47ae3594a12d..834154b8616b 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__add_positions.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__add_positions.svg @@ -10,357 +10,349 @@ - - - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - - - + + + - + - + - + - - - + + + - + - + - - - + + + - + - + - + - - - + + + - + - + - - - + + + @@ -369,119 +361,118 @@ Q46.9688 40.9219 40.5781 39.3125" id="BitstreamVeraSans-Roman-33"/> - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -489,342 +480,331 @@ z - - - - - + - + - + + - + + + + + - - - - - + - + + - + + - - +" id="DejaVuSans-5f"/> + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__append_positions.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__append_positions.png index 3a7759107c27..0e976eb63ab4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__append_positions.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__append_positions.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__append_positions.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__append_positions.svg index 6f00d22b4d8d..3d0d69a5db0a 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__append_positions.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__append_positions.svg @@ -10,314 +10,306 @@ - - - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - - + + + - + - + - +" id="DejaVuSans-34"/> - - - + + + - + - + - + - - - + + + - + - + - + - - - + + + @@ -326,162 +318,159 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -489,345 +478,334 @@ z - - - - - + - + - + + - + + + + + - - - - - + - + + - + + + - - +" id="DejaVuSans-5f"/> + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__default.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__default.png index 21b004c7420a..c8a7ff8639ad 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__default.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__default.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__default.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__default.svg index b5c89be1e12c..a94415427247 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__default.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__default.svg @@ -10,264 +10,256 @@ - - - - - - - - - - + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - - - + + + - + - + - + - - - + + + @@ -276,119 +268,118 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -396,314 +387,305 @@ z - - - - - - + - + - + + + + + - - - + + - + - - + + + - + - +M 52.203125 31.203125 +L 52.203125 0 +L 43.21875 0 +L 43.21875 8.296875 +Q 40.140625 3.328125 35.546875 0.953125 +Q 30.953125 -1.421875 24.3125 -1.421875 +Q 15.921875 -1.421875 10.953125 3.296875 +Q 6 8.015625 6 15.921875 +Q 6 25.140625 12.171875 29.828125 +Q 18.359375 34.515625 30.609375 34.515625 +L 43.21875 34.515625 +L 43.21875 35.40625 +Q 43.21875 41.609375 39.140625 45 +Q 35.0625 48.390625 27.6875 48.390625 +Q 23 48.390625 18.546875 47.265625 +Q 14.109375 46.140625 10.015625 43.890625 +L 10.015625 52.203125 +Q 14.9375 54.109375 19.578125 55.046875 +Q 24.21875 56 28.609375 56 +Q 40.484375 56 46.34375 49.84375 +Q 52.203125 43.703125 52.203125 31.203125 +" id="DejaVuSans-61"/> + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__extend_positions.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__extend_positions.png index d4b4bed31cb1..0c59f2409d4c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__extend_positions.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__extend_positions.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__extend_positions.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__extend_positions.svg index ceab21bbc62d..096148db1acc 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__extend_positions.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__extend_positions.svg @@ -10,317 +10,309 @@ - - - - - - - - - - - - + + + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - - + + + - + - + - +" id="DejaVuSans-34"/> - - - + + + - + - + - + - - - + + + - + - + - + - - - + + + @@ -329,162 +321,159 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -492,328 +481,317 @@ z - - - - - + - + - + + - + + + + + - - - - - + - + + - + + - - +" id="DejaVuSans-5f"/> + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_color.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_color.png index e80a6b7d3262..5a5be0d56cec 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_color.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_color.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_color.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_color.svg index d4f3ff5a1064..27d7fb9241e7 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_color.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_color.svg @@ -10,264 +10,256 @@ - - - - - - - - - - + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - - - + + + - + - + - + - - - + + + @@ -276,119 +268,118 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -396,275 +387,264 @@ z - - - - - + - + - + + - + + + + + - - - + - + + + - + - - +" id="DejaVuSans-72"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linelength.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linelength.png index fa05103fa61a..2c713825b35f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linelength.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linelength.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linelength.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linelength.svg index d08eb17dda3e..73fe015ccc05 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linelength.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linelength.svg @@ -10,264 +10,256 @@ - - - - - - - - - - + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - - - + + + - + - + - + - - - + + + @@ -276,191 +268,190 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - +" id="DejaVuSans-2212"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - + + + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + @@ -468,314 +459,303 @@ z - - - - - + - + - + + - + + + + + - - - + - + + + - + - - - +" id="DejaVuSans-67"/> + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_lineoffset.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_lineoffset.png index 9c74479efcbc..762660289486 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_lineoffset.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_lineoffset.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_lineoffset.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_lineoffset.svg index a249a36e281a..3cfb37843ff0 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_lineoffset.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_lineoffset.svg @@ -10,264 +10,256 @@ - - - - - - - - - - + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - - - + + + - + - + - + - - - + + + @@ -276,180 +268,176 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - - + + - +" id="DejaVuSans-2e"/> - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - +" id="DejaVuSans-34"/> - - - - - + + + + + - + - + - - - - - + + + + + @@ -457,284 +445,273 @@ z - - - - - + - + - + + - + + + + + - - - + - + + + - + - - +" id="DejaVuSans-66"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linestyle.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linestyle.png index b9f699ab29dd..dfbcaeda5410 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linestyle.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linestyle.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linestyle.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linestyle.svg index 52845340b254..f625a3375e18 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linestyle.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linestyle.svg @@ -10,264 +10,256 @@ - - - - - - - - - - + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - - - + + + - + - + - + - - - + + + @@ -276,119 +268,118 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -396,279 +387,268 @@ z - - - - - + - + - + + - + + + + + - - - + - + + + - + - - +" id="DejaVuSans-79"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linewidth.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linewidth.png index 03683c070377..7aa9b6eece0d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linewidth.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linewidth.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linewidth.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linewidth.svg index 97f8cf3f1f5e..76f808276df8 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linewidth.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linewidth.svg @@ -10,264 +10,256 @@ - - - - - - - - - - + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - - - + + + - + - + - + - - - + + + @@ -276,119 +268,118 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -396,320 +387,309 @@ z - - - - - - + - + - + + - + + + + + - - - - + - + + + - + - - +" id="DejaVuSans-77"/> + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_ls_dash.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_ls_dash.svg index 08c6ee903948..bd15342acb1e 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_ls_dash.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_ls_dash.svg @@ -5,141 +5,141 @@ - - - - - - - - - - + + + + + + + + - - - - - + - + - + - + - + - + - + - + - + - + - + - + @@ -148,70 +148,70 @@ L 0.000000 4.000000 - + - + - + - + - + - + - + - + - + - + - + - + @@ -219,7 +219,7 @@ L -4.000000 0.000000 - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_orientation.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_orientation.png index be5cc133dc72..b9e55f1c60e7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_orientation.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_orientation.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_orientation.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_orientation.svg index 4f1d2bffde2b..9dc642f26c36 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_orientation.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_orientation.svg @@ -10,278 +10,269 @@ - - - - - - - - - - + + + + + + + + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + @@ -290,103 +281,103 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + @@ -394,313 +385,301 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - - - - + - - + - + + - + + + - + + - - + - + + + - + - + - - +M 52.203125 31.203125 +L 52.203125 0 +L 43.21875 0 +L 43.21875 8.296875 +Q 40.140625 3.328125 35.546875 0.953125 +Q 30.953125 -1.421875 24.3125 -1.421875 +Q 15.921875 -1.421875 10.953125 3.296875 +Q 6 8.015625 6 15.921875 +Q 6 25.140625 12.171875 29.828125 +Q 18.359375 34.515625 30.609375 34.515625 +L 43.21875 34.515625 +L 43.21875 35.40625 +Q 43.21875 41.609375 39.140625 45 +Q 35.0625 48.390625 27.6875 48.390625 +Q 23 48.390625 18.546875 47.265625 +Q 14.109375 46.140625 10.015625 43.890625 +L 10.015625 52.203125 +Q 14.9375 54.109375 19.578125 55.046875 +Q 24.21875 56 28.609375 56 +Q 40.484375 56 46.34375 49.84375 +Q 52.203125 43.703125 52.203125 31.203125 +" id="DejaVuSans-61"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_positions.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_positions.png index b0cf2392004b..062903f8be42 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_positions.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_positions.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_positions.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_positions.svg index fb274e8852a2..4086cbf0c01e 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_positions.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_positions.svg @@ -10,320 +10,312 @@ - - - - - - - - - - - - - + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - - + + + - + - + - +" id="DejaVuSans-34"/> - - - + + + - + - + - + - - - + + + - + - + - + - - - + + + @@ -332,162 +324,159 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -495,286 +484,276 @@ z - - - - - + - + - + + - + + + + + - - - - + - + + + - - +" id="DejaVuSans-5f"/> + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation.png index 24b54b99e984..1f1f8b70b8ff 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation.svg index 7b10351eb44a..9559d3b8faa7 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation.svg @@ -10,278 +10,269 @@ - - - - - - - - - - + + + + + + + + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + @@ -290,103 +281,103 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + @@ -394,350 +385,337 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - - - - + - - + - + + - + + + - + + - - - + - - + + + + + - + - + - - +M 52.203125 31.203125 +L 52.203125 0 +L 43.21875 0 +L 43.21875 8.296875 +Q 40.140625 3.328125 35.546875 0.953125 +Q 30.953125 -1.421875 24.3125 -1.421875 +Q 15.921875 -1.421875 10.953125 3.296875 +Q 6 8.015625 6 15.921875 +Q 6 25.140625 12.171875 29.828125 +Q 18.359375 34.515625 30.609375 34.515625 +L 43.21875 34.515625 +L 43.21875 35.40625 +Q 43.21875 41.609375 39.140625 45 +Q 35.0625 48.390625 27.6875 48.390625 +Q 23 48.390625 18.546875 47.265625 +Q 14.109375 46.140625 10.015625 43.890625 +L 10.015625 52.203125 +Q 14.9375 54.109375 19.578125 55.046875 +Q 24.21875 56 28.609375 56 +Q 40.484375 56 46.34375 49.84375 +Q 52.203125 43.703125 52.203125 31.203125 +" id="DejaVuSans-61"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation__2x.png b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation__2x.png index 3db03db40705..041d4c98006b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation__2x.png and b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation__2x.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation__2x.svg b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation__2x.svg index 50cdbb73fb0b..ed98480b5348 100644 --- a/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation__2x.svg +++ b/lib/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation__2x.svg @@ -10,264 +10,256 @@ - - - - - - - - - - + + + + + + + + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - - - + + + - + - + - + - - - + + + @@ -276,119 +268,118 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -396,368 +387,354 @@ z - - - - + - - + - + + - + + + - + + - - - + - - + + + - + + + - + - + - - +" id="DejaVuSans-78"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_collections/polycollection_close.png b/lib/matplotlib/tests/baseline_images/test_collections/polycollection_close.png index d8b85287986a..20d5d3307ca9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/polycollection_close.png and b/lib/matplotlib/tests/baseline_images/test_collections/polycollection_close.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_collections/regularpolycollection_rotate.png b/lib/matplotlib/tests/baseline_images/test_collections/regularpolycollection_rotate.png index 49e4bda28ab9..747f5766c196 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_collections/regularpolycollection_rotate.png and b/lib/matplotlib/tests/baseline_images/test_collections/regularpolycollection_rotate.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_locationing.png b/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_locationing.png index 8616feb549d1..e2855f2a2427 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_locationing.png and b/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_locationing.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_sharing.png b/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_sharing.png index e8a6e6d5d70f..92d7ea5d956b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_sharing.png and b/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_sharing.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_with_orientation.png b/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_with_orientation.png index f892209b44cc..2736884f74f2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_with_orientation.png and b/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_with_orientation.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_with_subplots_adjust.png b/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_with_subplots_adjust.png index 84c683774ad3..e6670095507d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_with_subplots_adjust.png and b/lib/matplotlib/tests/baseline_images/test_colorbar/cbar_with_subplots_adjust.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_closed_patch.svg b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_closed_patch.svg index cc3a43b71f04..d0da3365e6b9 100644 --- a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_closed_patch.svg +++ b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_closed_patch.svg @@ -5,263 +5,261 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -270,118 +268,118 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -389,272 +387,264 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - +" style="fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.010000;"/> - - - - - + + + + + - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:16.000000;"/> - +" style="fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.010000;"/> - - - - - + + + + + - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:16.000000;"/> - +" style="fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.010000;"/> - - - - - + + + + + - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:16.000000;"/> - +" style="fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.010000;"/> - - - - - + + + + + - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:16.000000;"/> - - - - - - - + - + + + + - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_proportional.png b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_proportional.png index 0c948d2fa900..38219fc4f1f0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_proportional.png and b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_proportional.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_shape_proportional.png b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_shape_proportional.png index c77e03f4bb70..ec331b192b1a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_shape_proportional.png and b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_shape_proportional.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_shape_uniform.png b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_shape_uniform.png index 660e4948c3ac..f09da163f2cb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_shape_uniform.png and b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_shape_uniform.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_uniform.png b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_uniform.png index 416df402d499..89d86b2f3a89 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_uniform.png and b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_uniform.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_single_scatter.png b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_single_scatter.png index fd6f35d1b9c5..1ff3c2422e46 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_single_scatter.png and b/lib/matplotlib/tests/baseline_images/test_colorbar/colorbar_single_scatter.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colorbar/double_cbar.png b/lib/matplotlib/tests/baseline_images/test_colorbar/double_cbar.png index f32b14d9ee8c..b7f1f927207a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colorbar/double_cbar.png and b/lib/matplotlib/tests/baseline_images/test_colorbar/double_cbar.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colors/levels_and_colors.png b/lib/matplotlib/tests/baseline_images/test_colors/levels_and_colors.png index 9409f83bf7c7..dea9ae2efd05 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colors/levels_and_colors.png and b/lib/matplotlib/tests/baseline_images/test_colors/levels_and_colors.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_colors/light_source_shading_topo.png b/lib/matplotlib/tests/baseline_images/test_colors/light_source_shading_topo.png index 332ab0a886b7..b18d1ee80470 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_colors/light_source_shading_topo.png and b/lib/matplotlib/tests/baseline_images/test_colors/light_source_shading_topo.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_contour/contour_corner_mask_False.png b/lib/matplotlib/tests/baseline_images/test_contour/contour_corner_mask_False.png index 93780be92fc1..6adce0339853 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_contour/contour_corner_mask_False.png and b/lib/matplotlib/tests/baseline_images/test_contour/contour_corner_mask_False.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_contour/contour_datetime_axis.png b/lib/matplotlib/tests/baseline_images/test_contour/contour_datetime_axis.png index 70d76ce3e3af..8c1262305b70 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_contour/contour_datetime_axis.png and b/lib/matplotlib/tests/baseline_images/test_contour/contour_datetime_axis.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_colors_and_levels.png b/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_colors_and_levels.png index 418977d7ca9b..c41174025baf 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_colors_and_levels.png and b/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_colors_and_levels.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_labels.png b/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_labels.png index f5e37a27b097..86d29d3c4cd8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_labels.png and b/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_labels.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_labels.svg b/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_labels.svg index 07069546f640..b8f5be69bf98 100644 --- a/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_labels.svg +++ b/lib/matplotlib/tests/baseline_images/test_contour/contour_manual_labels.svg @@ -10,559 +10,546 @@ - - - + - - + + - - + + - - + + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-37"/> - - + + - + - + - + - - + + - + - + - + - - + + @@ -571,243 +558,242 @@ Q23.9688 32.4219 30.6094 32.4219" id="BitstreamVeraSans-Roman-39"/> - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - +" id="DejaVuSans-2e"/> - - - - - - + + + + + + - + - - - - - - + + + + + + - + - - - - - - + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_contour/contour_test_label_transforms.png b/lib/matplotlib/tests/baseline_images/test_contour/contour_test_label_transforms.png index d03c57fb7f8f..f5b3db8d646f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_contour/contour_test_label_transforms.png and b/lib/matplotlib/tests/baseline_images/test_contour/contour_test_label_transforms.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_cycles/color_cycle_basic.png b/lib/matplotlib/tests/baseline_images/test_cycles/color_cycle_basic.png index 38c9b11afd36..198b1f1366b7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_cycles/color_cycle_basic.png and b/lib/matplotlib/tests/baseline_images/test_cycles/color_cycle_basic.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_cycles/fill_cycle_basic.png b/lib/matplotlib/tests/baseline_images/test_cycles/fill_cycle_basic.png index bc3263c15cb7..efecd2750d03 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_cycles/fill_cycle_basic.png and b/lib/matplotlib/tests/baseline_images/test_cycles/fill_cycle_basic.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_cycles/fill_cycle_ignore.png b/lib/matplotlib/tests/baseline_images/test_cycles/fill_cycle_ignore.png index 65aa664ebda7..3aee62f56b26 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_cycles/fill_cycle_ignore.png and b/lib/matplotlib/tests/baseline_images/test_cycles/fill_cycle_ignore.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_cycles/lineprop_cycle_basic.png b/lib/matplotlib/tests/baseline_images/test_cycles/lineprop_cycle_basic.png index 10fef6387a21..e3706c3216f2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_cycles/lineprop_cycle_basic.png and b/lib/matplotlib/tests/baseline_images/test_cycles/lineprop_cycle_basic.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_cycles/marker_cycle.png b/lib/matplotlib/tests/baseline_images/test_cycles/marker_cycle.png index f807aaed3e84..160b68b8bf3a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_cycles/marker_cycle.png and b/lib/matplotlib/tests/baseline_images/test_cycles/marker_cycle.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.png b/lib/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.png index 50d99cebb947..4ee7401ec834 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.png and b/lib/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_dates/RRuleLocator_bounds.png b/lib/matplotlib/tests/baseline_images/test_dates/RRuleLocator_bounds.png index 90a08f29bc35..9949f1193460 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_dates/RRuleLocator_bounds.png and b/lib/matplotlib/tests/baseline_images/test_dates/RRuleLocator_bounds.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_dates/date_axhline.png b/lib/matplotlib/tests/baseline_images/test_dates/date_axhline.png index 65091c524fb1..3a885805b1fd 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_dates/date_axhline.png and b/lib/matplotlib/tests/baseline_images/test_dates/date_axhline.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_dates/date_axhspan.png b/lib/matplotlib/tests/baseline_images/test_dates/date_axhspan.png index 8ace4d7d12fc..ac97939677e3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_dates/date_axhspan.png and b/lib/matplotlib/tests/baseline_images/test_dates/date_axhspan.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_dates/date_axvline.png b/lib/matplotlib/tests/baseline_images/test_dates/date_axvline.png index 2958b74cc542..3b64944395ed 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_dates/date_axvline.png and b/lib/matplotlib/tests/baseline_images/test_dates/date_axvline.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_dates/date_axvspan.png b/lib/matplotlib/tests/baseline_images/test_dates/date_axvspan.png index 15d6ee409215..a027583ff62f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_dates/date_axvspan.png and b/lib/matplotlib/tests/baseline_images/test_dates/date_axvspan.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_dates/date_empty.png b/lib/matplotlib/tests/baseline_images/test_dates/date_empty.png index 4013d973d35a..9a019b96a747 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_dates/date_empty.png and b/lib/matplotlib/tests/baseline_images/test_dates/date_empty.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_dates/date_inverted_limit.png b/lib/matplotlib/tests/baseline_images/test_dates/date_inverted_limit.png index 328a10dd3f34..b77cca28cb34 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_dates/date_inverted_limit.png and b/lib/matplotlib/tests/baseline_images/test_dates/date_inverted_limit.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-con.png index cbd59b49873a..2a53210556f5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-img.png index abe907b1b9a1..57a30332bb87 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-con.png index 6545321c3466..790a440be139 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-img.png index 2e163d64f1ba..ae6d21d006e6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-con.png index 0854de49f38f..50fd879ea16d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-img.png index 94f682489db1..f7b3abc2bba5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-con.png index 6389d699eea7..17e0dfd2382d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-img.png index 74d8e80ddc51..17a8d0eea63b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-con.png index 377ef3a69fd4..1a6a7beccb7c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-img.png index e35709ff599c..120f1ca5ca7e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-con.png index 64e8235b98cf..b2de4c5fb0dc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-img.png index de6f330c1b94..e462d8d03e7f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-con.png index 323356f584b5..e9dd3dc5beb1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-img.png index 01a03f72bec6..24c34d5f0c80 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-con.png index ae25508aacae..fd5fca7c8e53 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-img.png index 7e11197d358d..717a79654a30 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-con.png index 4121dad4bd44..6c20ec425a5d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-img.png index 2340b9e8b68b..18ffa8259726 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/delaunay-1d-interp.png b/lib/matplotlib/tests/baseline_images/test_delaunay/delaunay-1d-interp.png index f8f4e173752c..45ad3d4b655f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/delaunay-1d-interp.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/delaunay-1d-interp.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-con.png index c1ab2bed6c61..fe9f4ee935b0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-img.png index af563cbee5b2..e84f9cd6a439 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-con.png index 93aaf95a1b0e..48114d84dafa 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-img.png index d90054bb20d6..6dc86cbffb83 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-con.png index 00cd1687a5a2..305200df9ec4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-img.png index e76d96a0b2e1..06f73244942d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-con.png index a6786f6fc979..2485b0c36f8e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-img.png index bef299b9e030..704488c63da6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-con.png index 96947ac200bc..c899f6b85b15 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-img.png index d77aee5f7ee8..7b9050b4a6ea 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-con.png index fc97643f7a5b..f72aa73ed6ed 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-img.png index 4a3244e6ca75..4725c5df3ad8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-con.png index 69bc587729a0..6480adaebd46 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-img.png index 28f1a94b531b..cece28c8d816 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-con.png index 8f000845aa25..76b1dfba38a4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-img.png index 1f7fe34dee07..2d98cc19fe77 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-con.png index 70ee17a52350..05657c25f1b1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-img.png index 12a5aa496b0f..45b95afbfea0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-con.png index e999de71706a..8d3e822e011a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-img.png index e0f2d8803afc..64e3bea30a6f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-con.png index 87dd3805c8b2..554364d66556 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-img.png index d783b928bbcd..6c034837c804 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-con.png index cdf54320782f..6f27590f5e9f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-img.png index d8ad133513f9..a8f08e572456 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-con.png index aeaba6d39232..0b97f9f44a8a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-img.png index 984a4af8a011..65aaf7014dd5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-con.png index fdea37d636bb..9c63cf9b9b76 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-img.png index b678f7f573a3..0712785b8514 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-con.png index 1605046c10e3..9deffa1d1719 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-img.png index b7fdb0127315..2d3285486ff7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-lin-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-lin-con.png index 77ecd05a63d8..b7666fd2c592 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-lin-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-lin-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-lin-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-lin-img.png index 17ceba67997b..7dabe42cda70 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-lin-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-lin-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-nn-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-nn-con.png index 9e05bdba5362..3617253474a3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-nn-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-nn-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-nn-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-nn-img.png index bc465acce5f1..99086230d048 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-nn-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-nn-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-ref-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-ref-con.png index 3fa66ea96aff..fd613606779c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-ref-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-ref-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-ref-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-ref-img.png index c844f4a0c25d..8056e45e858b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/steep-ref-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/steep-ref-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-lin-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-lin-con.png index d49ed42b97c8..b59eb137a76c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-lin-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-lin-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-lin-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-lin-img.png index f0703dcbc158..bb610f3326d9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-lin-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-lin-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-nn-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-nn-con.png index fb1496c67b56..82e0b06ddf6c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-nn-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-nn-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-nn-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-nn-img.png index fd656cbde94d..a0a2b672b3b3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-nn-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-nn-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-ref-con.png b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-ref-con.png index 84e18bd47ca1..f77e2cd2de28 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-ref-con.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-ref-con.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-ref-img.png b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-ref-img.png index be59157d0e50..0321b307f17b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_delaunay/trig-ref-img.png and b/lib/matplotlib/tests/baseline_images/test_delaunay/trig-ref-img.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_figure/alpha_background.png b/lib/matplotlib/tests/baseline_images/test_figure/alpha_background.png index cc3ccda25dac..0e36be7dc571 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_figure/alpha_background.png and b/lib/matplotlib/tests/baseline_images/test_figure/alpha_background.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_figure/alpha_background.svg b/lib/matplotlib/tests/baseline_images/test_figure/alpha_background.svg index f59b35d81258..5bc38b25f5ff 100644 --- a/lib/matplotlib/tests/baseline_images/test_figure/alpha_background.svg +++ b/lib/matplotlib/tests/baseline_images/test_figure/alpha_background.svg @@ -5,43 +5,41 @@ - +" style="fill:#00ff66;opacity:0.400000;"/> - +" style="fill:#ff0000;opacity:0.600000;stroke:#000000;stroke-linejoin:miter;"/> diff --git a/lib/matplotlib/tests/baseline_images/test_figure/figure_suptitle.png b/lib/matplotlib/tests/baseline_images/test_figure/figure_suptitle.png index 463680c84b38..1947d2cec991 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_figure/figure_suptitle.png and b/lib/matplotlib/tests/baseline_images/test_figure/figure_suptitle.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_figure/figure_suptitle.svg b/lib/matplotlib/tests/baseline_images/test_figure/figure_suptitle.svg index e3ff927a06bc..d76144d8c2f0 100644 --- a/lib/matplotlib/tests/baseline_images/test_figure/figure_suptitle.svg +++ b/lib/matplotlib/tests/baseline_images/test_figure/figure_suptitle.svg @@ -10,334 +10,324 @@ - - - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + @@ -346,130 +336,130 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -478,78 +468,73 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - - + - + - + +" id="DejaVuSans-65"/> - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_figure/figure_today.png b/lib/matplotlib/tests/baseline_images/test_figure/figure_today.png index bd3bc532bedb..d954f35be3f9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_figure/figure_today.png and b/lib/matplotlib/tests/baseline_images/test_figure/figure_today.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_figure/figure_today.svg b/lib/matplotlib/tests/baseline_images/test_figure/figure_today.svg index 1942a3f5048c..da1be5105915 100644 --- a/lib/matplotlib/tests/baseline_images/test_figure/figure_today.svg +++ b/lib/matplotlib/tests/baseline_images/test_figure/figure_today.svg @@ -10,394 +10,383 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + @@ -406,190 +395,190 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -597,132 +586,129 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - - - - + + + - + +" id="DejaVuSans-79"/> - - - - - - + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_image/bbox_image_inverted.png b/lib/matplotlib/tests/baseline_images/test_image/bbox_image_inverted.png index 602168b49f50..4adab1956419 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/bbox_image_inverted.png and b/lib/matplotlib/tests/baseline_images/test_image/bbox_image_inverted.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_clip.png b/lib/matplotlib/tests/baseline_images/test_image/image_clip.png index 69d2a9acbcd7..6a90f8bedcfb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/image_clip.png and b/lib/matplotlib/tests/baseline_images/test_image/image_clip.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_clip.svg b/lib/matplotlib/tests/baseline_images/test_image/image_clip.svg index 296e45191a99..ec1f7143b4f1 100644 --- a/lib/matplotlib/tests/baseline_images/test_image/image_clip.svg +++ b/lib/matplotlib/tests/baseline_images/test_image/image_clip.svg @@ -10,144 +10,140 @@ - - - - + - + - - - - + - + +" id="DejaVuSans-35"/> + + - - - - - - + + + + + + @@ -155,36 +151,36 @@ z - + - - - - - - + + + + + + @@ -192,40 +188,40 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - - - - - + + + + + @@ -233,40 +229,40 @@ Q23.9688 32.4219 30.6094 32.4219" id="BitstreamVeraSans-Roman-39"/> - + - - - - - + + + + + @@ -274,104 +270,104 @@ Q48.4844 72.75 52.5938 71.2969" id="BitstreamVeraSans-Roman-36"/> - + - - - - - + + + + + - - - + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - - + + + + + - - - - - + + + + + @@ -381,33 +377,32 @@ Q46.9688 40.9219 40.5781 39.3125" id="BitstreamVeraSans-Roman-33"/> - +" id="DejaVuSans-37"/> - - - - - + + + + + - - - - - + + + + + @@ -415,112 +410,110 @@ z - +" id="DejaVuSans-34"/> - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + @@ -528,17 +521,16 @@ z - - + diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_cliprect.png b/lib/matplotlib/tests/baseline_images/test_image/image_cliprect.png index 4c5b60e34725..d8de9153af6d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/image_cliprect.png and b/lib/matplotlib/tests/baseline_images/test_image/image_cliprect.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_cliprect.svg b/lib/matplotlib/tests/baseline_images/test_image/image_cliprect.svg index e633c2ea92d3..45d4669da31e 100644 --- a/lib/matplotlib/tests/baseline_images/test_image/image_cliprect.svg +++ b/lib/matplotlib/tests/baseline_images/test_image/image_cliprect.svg @@ -10,311 +10,301 @@ - - - - + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + @@ -323,118 +313,118 @@ z - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -442,7 +432,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.pdf b/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.pdf index 65c23cdbfb45..8dd4bc1eb88d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.pdf and b/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.png b/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.png index 48acef4223e2..445b40099843 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.png and b/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.svg b/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.svg index b46da90d064b..cffcc9a06eb0 100644 --- a/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.svg +++ b/lib/matplotlib/tests/baseline_images/test_image/image_composite_alpha.svg @@ -5,113 +5,131 @@ - - - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -120,91 +138,94 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.pdf b/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.pdf index 8de059db2b5d..f542428e1ec3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.pdf and b/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.png b/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.png index 9123295c3717..c23eb983dd17 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.png and b/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.svg b/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.svg index dbb77184e0cb..e80dd460e16b 100644 --- a/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.svg +++ b/lib/matplotlib/tests/baseline_images/test_image/image_composite_background.svg @@ -5,125 +5,143 @@ - - +" style="fill:#ff0000;fill-opacity:0.500000;"/> - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -132,139 +150,118 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_interps.pdf b/lib/matplotlib/tests/baseline_images/test_image/image_interps.pdf index d3d258d74348..36e78956d57b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/image_interps.pdf and b/lib/matplotlib/tests/baseline_images/test_image/image_interps.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_interps.png b/lib/matplotlib/tests/baseline_images/test_image/image_interps.png index a1895fd3d603..dd1d4762cef0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/image_interps.png and b/lib/matplotlib/tests/baseline_images/test_image/image_interps.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_interps.svg b/lib/matplotlib/tests/baseline_images/test_image/image_interps.svg index 33c144b5140f..3bacd6e8db7f 100644 --- a/lib/matplotlib/tests/baseline_images/test_image/image_interps.svg +++ b/lib/matplotlib/tests/baseline_images/test_image/image_interps.svg @@ -10,198 +10,190 @@ - - - - + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - - - + + + @@ -210,559 +202,545 @@ z - + - + - + - + - - + + - + - + - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - - + - + - + - + + - +" id="DejaVuSans-74"/> - - - - - - - - + + + + + + + + - - - + + - + + + - - +" id="DejaVuSans-6c"/> - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - + - + - + - + - + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + @@ -771,245 +749,239 @@ L91.9059 165.176" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - +" id="DejaVuSans-62"/> - - - - - - - - - + + + + + + + + + - - - + - + - + - + - + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + @@ -1018,156 +990,158 @@ L91.9059 287.153" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - - + + - - - - - - - - + + + + + + + + - + - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_shift.pdf b/lib/matplotlib/tests/baseline_images/test_image/image_shift.pdf index bd0df0e35877..92a2ebe0ec48 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/image_shift.pdf and b/lib/matplotlib/tests/baseline_images/test_image/image_shift.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/image_shift.svg b/lib/matplotlib/tests/baseline_images/test_image/image_shift.svg index 0f2b10d3c055..c82cf8383f32 100644 --- a/lib/matplotlib/tests/baseline_images/test_image/image_shift.svg +++ b/lib/matplotlib/tests/baseline_images/test_image/image_shift.svg @@ -5,101 +5,119 @@ - - - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -108,98 +126,78 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_image/imshow.pdf b/lib/matplotlib/tests/baseline_images/test_image/imshow.pdf index 14a1f53b5756..99c5a7bcd4a0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/imshow.pdf and b/lib/matplotlib/tests/baseline_images/test_image/imshow.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/imshow.png b/lib/matplotlib/tests/baseline_images/test_image/imshow.png index 415543124d26..b56a99ee4c90 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/imshow.png and b/lib/matplotlib/tests/baseline_images/test_image/imshow.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/imshow.svg b/lib/matplotlib/tests/baseline_images/test_image/imshow.svg index 3a0dabf811d8..a1a90be43f0a 100644 --- a/lib/matplotlib/tests/baseline_images/test_image/imshow.svg +++ b/lib/matplotlib/tests/baseline_images/test_image/imshow.svg @@ -5,125 +5,143 @@ - - - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -132,122 +150,102 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.pdf b/lib/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.pdf index 4544ca4e33a7..a4f414a397cf 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.pdf and b/lib/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.svg b/lib/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.svg index 94a00beefa7c..8a54ae973fb3 100644 --- a/lib/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.svg +++ b/lib/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.svg @@ -10,96 +10,114 @@ - - - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -108,213 +126,240 @@ L0 4" id="m741efc42ff" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - - - + - + - + - + - + - + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.pdf b/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.pdf index 3ffcf3639329..64588b6ffda5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.pdf and b/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.png b/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.png index b851fb4041e5..7d674a24617f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.png and b/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.svg b/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.svg index 1fbf4f362c48..b2703910b511 100644 --- a/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.svg +++ b/lib/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.svg @@ -5,101 +5,119 @@ - - - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -108,167 +126,166 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + @@ -277,91 +294,71 @@ iVBORw0KGgoAAAANSUhEUgAAADIAAAACCAYAAAAaRY8cAAAABHNCSVQICAgIfAhkiAAAAIBJREFUGJWN - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_image/rasterize_10dpi.svg b/lib/matplotlib/tests/baseline_images/test_image/rasterize_10dpi.svg index 47e354dd1457..2a4d957c18fa 100644 --- a/lib/matplotlib/tests/baseline_images/test_image/rasterize_10dpi.svg +++ b/lib/matplotlib/tests/baseline_images/test_image/rasterize_10dpi.svg @@ -10,26 +10,24 @@ - - - - + @@ -37,44 +35,42 @@ iVBORw0KGgoAAAANSUhEUgAAAAgAAAAHCAYAAAA1WQxeAAAABHNCSVQICAgIfAhkiAAAAIVJREFUCJmF - - - - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_legend/fancy.png b/lib/matplotlib/tests/baseline_images/test_legend/fancy.png index 36d535ac79f3..aba46e19e727 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/fancy.png and b/lib/matplotlib/tests/baseline_images/test_legend/fancy.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/fancy.svg b/lib/matplotlib/tests/baseline_images/test_legend/fancy.svg index 0310db349d41..fa9e0f8534ad 100644 --- a/lib/matplotlib/tests/baseline_images/test_legend/fancy.svg +++ b/lib/matplotlib/tests/baseline_images/test_legend/fancy.svg @@ -10,350 +10,342 @@ - - - +" id="m2ec9b9bc79" style="stroke:#000000;"/> - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - +" id="m2c9e9e07fc" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - + + + + + + + + + + + - + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -362,417 +354,406 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +" style="fill:#4c4c4c;opacity:0.500000;stroke:#4c4c4c;stroke-linejoin:miter;"/> - - - - - + - + + - + - - + +" id="DejaVuSans-67"/> + + - - - - - - - - - - + + + + + + + + + + - + - + - +" id="DejaVuSans-58"/> - - - + + + - - - - - - + + + - - - + + + - + - + - + - + - + - + - + - - - + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_legend/framealpha.png b/lib/matplotlib/tests/baseline_images/test_legend/framealpha.png index 295cf3aee7df..8bf8c9ea2ba6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/framealpha.png and b/lib/matplotlib/tests/baseline_images/test_legend/framealpha.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/framealpha.svg b/lib/matplotlib/tests/baseline_images/test_legend/framealpha.svg index 17deb757761e..cf92e203be20 100644 --- a/lib/matplotlib/tests/baseline_images/test_legend/framealpha.svg +++ b/lib/matplotlib/tests/baseline_images/test_legend/framealpha.svg @@ -10,231 +10,225 @@ - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -243,255 +237,249 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +" style="fill:#ffffff;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - + - - + - + - + - + - + +" id="DejaVuSans-65"/> - - - - - - - - + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto1.png b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto1.png index ba2a6e2ef028..df81e176eeaa 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto1.png and b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto1.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto1.svg b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto1.svg index 6a029cf5b3a5..aa54ca60c9be 100644 --- a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto1.svg +++ b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto1.svg @@ -10,364 +10,356 @@ - - - +" id="mf54fd6d08a" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - +" id="m5710bf4bef" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -376,199 +368,193 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + - - + - + +" id="DejaVuSans-31"/> - - - - + + + + - - + + - +" id="DejaVuSans-2d"/> - - - - - + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto2.png b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto2.png index 0c2c53885ee2..ef28581eaccf 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto2.png and b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto2.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto2.svg b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto2.svg index f6efe064b4b9..e74a232fe7d9 100644 --- a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto2.svg +++ b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto2.svg @@ -10,1928 +10,1722 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1940,258 +1734,256 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - + + - - - + + + - - - - - + + + + - - - - - + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto3.png b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto3.png index c7a8e3585493..714fbbe1feff 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto3.png and b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto3.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto3.svg b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto3.svg index 74d6592eead9..a4e4b3c0474b 100644 --- a/lib/matplotlib/tests/baseline_images/test_legend/legend_auto3.svg +++ b/lib/matplotlib/tests/baseline_images/test_legend/legend_auto3.svg @@ -10,365 +10,354 @@ - - - + - +" id="m4d9c3f00fa" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - + + + + + + + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + @@ -377,233 +366,228 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - + - - + + - - - + - + + +" id="DejaVuSans-65"/> - - - - - + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_expand.png b/lib/matplotlib/tests/baseline_images/test_legend/legend_expand.png index 292a88db0208..4ad5d3f87601 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/legend_expand.png and b/lib/matplotlib/tests/baseline_images/test_legend/legend_expand.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_expand.svg b/lib/matplotlib/tests/baseline_images/test_legend/legend_expand.svg index b47c5dff14c3..4e6175ac89d9 100644 --- a/lib/matplotlib/tests/baseline_images/test_legend/legend_expand.svg +++ b/lib/matplotlib/tests/baseline_images/test_legend/legend_expand.svg @@ -10,364 +10,356 @@ - - - +" id="madd69ffb7c" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - +" id="ma107322361" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -376,576 +368,563 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + - - + - + +" id="DejaVuSans-31"/> - - - - + + + + - - - + + - - - - + + + + - - + + - +" id="DejaVuSans-2d"/> - - - - - + + + + + - - - + + - - - - + + + + - - + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -954,205 +933,202 @@ L72 231.709" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + - - - - + + + + - - - + + - - - - + + + + - - + + - - - - - + + + + + - - - + + - - - - + + + + - - + + - - - - - + + + + + - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_labels_first.png b/lib/matplotlib/tests/baseline_images/test_legend/legend_labels_first.png index 34339d2aa2f8..456c1970e207 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/legend_labels_first.png and b/lib/matplotlib/tests/baseline_images/test_legend/legend_labels_first.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_stackplot.png b/lib/matplotlib/tests/baseline_images/test_legend/legend_stackplot.png index 113de4b5ae30..61d93cab866f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/legend_stackplot.png and b/lib/matplotlib/tests/baseline_images/test_legend/legend_stackplot.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_various_labels.png b/lib/matplotlib/tests/baseline_images/test_legend/legend_various_labels.png index 482b59082f8b..9faf54d00ffa 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/legend_various_labels.png and b/lib/matplotlib/tests/baseline_images/test_legend/legend_various_labels.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/legend_various_labels.svg b/lib/matplotlib/tests/baseline_images/test_legend/legend_various_labels.svg index 36b662a2a55f..c88831c688e0 100644 --- a/lib/matplotlib/tests/baseline_images/test_legend/legend_various_labels.svg +++ b/lib/matplotlib/tests/baseline_images/test_legend/legend_various_labels.svg @@ -10,239 +10,230 @@ - - - +" id="ma650ed4e71" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - + + + + + - +" id="maa3ac86c13" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - +" id="mf313ae95ab" style="stroke:#000000;stroke-width:0.500000;"/> - - - - + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -251,363 +242,354 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + - +" id="DejaVuSans-31"/> - - + + - + - - - + - - + + - + - - +" id="DejaVuSans-6c"/> + + + - - - - - - - - - - - + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_legend/rcparam_alpha.png b/lib/matplotlib/tests/baseline_images/test_legend/rcparam_alpha.png index 3f2fd6a8eff0..e55321cf34e9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/rcparam_alpha.png and b/lib/matplotlib/tests/baseline_images/test_legend/rcparam_alpha.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/rgba_alpha.png b/lib/matplotlib/tests/baseline_images/test_legend/rgba_alpha.png index 1037ff371a0b..767106c24679 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/rgba_alpha.png and b/lib/matplotlib/tests/baseline_images/test_legend/rgba_alpha.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc1.png b/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc1.png index a23ded35a626..86fb51e2ff51 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc1.png and b/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc1.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc1.svg b/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc1.svg index d39bf92fbded..5e4256672451 100644 --- a/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc1.svg +++ b/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc1.svg @@ -10,168 +10,161 @@ - - - +" id="m1580a97f0c" style="stroke:#000000;"/> - - - - - - - - - - - + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -180,336 +173,327 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - + - + + - + - - + +" id="DejaVuSans-67"/> + + - - - - - - - - - - + + + + + + + + + + - - - - + - - - - + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc3.png b/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc3.png index 87799d7ad837..1d9c4cf999ae 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc3.png and b/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc3.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc3.svg b/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc3.svg index 140f201803ce..ab9e02b7e4bb 100644 --- a/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc3.svg +++ b/lib/matplotlib/tests/baseline_images/test_legend/scatter_rc3.svg @@ -10,168 +10,161 @@ - - - +" id="m48c19c8559" style="stroke:#000000;"/> - - - - - - - - - - - + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -180,375 +173,364 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - + - + + - + - - + +" id="DejaVuSans-67"/> + + - - - - - - - - - - + + + + + + + + + + - - - - - + + - +" id="DejaVuSans-72"/> - - - - - - + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.pdf b/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.pdf index 75e3255b6ce8..9a5b3f3d3ca5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.pdf and b/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.png b/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.png index e4c2b85db037..4ba990cdcdc2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.png and b/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.svg b/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.svg index 95ab7693e80c..3790836f4405 100644 --- a/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.svg +++ b/lib/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.svg @@ -5,3080 +5,2280 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3087,86 +2287,66 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_lines/line_dashes.svg b/lib/matplotlib/tests/baseline_images/test_lines/line_dashes.svg index d693b936214a..47d4168f02c1 100644 --- a/lib/matplotlib/tests/baseline_images/test_lines/line_dashes.svg +++ b/lib/matplotlib/tests/baseline_images/test_lines/line_dashes.svg @@ -10,185 +10,183 @@ - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -197,130 +195,130 @@ L0 4" id="m741efc42ff" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -328,7 +326,7 @@ L-4 0" id="mcb0005524f" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_00.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_00.png index e3f8aad8668d..0ac313befd47 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_00.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_00.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_01.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_01.png index 22a0196686bd..c4de985ffb32 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_01.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_01.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_02.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_02.png index d84ef474305f..d7463a69cb0a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_02.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_02.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_03.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_03.png index 1d21f73e60d5..e228e39f2819 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_03.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_03.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_04.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_04.png index 739b8310373c..0c5fba073181 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_04.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_04.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_05.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_05.png index cca48c5c515d..127ef7dd910e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_05.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_05.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_06.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_06.png index 4550a99b2bc4..27ab64d232cb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_06.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_06.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_07.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_07.png index 51aa52e990cc..4e5e0287ce7a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_07.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_07.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_08.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_08.png index a9403888fda7..33426cb185ef 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_08.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_08.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_09.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_09.png index cc0c60787ee9..a5b9b6018e02 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_09.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_09.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_10.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_10.png index 02244768273b..91ab33a1af88 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_10.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_10.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_11.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_11.png index 99c51683c527..66ee00e65f53 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_11.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_11.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_12.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_12.png index e9df0cd4ac60..679209e5ff7c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_12.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_12.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_13.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_13.png index 51a5b874e086..80b36cb78b97 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_13.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_13.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_14.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_14.png index 721d4e2c8419..5f8995a1756e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_14.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_14.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_15.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_15.png index 48a229b5dfe0..f7933d12b585 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_15.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_15.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_16.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_16.png index 403cf6664ea8..5199147b0b2a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_16.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_16.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_17.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_17.png index 3652654b3c82..e96ab125bc22 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_17.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_17.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_18.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_18.png index 96ee31d81190..1761facc085a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_18.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_18.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_19.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_19.png index 3f0513986307..85e5c76656f6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_19.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_19.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_20.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_20.png index 797704836125..100f65c37098 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_20.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_20.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_21.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_21.png index b2e6d2221a58..0116cf31e5dc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_21.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_21.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_22.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_22.png index 5548ff8c7a8d..166299364c28 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_22.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_22.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_23.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_23.png index a0b1d6191831..115074d06969 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_23.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_23.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_24.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_24.png index 75360ea2e688..4bd7f0e12d83 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_24.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_24.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_25.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_25.png index eed11d8ef86a..78e218f05b39 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_25.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_25.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_26.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_26.png index 324577a22bcd..db9b855e38c2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_26.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_26.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_27.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_27.png index b93a9e955600..1e7de3efd59a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_27.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_27.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_28.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_28.png index fb0de2d3ac87..fbaeb0b062f0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_28.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_28.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_29.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_29.png index b9d50284678d..b77ab543985e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_29.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_29.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_30.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_30.png index 6f54263613e0..ef5764e04c62 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_30.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_30.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_31.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_31.png index a59b0081b837..940fae6d0779 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_31.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_31.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_32.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_32.png index b56de1e4c108..a9c287089828 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_32.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_32.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_33.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_33.png index eee033aaf73b..8230ca5ae81f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_33.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_33.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_34.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_34.png index 281880dcf979..bc6804e51b44 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_34.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_34.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_35.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_35.png index 39fe61d4191c..6fd2a414526a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_35.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_35.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_36.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_36.png index 273770bc08b8..1acf93778357 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_36.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_36.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_37.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_37.png index f8126567e91f..8c02b7fe9879 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_37.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_37.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_38.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_38.png index cd6de3c09052..9c8f9fade93d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_38.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_38.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_39.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_39.png index 1e103ff391cd..d3e823c4257a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_39.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_39.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_40.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_40.png index edbf803f4842..590425ecdc52 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_40.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_40.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_41.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_41.png index c13628c8aba5..337b9f3150a6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_41.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_41.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_42.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_42.png index 729d3b8ae0f9..9d33f53d5558 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_42.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_42.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_43.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_43.png index 54840062e1be..e3bec1bcadb3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_43.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_43.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_44.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_44.png index 87526333cdbd..5b004bc39b59 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_44.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_44.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_45.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_45.png index 7a89af4e1cae..8470d37ca0e6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_45.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_45.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_46.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_46.png index a2898a570209..8cc41c6d6840 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_46.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_46.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_47.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_47.png index 1be8f13ce6a4..8327a7d31b4a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_47.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_47.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_48.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_48.png index 63a17add745f..64c653e67e5e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_48.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_48.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_49.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_49.png index 88735677a00b..e23a422a745c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_49.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_49.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_50.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_50.png index 4d5497c5be86..9423513dbdff 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_50.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_50.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_51.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_51.png index 86e39d655a8e..75258500cec0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_51.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_51.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_52.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_52.png index a695f999e723..ebd3476eea81 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_52.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_52.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_53.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_53.png index b318e1d55e93..d6a6c4e0a81b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_53.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_53.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_54.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_54.png index 88fa83b11147..e4faab4691fa 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_54.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_54.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_55.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_55.png index 415fc0fa44a4..d5a25192206f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_55.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_55.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_56.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_56.png index 80206e71cb53..8301835aa9e0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_56.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_56.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_57.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_57.png index d9da9dfc33f5..3ad8a58ef726 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_57.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_57.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_58.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_58.png index f55a005b34c3..cefd7f3a7fda 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_58.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_58.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_59.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_59.png index 3c577d94dd32..1dddcca0a353 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_59.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_59.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_00.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_00.png index 42874c7b1fb8..47ca06bcea93 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_00.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_00.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_01.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_01.png index 130529175ff6..0db2078302c2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_01.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_01.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_02.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_02.png index ede3d2a5a8fe..96fa961bdf37 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_02.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_02.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_03.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_03.png index ab73c030ccc6..f0453bb9e2c8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_03.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_03.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_04.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_04.png index e32ecd0e488a..d7d702c66aa2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_04.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_04.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_05.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_05.png index f26a39e6e6c1..3ee509585e70 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_05.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_05.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_06.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_06.png index eefb020b9725..987f70d02c4a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_06.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_06.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_07.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_07.png index 823a7a00168e..c0859b4e4ce1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_07.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_07.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_08.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_08.png index 49fef9e05caa..9a877363e441 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_08.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_08.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_09.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_09.png index d46bc06477b8..28e4a8498f10 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_09.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_09.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_10.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_10.png index 749520cb98a1..b1fafe4588f6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_10.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_10.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_11.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_11.png index 92c96f37717d..b787af3a3326 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_11.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_11.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_12.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_12.png index 5f6b6a0588af..756c5e56097a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_12.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_12.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_13.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_13.png index c6259abbad1d..d1e8a49df318 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_13.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_13.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_14.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_14.png index aab07321f8f9..5f8051886104 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_14.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_14.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_15.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_15.png index c16668aa71f1..1935554ce8c5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_15.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_15.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_16.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_16.png index 4e590017f35b..ad942a517296 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_16.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_16.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_17.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_17.png index bb2945a738f7..12abdae2e203 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_17.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_17.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_18.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_18.png index a6de87719ce2..1ac3d5c843a8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_18.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_18.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_19.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_19.png index 6d376a469929..422d5d8a9c1c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_19.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_19.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_20.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_20.png index 0c3816d0b4ec..6d227c447fdb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_20.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_20.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_21.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_21.png index 4a756814afd6..ec2f3c06eea9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_21.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_21.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_22.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_22.png index 8c4100e448ff..17bb6fa58f3e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_22.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_22.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_23.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_23.png index a0b1d6191831..115074d06969 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_23.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_23.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_24.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_24.png index 75360ea2e688..4bd7f0e12d83 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_24.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_24.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_25.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_25.png index eed11d8ef86a..78e218f05b39 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_25.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_25.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_26.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_26.png index 324577a22bcd..db9b855e38c2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_26.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_26.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_27.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_27.png index b93a9e955600..1e7de3efd59a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_27.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_27.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_28.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_28.png index fb0de2d3ac87..fbaeb0b062f0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_28.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_28.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_29.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_29.png index b9d50284678d..b77ab543985e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_29.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_29.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_30.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_30.png index 6f54263613e0..ef5764e04c62 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_30.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_30.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_31.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_31.png index a59b0081b837..940fae6d0779 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_31.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_31.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_32.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_32.png index b56de1e4c108..a9c287089828 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_32.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_32.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_33.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_33.png index eee033aaf73b..8230ca5ae81f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_33.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_33.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_34.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_34.png index 281880dcf979..bc6804e51b44 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_34.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_34.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_35.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_35.png index 39fe61d4191c..6fd2a414526a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_35.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_35.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_36.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_36.png index 273770bc08b8..1acf93778357 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_36.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_36.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_37.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_37.png index f8126567e91f..8c02b7fe9879 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_37.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_37.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_38.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_38.png index cd6de3c09052..9c8f9fade93d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_38.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_38.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_39.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_39.png index 1e103ff391cd..d3e823c4257a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_39.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_39.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_40.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_40.png index edbf803f4842..590425ecdc52 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_40.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_40.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_41.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_41.png index c13628c8aba5..337b9f3150a6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_41.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_41.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_42.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_42.png index 729d3b8ae0f9..9d33f53d5558 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_42.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_42.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_43.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_43.png index 54840062e1be..e3bec1bcadb3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_43.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_43.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_44.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_44.png index 90fc7d785c5f..15c2c46d6894 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_44.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_44.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_45.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_45.png index 7a89af4e1cae..8470d37ca0e6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_45.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_45.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_46.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_46.png index a2898a570209..8cc41c6d6840 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_46.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_46.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_47.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_47.png index 1be8f13ce6a4..8327a7d31b4a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_47.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_47.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_48.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_48.png index 63a17add745f..64c653e67e5e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_48.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_48.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_49.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_49.png index 88735677a00b..e23a422a745c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_49.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_49.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_50.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_50.png index 4d5497c5be86..9423513dbdff 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_50.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_50.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_51.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_51.png index fab0b18f5c16..03c7e22b0ca6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_51.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_51.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_52.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_52.png index a9fcef2631bb..ef8cbc4c2b19 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_52.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_52.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_53.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_53.png index 377cfc2a4e9e..aaf1e3dd426c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_53.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_53.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_54.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_54.png index b3afae56f1ac..54595c34978b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_54.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_54.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_55.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_55.png index 1f4981d2c7b2..abcf618d25d2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_55.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_55.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_56.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_56.png index d1b051c107dd..356a88087e8a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_56.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_56.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_57.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_57.png index 1428e8ae5b71..bd7d2103faa0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_57.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_57.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_58.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_58.png index a0f9dba5c5d3..512aa9b0a219 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_58.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_58.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_59.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_59.png index e98f19f58e2c..d2b1aa74e81a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_59.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_59.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_00.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_00.png index f8ddd1da3ed9..7109d54ec56a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_00.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_00.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_01.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_01.png index 0ec803064fc9..f73e3999768b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_01.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_01.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_02.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_02.png index c6d504d82cd3..01ccce3df1d3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_02.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_02.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_03.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_03.png index bdd23cc0e018..9f6a70b1076a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_03.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_03.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_04.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_04.png index 1d8851d50224..89237266990c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_04.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_04.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_05.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_05.png index 24b23378acfa..fec089302890 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_05.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_05.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_06.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_06.png index 2eb1df03f66f..49529796b0ed 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_06.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_06.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_07.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_07.png index e1b4ce105692..2438d393a245 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_07.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_07.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_08.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_08.png index 69ec8ed916a0..dba202a996a1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_08.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_08.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_09.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_09.png index e42fa46600e7..e4f2b6d82cdd 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_09.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_09.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_10.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_10.png index 988bb9d7f303..422a8ae60405 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_10.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_10.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_11.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_11.png index 231f1a2a32d7..4e10c41375e1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_11.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_11.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_12.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_12.png index a0cdbcb964a1..10ec61fd88c5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_12.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_12.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_13.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_13.png index ccceaea3ceea..72d44f492074 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_13.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_13.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_14.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_14.png index 4ede1596f4f9..3299b4305f24 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_14.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_14.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_15.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_15.png index 6df1e731ec1f..6ad62be433e3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_15.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_15.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_16.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_16.png index 6263b84873fb..f8f1bb1cb7f2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_16.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_16.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_17.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_17.png index 84b0ab14907e..239e6b7b7fb0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_17.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_17.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_18.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_18.png index a82ac878eda9..b6a3d0cb4607 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_18.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_18.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_19.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_19.png index 02cea4a1ba5e..1fd70f56891e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_19.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_19.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_20.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_20.png index 0c3816d0b4ec..6d227c447fdb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_20.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_20.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_21.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_21.png index 4a756814afd6..ec2f3c06eea9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_21.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_21.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_22.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_22.png index 8c4100e448ff..17bb6fa58f3e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_22.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_22.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_23.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_23.png index a0b1d6191831..115074d06969 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_23.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_23.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_24.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_24.png index 75360ea2e688..4bd7f0e12d83 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_24.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_24.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_25.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_25.png index eed11d8ef86a..78e218f05b39 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_25.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_25.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_26.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_26.png index 324577a22bcd..db9b855e38c2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_26.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_26.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_27.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_27.png index b93a9e955600..1e7de3efd59a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_27.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_27.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_28.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_28.png index fb0de2d3ac87..fbaeb0b062f0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_28.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_28.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_29.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_29.png index b9d50284678d..b77ab543985e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_29.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_29.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_30.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_30.png index 6f54263613e0..ef5764e04c62 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_30.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_30.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_31.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_31.png index a59b0081b837..940fae6d0779 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_31.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_31.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_32.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_32.png index b56de1e4c108..a9c287089828 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_32.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_32.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_33.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_33.png index eee033aaf73b..8230ca5ae81f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_33.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_33.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_34.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_34.png index 281880dcf979..bc6804e51b44 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_34.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_34.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_35.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_35.png index a4103c94eace..e01a3737f15a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_35.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_35.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_36.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_36.png index 273770bc08b8..1acf93778357 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_36.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_36.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_37.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_37.png index f8126567e91f..8c02b7fe9879 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_37.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_37.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_38.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_38.png index cd6de3c09052..9c8f9fade93d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_38.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_38.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_39.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_39.png index 1e103ff391cd..d3e823c4257a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_39.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_39.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_40.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_40.png index edbf803f4842..590425ecdc52 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_40.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_40.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_41.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_41.png index c13628c8aba5..337b9f3150a6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_41.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_41.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_42.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_42.png index 729d3b8ae0f9..9d33f53d5558 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_42.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_42.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_43.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_43.png index 54840062e1be..e3bec1bcadb3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_43.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_43.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_44.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_44.png index 90fc7d785c5f..15c2c46d6894 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_44.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_44.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_45.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_45.png index 7a89af4e1cae..8470d37ca0e6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_45.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_45.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_46.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_46.png index a2898a570209..8cc41c6d6840 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_46.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_46.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_47.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_47.png index 1be8f13ce6a4..8327a7d31b4a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_47.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_47.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_48.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_48.png index 63a17add745f..64c653e67e5e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_48.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_48.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_49.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_49.png index 88735677a00b..e23a422a745c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_49.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_49.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_50.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_50.png index 4d5497c5be86..9423513dbdff 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_50.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_50.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_51.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_51.png index fab0b18f5c16..03c7e22b0ca6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_51.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_51.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_52.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_52.png index a9fcef2631bb..ef8cbc4c2b19 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_52.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_52.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_53.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_53.png index 377cfc2a4e9e..aaf1e3dd426c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_53.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_53.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_54.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_54.png index b3afae56f1ac..54595c34978b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_54.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_54.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_55.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_55.png index 1f4981d2c7b2..abcf618d25d2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_55.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_55.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_56.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_56.png index d1b051c107dd..356a88087e8a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_56.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_56.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_57.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_57.png index 1428e8ae5b71..bd7d2103faa0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_57.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_57.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_58.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_58.png index a0f9dba5c5d3..512aa9b0a219 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_58.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_58.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_59.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_59.png index e98f19f58e2c..d2b1aa74e81a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_59.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_59.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.pdf index 1dcab930d681..69b52f13b300 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.png index 9aba6eedd031..03ef7fcdc46a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.svg index 32cdd2c5dfb2..6742e2fce3ad 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.svg @@ -10,222 +10,219 @@ - - + - - - - - + + - + + + - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.png index b90c0f1d3956..5b2e205ebcda 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.svg index 24d898f909b6..0381c1a1f976 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,26 @@ z + - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.png index 354ff9319488..6aeebd0e7716 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.svg index a2d5d97ac3f4..7ebbe3ed270b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.svg @@ -5,7 +5,7 @@ @@ -20,13 +20,6 @@ z - - - +" id="DejaVuSans-24"/> - + + + + - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.png index e12507241bd5..e826523b4c0d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.svg index caef347e9e9f..6725ad6a9a21 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.svg @@ -10,219 +10,214 @@ - - + + + - - - - +M 23.1875 41.3125 +L 23.1875 66.890625 +Q 20.125 66.546875 17.265625 64.765625 +Q 14.40625 62.984375 12.734375 60.21875 +Q 11.078125 57.46875 11.078125 54.203125 +Q 11.078125 44.484375 23.1875 41.3125 +" id="Cmr10-24"/> - - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.png index 9817ba4f84b6..acfd8bd1ef37 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.svg index 115082a2f86f..8862900f307d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.svg @@ -10,136 +10,135 @@ - - - + + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.png index ff8b3962e1f9..599433f3ae51 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.svg index 85243d1773e0..d8d1df253171 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.svg @@ -5,7 +5,7 @@ @@ -20,66 +20,6 @@ z - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.png index 6e479476a94c..e3d5b57f7adf 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.svg index b381e4e73337..595db0c6658a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.svg @@ -5,7 +5,7 @@ @@ -20,19 +20,6 @@ z - + + + + - - - - + - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.pdf index 0313d072518d..0d7cdaaa380c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.png index 959366a66e61..9c642c8ac778 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.svg index 73f56fff3231..aa615224351e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.svg @@ -10,207 +10,204 @@ - - - - - - + + + + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.png index 074852acd4d3..e4fc2bfaa1c8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.svg index ac2a1f832d48..ea7b427cbf53 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.svg @@ -10,244 +10,239 @@ - - - - + - + - +" id="Cmr10-78"/> - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.pdf index dd3bb4a62215..6a2b42c8e703 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.png index 1e9a5f0d9365..8c1c9d9f8f91 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.svg index 1eb6ac77cc93..d81ae804c81b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.svg @@ -10,142 +10,141 @@ - - - + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.png index ccd18b806040..a3f8f96b1eeb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.svg index a6e343c927a5..03adb112c33c 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.svg @@ -10,327 +10,323 @@ - - - - - - - - - + + + + + + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.png index e149f1c46913..b7b2828cc4b6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.svg index c3c0de84e6fc..534378a4fe6e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.svg @@ -10,338 +10,327 @@ - - - + - - + + + + - - + - - - + - + +" id="Cmr10-29"/> - - - - - - - - - - - - + + + + + + + + + + + - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.png index 18bdef4d61f6..5494fb01543c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.svg index cf43e75e1b50..6987539b49f5 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.svg @@ -10,129 +10,127 @@ - - - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.png index adf74866733f..eb0726d030b8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.svg index d98df79f3c10..a3e3130c1c64 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.svg @@ -10,240 +10,236 @@ - - - + + + - + - + - - - + - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.png index 58f75a2e21c7..025350125c53 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.svg index f6567f61b7d6..7010d80e9860 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,46 @@ z + - - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.png index 798c75d3e6b3..6f60b499475b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.svg index 8a1da949b481..f5002727566e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,46 @@ z + - - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.png index 89ea157c78e3..c80e64a64251 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.svg index 415e8ec04c9e..2f4280c892ba 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,100 @@ z + + - - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.png index 89ea157c78e3..c80e64a64251 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.svg index 958844043027..d3d1185a6595 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,100 @@ z + + - - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.pdf index 869ea8c2675f..5753c8eb1c86 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.png index bd164b15e828..bb72bc66a321 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.svg index fe18ef8ed02a..1e6b1af28d07 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,117 @@ z + + + - - - - + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.pdf index 3c5d8a6ba98f..8af0bdc88abd 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.png index 1bcf78a080bc..d6049a34bf34 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.svg index b91d63b582ef..52666d5df0ff 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.svg @@ -10,418 +10,409 @@ - - - + + - - - - + + + - - - - - - - - - - - - - - + + + + + + + + + + + - - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.png index c0295ba56e67..c1580b8921f2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.svg index 80a0f849b363..5b560ffaf297 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.svg @@ -5,7 +5,7 @@ @@ -20,220 +20,6 @@ z - - - - - - - + - + +" id="Cmr10-32"/> + - - - - - + + +" id="Cmmi10-c1"/> + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.png index b8d97b0ce19c..209685e97172 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.svg index d135d49ec0d7..6967f80a1186 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.svg @@ -5,7 +5,7 @@ @@ -20,360 +20,6 @@ z - - - - - - - - - - - - - - - + + + - + + + + - + + + + + + - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.pdf index 1d6230b1b3b8..3e03c8d6ab32 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.png index 65c5252619aa..4a029269a72b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.svg index 960f97f8d34e..9726fe044aab 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.svg @@ -5,7 +5,7 @@ @@ -20,108 +20,117 @@ z - - + + + - - - +" id="Cmr10-32"/> - - - + + +" id="Cmr10-6e"/> + + + - - - - +Q 63.625 40.71875 53.609375 23.6875 +z +" id="Cmsy10-31"/> + + - + - +" id="Cmr10-2b"/> - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.png index 9aeaceb7e2a9..0317cb99e1c0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.svg index 7056b2d159cf..9d57faac5f18 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.svg @@ -10,312 +10,302 @@ - - - - - + - - + + + - + - - - + + - + - - + + + +M 52.203125 31.203125 +L 52.203125 0 +L 43.21875 0 +L 43.21875 8.296875 +Q 40.140625 3.328125 35.546875 0.953125 +Q 30.953125 -1.421875 24.3125 -1.421875 +Q 15.921875 -1.421875 10.953125 3.296875 +Q 6 8.015625 6 15.921875 +Q 6 25.140625 12.171875 29.828125 +Q 18.359375 34.515625 30.609375 34.515625 +L 43.21875 34.515625 +L 43.21875 35.40625 +Q 43.21875 41.609375 39.140625 45 +Q 35.0625 48.390625 27.6875 48.390625 +Q 23 48.390625 18.546875 47.265625 +Q 14.109375 46.140625 10.015625 43.890625 +L 10.015625 52.203125 +Q 14.9375 54.109375 19.578125 55.046875 +Q 24.21875 56 28.609375 56 +Q 40.484375 56 46.34375 49.84375 +Q 52.203125 43.703125 52.203125 31.203125 +" id="DejaVuSans-61"/> + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.png index de11df69645d..f5b4782e24b6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.svg index 80f33c3a5406..54945dfbc550 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.svg @@ -5,7 +5,7 @@ @@ -20,64 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.pdf index 0960ff881cf7..2403e1785be7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.png index 8939d8be8a0a..92879c99c47f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.svg index f1f74c59b2c1..8dd52fd8e09a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.svg @@ -5,7 +5,7 @@ @@ -20,24 +20,72 @@ z - + +" id="Cmr10-2b"/> + - - - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.pdf index 93611dd9c7ed..f2bdd2ff8de6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.png index 4bac915baff1..c4a7b27248a3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.svg index 50e8f5b6448b..61398684e63e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.svg @@ -10,350 +10,344 @@ - - - - - - - + + - + + + + - - - + - + + - - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.png index 3aacd832366e..b0baef84e4a3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.svg index c9a1108ac4cd..605c0a77fc1b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,26 @@ z + - - - + - + + - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.pdf index 8aeff774097e..d3eb036d1bc8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.png index 52a5497f2c08..0875d535b4ec 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.svg index 0fc25db66695..90c33c1c7991 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.svg @@ -10,360 +10,355 @@ - - - - + + + + - - - - + + - - - - - - - - - - + + + + + + + + + - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.png index dffb1c0e87fc..090af7a1ffd0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.svg index 6728021d3f8b..555a70967bb7 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,88 @@ z + + - + +" id="Cmr10-6c"/> + - - - - - +L 30.8125 0 +L 30.8125 3.515625 +Q 34.234375 3.515625 36.421875 4.046875 +Q 38.625 4.59375 38.625 6.6875 +L 38.625 30.421875 +Q 38.625 35.296875 37.203125 38.453125 +Q 35.796875 41.609375 31.390625 41.609375 +Q 25.59375 41.609375 21.84375 36.96875 +Q 18.109375 32.328125 18.109375 26.421875 +L 18.109375 6.6875 +Q 18.109375 4.59375 20.3125 4.046875 +Q 22.515625 3.515625 25.875 3.515625 +L 25.875 0 +z +" id="Cmr10-6d"/> - - - - + + + + - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.png index 631e206df547..c160c75b2d2c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.svg index dfa9e2cdb658..c0d0e3b91162 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.svg @@ -5,7 +5,7 @@ @@ -20,83 +20,6 @@ z - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.png index c059184a1365..b7f10201a37a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.svg index 9ea6c9ba17e7..25ef4a4827f9 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.svg @@ -5,7 +5,7 @@ @@ -83,9 +83,9 @@ Q 14.984375 -12.9375 13.390625 -14.71875 Q 11.8125 -16.5 9.71875 -16.5 " id="Cmmi10-66"/> - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.png index 833bc5ab9327..7ae2d5ac38b2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.svg index 294c60b8d314..2ea4525b7595 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,100 @@ z + + - - - - - - - - - + + + + + + + @@ -20,63 +20,6 @@ z - - - + + + - - - - - - - - + + + + + + + + @@ -20,23 +20,58 @@ z - +" id="Cmsy10-31"/> - +" id="Cmex10-73"/> + + - - - - - - - - - - - + + + + + + + + + - - - - - - + + + - - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.png index 8eb180bb3a17..642cb03ed18b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.svg index 2132548aaf4e..b01cbf47dee0 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.svg @@ -10,155 +10,151 @@ - - - + - - - - - + + + + - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.png index 615ea93c616a..9bc3c8a86083 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.svg index cd4e3cdefe71..3972399557bd 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.svg @@ -5,7 +5,7 @@ @@ -20,16 +20,6 @@ z - - - + + - +" id="Cmr10-31"/> - - - - - +" id="Cmr10-32"/> + + + + - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -65,69 +65,72 @@ Q 11.28125 14.359375 11.28125 10.5 Q 11.28125 7.03125 12.765625 4.265625 Q 14.265625 1.515625 17.484375 1.515625 " id="Cmmi10-64"/> - - - + - - - + + - + + + + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.pdf index e35e01abc8a3..15d48dd37220 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.png index c373eeadb101..03e354807550 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.svg index 1b504c9926fb..c63ca4808ce4 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.svg @@ -10,301 +10,299 @@ - - - - - - - + + + - - + + + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.png index 05bcb4e7e0df..4e1ef905dc24 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.svg index 1d96d7a00700..2b9821215581 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.svg @@ -10,420 +10,404 @@ - - - - - - + - + - + - - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.png index d0dc862e9b7a..427df910c3db 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.svg index 5c02299e677a..c7c47198dfef 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.svg @@ -10,932 +10,926 @@ - - - - - - - - - - - - - - - - - + + + + - - + + + - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - + + + + + - - + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.png index 212f23d0971b..e5043a309114 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.svg index e9112749949b..1a2a7071ce39 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,100 @@ z + + - - - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.png index cab09c206fe7..7a2023cff775 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.svg index 9607e277899d..7d88510ba3e6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,46 @@ z + - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.pdf index 18524b74434c..45e9273a6b15 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.png index 41e648a1387d..9030fa328aad 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.svg index acd964235b49..259ff6e2eb7d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,60 @@ z + + + + - - - - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.pdf index 8f454ead662c..838583415be5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.png index 1fd4cef31d9a..11a1fdef06d2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.svg index ffc4e85226aa..3fd1ab4133a3 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,60 @@ z + + + + - - - - - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.png index aa51fa90b341..f62abc8591a7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.svg index 0d8f64c05451..544abd4d993b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.svg @@ -10,162 +10,159 @@ - - - - - + + + - - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.pdf index e49fe5b8e13a..3a5ac12ebf60 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.png index dcdee90277c6..9a742fcf7bdf 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.svg index e3ef75edfb9e..b56d1541d6e2 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.svg @@ -5,7 +5,7 @@ @@ -20,103 +20,6 @@ z - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.pdf index bdf6af470df5..60136d38d843 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.png index dcdee90277c6..9a742fcf7bdf 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.svg index e3ef75edfb9e..b56d1541d6e2 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.svg @@ -5,7 +5,7 @@ @@ -20,103 +20,6 @@ z - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.png index 2d756f3543cf..bca25094dc2b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.svg index 50cf59c93c22..3c14fc09b27b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.svg @@ -10,244 +10,241 @@ - - - - - + - - + + + + - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.png index b7971b05210b..fca117d64542 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.svg index e482467a30f6..055302fd8458 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.svg @@ -5,7 +5,7 @@ @@ -20,27 +20,72 @@ z - + + - - - + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -20,6 +20,100 @@ z + + - - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.pdf index 604a50841753..9ce5d2ad3c31 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.png index db583da27ca4..6b32a18b6ff2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.svg index 1eed81c5e202..d0b787e8cfc3 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.svg @@ -5,7 +5,7 @@ @@ -20,46 +20,38 @@ z - + + - - - + + - + - + - +M 24.90625 1.515625 +Q 28.375 1.515625 31.34375 4.375 +Q 34.328125 7.234375 36.1875 10.796875 +Q 37.546875 13.484375 38.734375 17.359375 +Q 39.9375 21.234375 40.8125 25.625 +Q 41.703125 30.03125 41.703125 32.625 +Q 41.703125 34.90625 41.09375 36.90625 +Q 40.484375 38.921875 39.09375 40.265625 +Q 37.703125 41.609375 35.40625 41.609375 +Q 31.734375 41.609375 28.484375 38.984375 +Q 25.25 36.375 22.609375 32.515625 +L 22.609375 32.171875 +L 17.09375 10.109375 +Q 17.78125 6.546875 19.734375 4.03125 +Q 21.6875 1.515625 24.90625 1.515625 +" id="Cmmi10-70"/> - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.png index 1e1b37467ac2..be513275352c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.svg index 89c1766b6dc1..f8e40e14e66c 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.svg @@ -5,7 +5,7 @@ @@ -20,47 +20,21 @@ z - - +" id="Cmex10-71"/> + - - + +" id="Cmex10-72"/> - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + @@ -20,6 +20,18 @@ z + + + + + + - - + - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -20,6 +20,46 @@ z + - - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.png index 339ad2d335de..41caf551d86c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.svg index 9ac683d7e4c5..32d68fbc76e2 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,67 @@ z + + - - + - - + - - - - - - - + + + + + + + @@ -75,6 +75,48 @@ Q 15.71875 -210.6875 15.71875 -212.109375 Q 15.71875 -214.265625 14.25 -215.671875 Q 12.796875 -217.09375 10.59375 -217.09375 " id="Cmex10-5a"/> + - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.png index 09327affddee..9dafb9b347bc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.svg index 610d11b592c9..9d8ac3aca8a7 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,46 @@ z + - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.png index af3f32b9132d..a42642683bcc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.svg index 3f57991e2c39..3f68e6f4ef92 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,46 @@ z + - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.pdf index 41c05fec08c5..8fb302b4c7b2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.png index 4947ebaca2bb..f799992f2885 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.svg index 85a84bd86b41..d505c7476f0d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,52 @@ z + - - + +" id="Cmr10-2b"/> - - - +" id="Cmr10-34"/> + - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.png index 8378b093c11b..139e9670f16a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.svg index 6b5cf208569c..0b924914f5bf 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.svg @@ -5,7 +5,7 @@ @@ -20,67 +20,6 @@ z - - - + + + - + - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.png index 783a51ce5ce2..94cb9cec5ec1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.svg index 68649f9c5a83..01868ac6e84b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.svg @@ -5,7 +5,7 @@ @@ -145,12 +145,12 @@ Q 6.15625 4.296875 5 4.78125 Q 3.859375 5.28125 3.515625 5.421875 " id="Cmsy10-30"/> - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.pdf index 7b1e0062fa20..4ac8a338c17b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.png index 40e26735c6ed..113b8c049056 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.svg index 215661c9013d..3b6f49d1115c 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.svg @@ -10,164 +10,159 @@ - - - - - - + + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.pdf index 152b7cc7817b..0412c6fe57d7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.png index b2bee6967d8b..c7355b27ad22 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.svg index 82f69bf1544b..a42fa59d5524 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.svg @@ -10,216 +10,211 @@ - - + - - + + - - - - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.pdf index 27cb88a69050..2d3669d5dfd3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.png index ad4c175bb217..2bd94196b30a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.svg index 8a99984fbe56..b6bc6f0cf701 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.svg @@ -10,155 +10,154 @@ - - - - + + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_66.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_66.png index cb6c33352136..fb9f1ce54186 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_66.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_66.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_66.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_66.svg index 64095087cc28..68674dc6ae48 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_66.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_66.svg @@ -10,193 +10,192 @@ - - - - - + + + + - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.pdf index a9af88388a16..efb88619b2ab 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.png index 5fbff50e3727..bb0f7f544f50 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.svg index ed149e246365..85b254513ebb 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.svg @@ -5,7 +5,7 @@ @@ -20,46 +20,58 @@ z - +Q 3.171875 27.78125 2.921875 28.140625 +Q 2.6875 28.515625 2.6875 28.8125 +Q 3.765625 33.15625 4.765625 36.171875 +Q 5.765625 39.203125 7.890625 41.6875 +Q 10.015625 44.1875 13.1875 44.1875 +Q 16.9375 44.1875 19.8125 41.8125 +Q 22.703125 39.453125 22.703125 35.796875 +Q 25.6875 39.703125 29.6875 41.9375 +Q 33.6875 44.1875 38.1875 44.1875 +Q 41.75 44.1875 44.328125 42.96875 +Q 46.921875 41.75 48.359375 39.28125 +Q 49.8125 36.8125 49.8125 33.40625 +Q 49.8125 29.296875 47.96875 23.484375 +Q 46.140625 17.671875 43.40625 10.5 +Q 42 7.234375 42 4.5 +Q 42 1.515625 44.28125 1.515625 +Q 48.1875 1.515625 50.796875 5.703125 +Q 53.421875 9.90625 54.5 14.703125 +Q 54.6875 15.28125 55.328125 15.28125 +L 56.5 15.28125 +Q 56.890625 15.28125 57.15625 15.03125 +Q 57.421875 14.796875 57.421875 14.40625 +Q 57.421875 14.3125 57.328125 14.109375 +Q 55.953125 8.453125 52.5625 3.65625 +Q 49.171875 -1.125 44.09375 -1.125 +Q 40.578125 -1.125 38.078125 1.296875 +Q 35.59375 3.71875 35.59375 7.171875 +Q 35.59375 9.03125 36.375 11.078125 +Q 37.640625 14.359375 39.28125 18.890625 +Q 40.921875 23.4375 41.96875 27.578125 +Q 43.015625 31.734375 43.015625 34.90625 +Q 43.015625 37.703125 41.859375 39.65625 +Q 40.71875 41.609375 37.984375 41.609375 +Q 34.328125 41.609375 31.25 39.984375 +Q 28.171875 38.375 25.875 35.71875 +Q 23.578125 33.0625 21.6875 29.390625 +L 14.890625 2.203125 +Q 14.546875 0.828125 13.34375 -0.140625 +Q 12.15625 -1.125 10.6875 -1.125 +Q 9.46875 -1.125 8.59375 -0.34375 +Q 7.71875 0.4375 7.71875 1.703125 +" id="Cmmi10-6e"/> - - - + + + +" id="Cmsy10-2219"/> + + + - - - - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_68.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_68.png index 240271c2f7fc..ae23ecedc0ce 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_68.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_68.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_68.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_68.svg index 56acd12fdf36..1d225fbb273a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_68.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_68.svg @@ -5,155 +5,155 @@ - - + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_69.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_69.png index 9f2de65e96f2..ab07dbd94bad 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_69.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_69.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_69.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_69.svg index 3221b4c2a8da..b2b31d9f253b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_69.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_69.svg @@ -5,136 +5,136 @@ - - - - - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_70.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_70.png index 55986a513061..24e94be731ae 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_70.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_70.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_70.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_70.svg index ea4591841c6d..17fd88e436bd 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_70.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_70.svg @@ -5,92 +5,92 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.pdf index 60a7caa4e643..e48ff44aec43 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.png index c2e39664b9b1..68061447e56f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.svg index 4d90a4231034..2b6c12ec67df 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_71.svg @@ -5,146 +5,146 @@ - - - - - - - + + + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.pdf index 02a8b8d87122..5284c8c9f2d6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.png index f1a952691003..a40ad0c281f6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.svg index d4ce56d639c2..7f218efb93a6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_72.svg @@ -5,131 +5,131 @@ - - - - + - - + +M 40.5 -4.203125 +Q 40.5 -6.796875 38.59375 -8.6875 +Q 36.703125 -10.59375 34.09375 -10.59375 +Q 31.59375 -10.59375 29.6875 -8.640625 +Q 27.796875 -6.703125 27.796875 -4.203125 +Q 27.796875 -1.296875 29.640625 0.390625 +Q 31.5 2.09375 34.09375 2.09375 +Q 36.796875 2.09375 38.640625 0.4375 +Q 40.5 -1.203125 40.5 -4.203125 +" id="STIXGeneral-Regular-2251"/> - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_73.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_73.png index f0499bef4aa9..ab843c623b6a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_73.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_73.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_73.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_73.svg index c5a5500cedcc..a0aea5dee955 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_73.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_73.svg @@ -5,7 +5,7 @@ @@ -20,161 +20,111 @@ z - - - + + + - - + + + - + - - - - +Q 31.390625 1.515625 33.796875 1.515625 +Q 38.484375 1.515625 42.15625 5.640625 +Q 45.84375 9.765625 47.015625 14.703125 +Q 47.21875 15.28125 47.796875 15.28125 +L 49.03125 15.28125 +Q 49.421875 15.28125 49.65625 15.015625 +Q 49.90625 14.75 49.90625 14.40625 +Q 49.90625 14.3125 49.8125 14.109375 +Q 48.390625 8.15625 43.84375 3.515625 +Q 39.3125 -1.125 33.59375 -1.125 +Q 29.9375 -1.125 26.984375 0.84375 +Q 24.03125 2.828125 22.796875 6.203125 +Q 21.234375 3.265625 18.46875 1.0625 +Q 15.71875 -1.125 12.59375 -1.125 +Q 10.453125 -1.125 8.171875 -0.359375 +Q 5.90625 0.390625 4.484375 1.953125 +Q 3.078125 3.515625 3.078125 5.90625 +Q 3.078125 8.25 4.703125 10.171875 +Q 6.34375 12.109375 8.796875 12.109375 +Q 10.453125 12.109375 11.578125 11.109375 +Q 12.703125 10.109375 12.703125 8.5 +Q 12.703125 6.390625 11.296875 4.828125 +Q 9.90625 3.265625 7.8125 2.875 +" id="Cmmi10-78"/> + - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_74.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_74.png index f0499bef4aa9..ab843c623b6a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_74.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_74.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_74.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_74.svg index 762e744cf96f..90f2ebf393dc 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_74.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_74.svg @@ -5,7 +5,7 @@ @@ -20,161 +20,111 @@ z - - - + + + - - + + + - + - - - - +Q 31.390625 1.515625 33.796875 1.515625 +Q 38.484375 1.515625 42.15625 5.640625 +Q 45.84375 9.765625 47.015625 14.703125 +Q 47.21875 15.28125 47.796875 15.28125 +L 49.03125 15.28125 +Q 49.421875 15.28125 49.65625 15.015625 +Q 49.90625 14.75 49.90625 14.40625 +Q 49.90625 14.3125 49.8125 14.109375 +Q 48.390625 8.15625 43.84375 3.515625 +Q 39.3125 -1.125 33.59375 -1.125 +Q 29.9375 -1.125 26.984375 0.84375 +Q 24.03125 2.828125 22.796875 6.203125 +Q 21.234375 3.265625 18.46875 1.0625 +Q 15.71875 -1.125 12.59375 -1.125 +Q 10.453125 -1.125 8.171875 -0.359375 +Q 5.90625 0.390625 4.484375 1.953125 +Q 3.078125 3.515625 3.078125 5.90625 +Q 3.078125 8.25 4.703125 10.171875 +Q 6.34375 12.109375 8.796875 12.109375 +Q 10.453125 12.109375 11.578125 11.109375 +Q 12.703125 10.109375 12.703125 8.5 +Q 12.703125 6.390625 11.296875 4.828125 +Q 9.90625 3.265625 7.8125 2.875 +" id="Cmmi10-78"/> + - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_75.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_75.png index 662746dad409..4bb8db402403 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_75.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_75.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_75.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_75.svg index 2d4b0d5d59f4..59cc5aaa18f3 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_75.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_75.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,126 @@ z + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_76.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_76.png index 31fbcde06bd3..d6c9b050cb1f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_76.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_76.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_76.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_76.svg index cd2c5e3f40a9..756e0dcf9cf8 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_76.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_76.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,68 @@ z + + +" id="DejaVuSans-65"/> + - - +" id="DejaVuSans-74"/> + - - - +M 9.421875 75.984375 +L 18.40625 75.984375 +L 18.40625 64.59375 +L 9.421875 64.59375 +z +" id="DejaVuSans-69"/> - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_77.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_77.png index 9d3870d24e09..9ed5a18bf57b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_77.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_77.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_77.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_77.svg index 198a2d907d89..f423ee824f38 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_77.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_77.svg @@ -5,7 +5,7 @@ @@ -20,55 +20,6 @@ z - - - - + - + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_78.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_78.png index e352272c8e36..2b486f43a174 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_78.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_78.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_78.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_78.svg index ca5a41e72cbd..4aba11d8621d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_78.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_78.svg @@ -5,7 +5,7 @@ @@ -32,32 +32,100 @@ Q 69.390625 24.265625 68.875 23.625 Q 68.359375 23 67.578125 23 z " id="Cmsy10-a1"/> - + +M 11.71875 12.40625 +L 22.015625 12.40625 +L 22.015625 4 +L 14.015625 -11.625 +L 7.71875 -11.625 +L 11.71875 4 +z +" id="DejaVuSans-3b"/> + - + - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_79.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_79.svg index 00820a25b39e..004cb96121cb 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_79.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_79.svg @@ -5,7 +5,7 @@ @@ -64,49 +64,46 @@ Q 26.90625 3.515625 26.21875 7.515625 Q 23.4375 3.5625 19.875 1.21875 Q 16.3125 -1.125 12.109375 -1.125 " id="Cmmi10-21"/> - - +" id="Cmr10-32"/> - +" id="Cmr10-31"/> + - - - - - - - + + + + + + + @@ -20,14 +20,36 @@ z - + +M 78.078125 12.40625 +L 88.484375 12.40625 +L 88.484375 0 +L 78.078125 0 +z +M 11.53125 12.40625 +L 21.921875 12.40625 +L 21.921875 0 +L 11.53125 0 +z +" id="DejaVuSans-2026"/> - - + +" id="DejaVuSans-Oblique-62"/> - - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_01.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_01.svg index 7eb4b45d8383..7279119df8df 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_01.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_01.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_02.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_02.svg index e581036bfe0a..6256e8eb0e8e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_02.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_02.svg @@ -5,7 +5,7 @@ @@ -20,50 +20,6 @@ z - - - - - + + + + + - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_03.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_03.svg index 5598a8a7875d..e345d442bb39 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_03.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_03.svg @@ -5,7 +5,7 @@ @@ -20,60 +20,6 @@ z - - - - + + + + - - - - - - - - - + + + + + + + + + @@ -20,20 +20,6 @@ z - + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_05.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_05.svg index 2d16b21c0484..1e21c64e72dc 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_05.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_05.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_06.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_06.svg index f4749f55a051..2e86884cbfae 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_06.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_06.svg @@ -5,7 +5,7 @@ @@ -36,6 +36,66 @@ L 50.875 54.6875 L 60.296875 54.6875 z " id="DejaVuSans-Oblique-79"/> + + + - - - - +" id="DejaVuSans-2f"/> - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_07.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_07.svg index 3bdb75260381..71a3e5e8454e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_07.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_07.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,18 @@ z - +" id="DejaVuSans-2190"/> + - - +" id="DejaVuSans-Oblique-78"/> - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_08.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_08.svg index 8b74881706a1..83042ffb18bb 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_08.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_08.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + - - - + + + - - + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_09.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_09.svg index 352da341ac2e..ba07d2851c47 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_09.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_09.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_10.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_10.svg index 771ac0be0f00..25bbe8c0c5e1 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_10.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_10.svg @@ -5,7 +5,7 @@ @@ -20,135 +20,6 @@ z - - - - - + + + + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_11.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_11.svg index bf24ee39c06e..8a382c658649 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_11.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_11.svg @@ -5,7 +5,7 @@ @@ -36,35 +36,17 @@ L 50.875 54.6875 L 60.296875 54.6875 z " id="DejaVuSans-Oblique-79"/> - - - + - - - + + + + + - - - - - - - - - - - + + + + + + + + + + + @@ -20,6 +20,17 @@ z + - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_13.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_13.svg index 0885d94fc2ab..3bcd182ac679 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_13.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_13.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,18 @@ z + - + - - + - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_14.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_14.svg index b8eaef102865..85aa1db9f499 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_14.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_14.svg @@ -5,7 +5,7 @@ @@ -58,9 +58,9 @@ Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 " id="DejaVuSans-32"/> - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_15.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_15.svg index 8bc59c85c0b9..a9af26b281d3 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_15.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_15.svg @@ -5,7 +5,7 @@ @@ -58,9 +58,9 @@ Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 " id="DejaVuSans-32"/> - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_16.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_16.svg index 90ff5ee2738c..952c0be7cf8b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_16.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_16.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_17.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_17.svg index 75ba162aff9c..8d54355ee65a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_17.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_17.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_18.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_18.svg index 41c197b7394b..c7717e0d9bc7 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_18.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_18.svg @@ -5,7 +5,7 @@ @@ -20,42 +20,6 @@ z - - - + + + - +" id="DejaVuSans-2b"/> - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_19.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_19.svg index 43a346048369..e84e22a05cca 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_19.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_19.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - - +" id="DejaVuSans-Oblique-78"/> - - + + + - - - - - - - - - - - + + + + + + + + + + + @@ -20,6 +20,98 @@ z + + + + + + + + + - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_21.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_21.svg index 95de8cf943aa..90f9b2cec969 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_21.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_21.svg @@ -5,7 +5,7 @@ @@ -20,139 +20,69 @@ z - - - - - - - - - - + + +" id="DejaVuSans-3d"/> - - + - - + + + + + +" id="DejaVuSans-2212"/> + + + - - + - + + - + - - +" id="DejaVuSans-Oblique-69"/> + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_22.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_22.svg index 0aafa473d57f..0543f2f6ba1a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_22.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_22.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,58 @@ z + + + + - - + - - - - +" id="DejaVuSans-31"/> - - +" id="DejaVuSans-Oblique-66"/> + - - +" id="DejaVuSans-2b"/> + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_23.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_23.svg index 2c6b919cab1a..77ded780c3f1 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_23.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_23.svg @@ -5,7 +5,7 @@ @@ -20,30 +20,12 @@ z - +" id="DejaVuSans-6c"/> - + +" id="DejaVuSans-56"/> + + + + - - - - - - - +" id="DejaVuSans-Oblique-69"/> + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_24.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_24.svg index de32993a08ef..fde9b084377c 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_24.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_24.svg @@ -5,7 +5,7 @@ @@ -20,16 +20,6 @@ z - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_25.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_25.svg index 80be4afd75c7..b50d99dca35b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_25.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_25.svg @@ -5,7 +5,7 @@ @@ -20,16 +20,6 @@ z - - - + + + - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_26.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_26.svg index dbeaaad8d525..5783739f94f4 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_26.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_26.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,110 @@ z + + + + + + - - - - - - - - - +" id="DejaVuSans-302"/> - +M -25 56 +z +" id="DejaVuSans-300"/> + + - - - + + + - - - + + + - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_27.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_27.svg index 182a4a8fb142..7a7b7ec42c25 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_27.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_27.svg @@ -5,7 +5,7 @@ @@ -34,49 +34,6 @@ L 30.8125 34.90625 L 49.125 54.6875 z " id="DejaVuSans-Oblique-78"/> - - - - +" id="DejaVuSans-72"/> - + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_28.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_28.svg index 543a493eccb3..1908e303136e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_28.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_28.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + + + + - - - - - - - - - - - - + + + + + + + + + @@ -20,20 +20,36 @@ z - +" id="DejaVuSans-6c"/> + - - - - + + + - - - - - + + + + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_30.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_30.svg index 7a3dbf0a65f7..13ba043bf787 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_30.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_30.svg @@ -5,7 +5,7 @@ @@ -114,10 +114,10 @@ Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 " id="DejaVuSans-30"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_31.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_31.svg index 53e6dab5013d..cedbd925cd50 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_31.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_31.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,19 @@ z + - - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_32.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_32.svg index 51e9ded69477..a0bf70e5a42b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_32.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_32.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - - + + - - - - - - - + + + + + + + @@ -20,17 +20,30 @@ z - +" id="DejaVuSans-35"/> + - - - + + - - - - - - - - + + + + + + + + @@ -20,6 +20,28 @@ z + - + - - - - - - - - - - + + + + + + + + + @@ -34,31 +34,6 @@ L 30.8125 34.90625 L 49.125 54.6875 z " id="DejaVuSans-Oblique-78"/> - - + + - - - - - - + + + + + + @@ -20,17 +20,6 @@ z - + - - - - + + + + @@ -20,69 +20,158 @@ z - + + - + - + - + + +" id="DejaVuSans-Oblique-55"/> + + + - - - +" id="DejaVuSansDisplay-222b"/> - - - +" id="DejaVuSans-Oblique-57"/> - - +M 10.59375 25.484375 +L 73.1875 25.484375 +L 73.1875 17.1875 +L 10.59375 17.1875 +z +" id="DejaVuSans-3d"/> + + - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -20,6 +20,20 @@ z + - - + + + +" id="DejaVuSans-Oblique-3bc"/> - - - - - - + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_39.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_39.svg index 71c565259eef..cc4f7e858da5 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_39.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_39.svg @@ -5,7 +5,7 @@ @@ -20,36 +20,50 @@ z - + +" id="DejaVuSans-Oblique-66"/> - - + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_40.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_40.svg index 35acbf49efa7..b96a9cfabfd6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_40.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_40.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,56 @@ z + + - - +" id="DejaVuSans-3a3"/> + + - - - - +" id="DejaVuSans-39b"/> - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_41.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_41.svg index f8c909317419..102ab3cbfb34 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_41.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_41.svg @@ -5,7 +5,7 @@ @@ -20,81 +20,27 @@ z - - - + + + - + - - +" id="DejaVuSans-Oblique-3c8"/> + - - +M 33.25 6.78125 +Q 38.765625 6.78125 43.5 11.8125 +Q 48.6875 17.4375 50.6875 27.296875 +Q 52.640625 37.0625 49.515625 42.78125 +Q 46.734375 47.796875 41.21875 47.796875 +z +M 24.3125 6.78125 +L 32.28125 47.796875 +Q 26.8125 47.796875 22.078125 42.78125 +Q 16.75 37.0625 14.890625 27.296875 +Q 13.03125 17.4375 16.0625 11.8125 +Q 18.796875 6.78125 24.3125 6.78125 +" id="DejaVuSans-Oblique-3d5"/> + + - - + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_42.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_42.svg index 400e4768bb66..b831ee81725e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_42.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_42.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_43.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_43.svg index 4af1bf152abc..36b72fd67053 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_43.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_43.svg @@ -5,7 +5,7 @@ @@ -32,29 +32,6 @@ L 12.5 0 L 2.6875 0 z " id="DejaVuSans-Oblique-46"/> - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_44.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_44.svg index 53cd07f250bd..33be61feb558 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_44.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_44.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - - - +" id="DejaVuSans-Oblique-78"/> + + - - - - - - - - + + + + + + + + @@ -20,20 +20,6 @@ z - - - +" id="DejaVuSans-Oblique-78"/> + + - - - - - - - - + + + + + + + + @@ -20,35 +20,6 @@ z - - + + - - - - - + + + + + @@ -20,6 +20,36 @@ z + + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -20,6 +20,36 @@ z + + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -20,25 +20,23 @@ z + - + - - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_50.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_50.svg index 1e2a2890fee8..e519ff37bfeb 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_50.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_50.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,17 @@ z - + - - - +" id="DejaVuSans-Oblique-78"/> + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -20,20 +20,6 @@ z - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_52.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_52.svg index b512e97ce756..653e54c4af27 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_52.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_52.svg @@ -5,7 +5,7 @@ @@ -36,6 +36,34 @@ Q 42.046875 56 43.453125 55.828125 Q 44.875 55.671875 46.296875 55.28125 z " id="DejaVuSans-Oblique-72"/> + - +" id="DejaVuSans-Oblique-6b"/> - - - - +" id="DejaVuSans-Oblique-6a"/> + + - +" id="DejaVuSans-Oblique-70"/> - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_53.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_53.svg index 9462ad942dac..7aace7112df2 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_53.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_53.svg @@ -5,7 +5,7 @@ @@ -20,34 +20,35 @@ z - - + +" id="DejaVuSans-2b"/> + - - +" id="STIXGeneral-Regular-221a"/> - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + @@ -20,68 +20,31 @@ z - - + - +" id="DejaVuSans-Oblique-78"/> - + + + + + + + - - - - - - +" id="DejaVuSans-2b"/> - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -58,11 +58,11 @@ Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 " id="DejaVuSans-32"/> - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_56.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_56.svg index cc1bf2ab72a8..9fe8b9f61490 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_56.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_56.svg @@ -5,7 +5,7 @@ @@ -20,30 +20,6 @@ z - - - + + + - - - - - - - + + + + + + + @@ -20,20 +20,40 @@ z - +" id="DejaVuSansDisplay-222b"/> + - - +" id="DejaVuSans-78"/> - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_58.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_58.svg index 2d2e5b02a750..f9a60f2e9a9f 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_58.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_58.svg @@ -5,7 +5,7 @@ @@ -74,10 +74,10 @@ Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 " id="DejaVuSans-32"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_59.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_59.svg index 1b80d9dde6ce..c44fb4c3bac2 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_59.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_59.svg @@ -5,7 +5,7 @@ @@ -74,10 +74,10 @@ Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 " id="DejaVuSans-32"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_60.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_60.svg index f6bc8ad8b381..189491319c10 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_60.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_60.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,45 @@ z + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_61.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_61.svg index 147f45e7a697..ae4164d53a41 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_61.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_61.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,58 @@ z + + + - - - +M 13.921875 21.09375 +Q 13.921875 14.015625 17.109375 10.0625 +Q 20.3125 6.109375 25.984375 6.109375 +Q 30.171875 6.109375 33.765625 8.125 +Q 37.359375 10.15625 40.09375 14.109375 +Q 42.96875 18.21875 44.625 23.578125 +Q 46.296875 28.953125 46.296875 34.1875 +Q 46.296875 40.96875 43.09375 44.765625 +Q 39.890625 48.578125 34.28125 48.578125 +Q 30.03125 48.578125 26.359375 46.578125 +Q 22.703125 44.578125 20.125 40.828125 +Q 17.28125 36.765625 15.59375 31.390625 +Q 13.921875 26.03125 13.921875 21.09375 +" id="DejaVuSans-Oblique-64"/> - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_62.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_62.svg index 43bbc45f9c7d..7df98284b67d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_62.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_62.svg @@ -5,7 +5,7 @@ @@ -81,12 +81,12 @@ Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 " id="DejaVuSans-33"/> - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_63.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_63.svg index 17d81b55712e..41161d814cec 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_63.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_63.svg @@ -5,7 +5,7 @@ @@ -20,16 +20,6 @@ z - - + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_64.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_64.svg index c8318ae85367..1076984aad69 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_64.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_64.svg @@ -5,7 +5,7 @@ @@ -31,6 +31,17 @@ L 73.1875 17.1875 L 10.59375 17.1875 z " id="DejaVuSans-3d"/> + - - + - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_65.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_65.svg index 101528925b2b..9da42f7afefd 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_65.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_65.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,44 @@ z + - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_66.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_66.svg index a12c0c5f7ea5..89e96a72bc99 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_66.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_66.svg @@ -5,7 +5,7 @@ @@ -20,59 +20,6 @@ z - - - + + + - + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_67.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_67.svg index ea4555326269..3855c7849e37 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_67.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_67.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,30 @@ z + + - + +M 18.703125 75.984375 +L 27.6875 75.984375 +L 25.484375 64.59375 +L 16.5 64.59375 +z +" id="DejaVuSans-Oblique-6a"/> - + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_68.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_68.svg index f87af40d2653..11181cad7666 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_68.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_68.svg @@ -5,7 +5,7 @@ @@ -20,17 +20,29 @@ z + + +M 19.5 -18.90625 +L 12.90625 -18.90625 +L 12.90625 69 +L 19.5 69 +z +" id="STIXGeneral-Regular-2016"/> - - +" id="DejaVuSans-2016"/> - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_69.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_69.svg index 3a5dd107dd17..925f4b764977 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_69.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_69.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,41 @@ z + + - - - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_70.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_70.svg index a941c2e10976..bacb38b65994 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_70.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_70.svg @@ -5,7 +5,7 @@ @@ -36,19 +36,19 @@ L 2.6875 0 z " id="DejaVuSans-Oblique-4d"/> - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_71.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_71.svg index c9991258f0f4..4134153405c0 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_71.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_71.svg @@ -5,7 +5,7 @@ @@ -20,16 +20,20 @@ z - - +M 12.890625 0 +L 30.515625 57.90625 +L 42.71875 57.90625 +L 60.296875 0 +L 50.78125 0 +L 36.625 45.90625 +L 22.40625 0 +z +" id="DejaVuSans-22bc"/> + - + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_72.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_72.svg index d140446fc695..5825b79e364a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_72.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_72.svg @@ -5,7 +5,7 @@ @@ -20,7 +20,22 @@ z - + - + - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_73.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_73.svg index f77275970905..50e79f2aff0d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_73.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_73.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,86 @@ z + + + + + + - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_74.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_74.svg index bf5dafe0f447..b7c59907144f 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_74.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_74.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,86 @@ z + + + + + + - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_75.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_75.svg index 892aa4955dc4..7d466c1d29f6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_75.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_75.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,52 @@ z + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_76.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_76.svg index 2f6346fcebc6..c3c2286094d6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_76.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_76.svg @@ -5,7 +5,7 @@ @@ -20,60 +20,6 @@ z - - - + + + - - - + + + - - - - - - - + + + + + + + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_77.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_77.svg index 5e74eea4574e..98902d769804 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_77.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_77.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,20 @@ z + - - - + + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_78.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_78.svg index 7d4c4b335833..62c5aed4788e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_78.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_78.svg @@ -5,7 +5,7 @@ @@ -20,44 +20,6 @@ z - - - - + + + + + - - - - - - - - - + + + + + + + + - - - - - - - + + + + + + + - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_79.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_79.svg index 54aaea97b6b9..f1e434b971d6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_79.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavusans_79.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,23 @@ z - + - + - - - - - - - + + + + + + + @@ -20,20 +20,6 @@ z - - - +" id="DejaVuSerif-2b"/> + + - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_01.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_01.svg index 22845e9084f7..732b26a74a2a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_01.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_01.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,26 @@ z + - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_02.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_02.svg index 47b3a1b48dbc..d90cc1ef0e25 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_02.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_02.svg @@ -5,7 +5,7 @@ @@ -20,44 +20,6 @@ z - - - - + + + + - + - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_03.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_03.svg index 903aadcaf9e6..be73fc0e656d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_03.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_03.svg @@ -5,7 +5,7 @@ @@ -33,48 +33,6 @@ L 49.421875 5.171875 L 49.421875 0 z " id="DejaVuSerif-31"/> - - + + - - - - - - - - - + + + + + + + + + @@ -62,9 +62,9 @@ L 25.484375 20.703125 z " id="DejaVuSerif-Italic-78"/> - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_05.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_05.svg index b5161c85d19e..a7d928c83fc4 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_05.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_05.svg @@ -5,7 +5,7 @@ @@ -20,29 +20,6 @@ z - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_06.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_06.svg index bd3d5dea0a8d..b362b6d7cf03 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_06.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_06.svg @@ -5,7 +5,7 @@ @@ -33,50 +33,73 @@ L 49.421875 5.171875 L 49.421875 0 z " id="DejaVuSerif-31"/> - - + + + - - +" id="DejaVuSerif-2a"/> - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_07.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_07.svg index de07314134cc..bcf053235632 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_07.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_07.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,12 @@ z + - - + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_08.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_08.svg index fc2b3bad24ee..39057ee12e5d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_08.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_08.svg @@ -5,7 +5,7 @@ @@ -20,38 +20,6 @@ z - - + + - +" id="DejaVuSans-78"/> - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_09.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_09.svg index 22304cec757e..a2d03e0c3785 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_09.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_09.svg @@ -5,7 +5,7 @@ @@ -62,15 +62,15 @@ L 25.484375 20.703125 z " id="DejaVuSerif-Italic-78"/> - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_10.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_10.svg index 79062e526f77..221396d5fb25 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_10.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_10.svg @@ -5,7 +5,7 @@ @@ -20,29 +20,35 @@ z - +M 20.515625 23.390625 +Q 20.515625 14.015625 24.09375 9.109375 +Q 27.6875 4.203125 34.515625 4.203125 +Q 41.40625 4.203125 44.9375 9.71875 +Q 48.484375 15.234375 48.484375 25.984375 +Q 48.484375 36.765625 44.9375 42.234375 +Q 41.40625 47.703125 34.515625 47.703125 +Q 27.6875 47.703125 24.09375 42.765625 +Q 20.515625 37.84375 20.515625 28.515625 +z +" id="DejaVuSerif-62"/> - - - +" id="DejaVuSerif-63"/> + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_11.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_11.svg index 573e6c4e5778..247850f199d2 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_11.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_11.svg @@ -5,7 +5,7 @@ @@ -20,16 +20,6 @@ z - - - + + + - - - + + + - - - - - - - - - - - + + + + + + + + + + + @@ -20,6 +20,17 @@ z + - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_13.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_13.svg index 8ec009c14829..f5955c84dd9b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_13.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_13.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,46 @@ z + + + - - - - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_14.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_14.svg index 9784782dc602..a786bf55a440 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_14.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_14.svg @@ -5,7 +5,7 @@ @@ -63,9 +63,9 @@ Q 21.09375 69.390625 17.28125 65.921875 Q 13.484375 62.453125 12.796875 55.515625 " id="DejaVuSerif-32"/> - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_15.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_15.svg index 501d3c67503c..41f940b81c8e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_15.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_15.svg @@ -5,7 +5,7 @@ @@ -63,9 +63,9 @@ Q 21.09375 69.390625 17.28125 65.921875 Q 13.484375 62.453125 12.796875 55.515625 " id="DejaVuSerif-32"/> - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_16.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_16.svg index f6ef257a1ce6..f0cfad12e26e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_16.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_16.svg @@ -5,7 +5,7 @@ @@ -86,10 +86,10 @@ Q 21.09375 69.390625 17.28125 65.921875 Q 13.484375 62.453125 12.796875 55.515625 " id="DejaVuSerif-32"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_17.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_17.svg index 138a8b89ca17..830da4fef055 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_17.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_17.svg @@ -5,7 +5,7 @@ @@ -86,10 +86,10 @@ Q 21.09375 69.390625 17.28125 65.921875 Q 13.484375 62.453125 12.796875 55.515625 " id="DejaVuSerif-32"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_18.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_18.svg index dca804b1f09b..0f68718b4d54 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_18.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_18.svg @@ -5,7 +5,7 @@ @@ -20,58 +20,6 @@ z - - - +" id="DejaVuSerif-31"/> - + + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_19.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_19.svg index 858341df7380..7c2a54665556 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_19.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_19.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - - + + + + - - - - - - - - - - - - - + + + + + + + + + + + @@ -20,80 +20,6 @@ z - - - - - + + + + - - - - - + +" id="DejaVuSerif-2b"/> + + + - - + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_21.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_21.svg index 6ae3200b03f9..e0721c9e47a4 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_21.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_21.svg @@ -5,7 +5,7 @@ @@ -20,34 +20,138 @@ z - - +" id="DejaVuSerif-Italic-69"/> + + + + - +" id="DejaVuSerif-Italic-3c4"/> + - + - - +" id="DejaVuSerif-35"/> - + + +" id="DejaVuSans-3a"/> + + + + - + +" id="DejaVuSerif-2f"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_22.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_22.svg index d957c135b3a5..ed728a022512 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_22.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_22.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,163 @@ z + + + + + + - - + - +" id="DejaVuSerif-31"/> + + + - - - - - - - - + - - - +" id="DejaVuSerif-3d"/> + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_23.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_23.svg index 87a6a0a1238d..13ec8213ff31 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_23.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_23.svg @@ -5,7 +5,7 @@ @@ -20,17 +20,63 @@ z - + +" id="DejaVuSerif-Italic-69"/> + + - + + + - - - + - - - - + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_24.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_24.svg index 9a0b1000fe29..723e5b5896bf 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_24.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_24.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,27 @@ z + - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_25.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_25.svg index d5d6031ff095..e34cba1d2052 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_25.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_25.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,27 @@ z - +" id="DejaVuSerif-Italic-69"/> + - - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_26.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_26.svg index d690afd639f7..9a8cd79bbecd 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_26.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_26.svg @@ -5,7 +5,7 @@ @@ -20,54 +20,6 @@ z - - - - - - - + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_27.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_27.svg index 004aaeede691..71cbeccefb71 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_27.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_27.svg @@ -5,7 +5,7 @@ @@ -20,18 +20,27 @@ z - + - - - +" id="DejaVuSerif-63"/> + + - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_28.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_28.svg index ec7c220e3d99..c81d05b72846 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_28.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_28.svg @@ -5,7 +5,7 @@ @@ -20,86 +20,26 @@ z - - - + + - - +" id="DejaVuSerif-Italic-78"/> + + - - - - - - - - - + + + + + + + + + @@ -32,85 +32,6 @@ L 68.609375 28.375 L 5.71875 28.375 z " id="DejaVuSerif-2192"/> - - - - - + + + + + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_30.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_30.svg index 32601d0044e2..eb8e7376d155 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_30.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_30.svg @@ -5,7 +5,7 @@ @@ -20,61 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_31.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_31.svg index 378b06ba5529..d2803b0b22ec 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_31.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_31.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,19 @@ z + - - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_32.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_32.svg index ea36db2f4cca..97055f95131f 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_32.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_32.svg @@ -5,7 +5,7 @@ @@ -20,29 +20,42 @@ z - + - + - - - - - - - + + + + + + + @@ -20,29 +20,6 @@ z - - - + + + - - - - - - - - + + + + + + + + @@ -20,24 +20,68 @@ z - +" id="DejaVuSerif-35"/> + - + - - - - - - - - - - + + + + + + + + + @@ -20,6 +20,32 @@ z + - - - +" id="STIXGeneral-Regular-221a"/> + - - - - - - + + + + + + @@ -74,10 +74,10 @@ L 44.4375 5.171875 z " id="DejaVuSerif-Italic-58"/> - - - - + + + + @@ -20,103 +20,6 @@ z - - - - - - + + +" id="DejaVuSerif-3d"/> + - + + + +M -3.125 -20.796875 +L 11.03125 51.859375 +Q 14.984375 72.3125 26.46875 75.046875 +Q 32.625 76.515625 36.625 76.515625 +Q 45.75 76.515625 50.203125 69.34375 +Q 53.765625 63.671875 52.78125 58.796875 +Q 51.421875 51.859375 47.21875 47.75 +Q 43.0625 43.703125 36.625 41.75 +Q 45.265625 40.484375 49.265625 35.15625 +Q 53.21875 29.890625 51.234375 19.671875 +Q 49.265625 9.46875 41.328125 4.015625 +Q 33.40625 -1.421875 20.515625 -1.421875 +Q 12.59375 -1.421875 9.859375 -0.296875 +L 5.859375 -20.796875 +z +" id="DejaVuSerif-Italic-3b2"/> - - + - + - +" id="DejaVuSerif-Italic-57"/> - + - +" id="STIXSizeThreeSym-Regular-5b"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -20,69 +20,17 @@ z - - +M 10.59375 25.296875 +L 73.1875 25.296875 +L 73.1875 17.484375 +L 10.59375 17.484375 +z +" id="DejaVuSerif-3d"/> - +" id="DejaVuSerif-Italic-45"/> + - - - + - - +" id="DejaVuSerif-2b"/> + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_39.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_39.svg index b873efdfbc35..176fd6f96495 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_39.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_39.svg @@ -5,7 +5,7 @@ @@ -50,6 +50,30 @@ Q 29.6875 47.703125 25.140625 42.765625 Q 20.609375 37.84375 18.796875 28.515625 z " id="DejaVuSerif-Italic-62"/> + - + - - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_40.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_40.svg index 2474a9219fd0..daa56919630c 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_40.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_40.svg @@ -5,7 +5,7 @@ @@ -20,49 +20,6 @@ z - - - - +" id="DejaVuSerif-3a5"/> + + + + - - +" id="DejaVuSerif-394"/> - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_41.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_41.svg index 467d4bda9c36..f8c0c16678df 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_41.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_41.svg @@ -5,7 +5,7 @@ @@ -20,98 +20,57 @@ z - - - - +" id="DejaVuSerif-Italic-3ba"/> + - + + + +" id="DejaVuSerif-Italic-3c5"/> + + + - +" id="DejaVuSerif-Italic-3c4"/> - - - - +M 24.859375 3.65625 +L 33.5 48.296875 +Q 24.703125 47.359375 20.90625 42.78125 +Q 16.109375 37.109375 13.9375 25.96875 +Q 11.765625 14.84375 14.40625 9.125 +Q 16.40625 4.640625 24.859375 3.65625 +" id="DejaVuSerif-Italic-3d5"/> + - - - - + +M -3.125 -20.796875 +L 11.03125 51.859375 +Q 14.984375 72.3125 26.46875 75.046875 +Q 32.625 76.515625 36.625 76.515625 +Q 45.75 76.515625 50.203125 69.34375 +Q 53.765625 63.671875 52.78125 58.796875 +Q 51.421875 51.859375 47.21875 47.75 +Q 43.0625 43.703125 36.625 41.75 +Q 45.265625 40.484375 49.265625 35.15625 +Q 53.21875 29.890625 51.234375 19.671875 +Q 49.265625 9.46875 41.328125 4.015625 +Q 33.40625 -1.421875 20.515625 -1.421875 +Q 12.59375 -1.421875 9.859375 -0.296875 +L 5.859375 -20.796875 +z +" id="DejaVuSerif-Italic-3b2"/> - - +" id="DejaVuSerif-Italic-3c1"/> + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_42.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_42.svg index f87128bc5c45..50718cbdfff6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_42.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_42.svg @@ -5,7 +5,7 @@ @@ -86,11 +86,11 @@ Q 21.09375 69.390625 17.28125 65.921875 Q 13.484375 62.453125 12.796875 55.515625 " id="DejaVuSerif-32"/> - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_43.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_43.svg index 8c4c62ad8ca8..39841770141d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_43.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_43.svg @@ -5,7 +5,7 @@ @@ -20,30 +20,6 @@ z - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_44.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_44.svg index 34ebd8cfb169..1761dfac793b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_44.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_44.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - - +" id="DejaVuSerif-Italic-6b"/> - +" id="DejaVuSerif-2b"/> + - - - - - - - - + + + + + + + + @@ -20,20 +20,6 @@ z - - +" id="DejaVuSerif-Italic-6b"/> - +" id="DejaVuSerif-2b"/> + - - - - - - - - + + + + + + + + @@ -50,30 +50,12 @@ Q 29.6875 47.703125 25.140625 42.765625 Q 20.609375 37.84375 18.796875 28.515625 z " id="DejaVuSerif-Italic-62"/> - +" id="DejaVuSerif-2f"/> - +M 12.84375 14.65625 +Q 12.84375 4.203125 22.953125 4.203125 +Q 29.109375 4.203125 33.28125 9.109375 +Q 37.453125 14.015625 39.3125 23.390625 +L 43.84375 46.921875 +L 43.84375 46.921875 +Q 43.84375 48.34375 39.9375 48.34375 +Q 30.5625 48.34375 23.296875 41.015625 +Q 16.0625 33.640625 13.484375 20.265625 +Q 12.84375 17.140625 12.84375 14.65625 +" id="DejaVuSerif-Italic-61"/> - - - - - + + + + + @@ -20,20 +20,6 @@ z - - - + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -20,20 +20,6 @@ z - - - + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -20,36 +20,33 @@ z - + + - - +" id="DejaVuSerif-Italic-6e"/> - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_50.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_50.svg index e30572fad2f8..a93c5fdd36d1 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_50.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_50.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,17 @@ z + - + - - - - + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -86,10 +86,10 @@ Q 21.09375 69.390625 17.28125 65.921875 Q 13.484375 62.453125 12.796875 55.515625 " id="DejaVuSerif-32"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_52.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_52.svg index a1c605fcca50..849d257dd986 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_52.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_52.svg @@ -5,7 +5,7 @@ @@ -20,36 +20,27 @@ z - +" id="DejaVuSerif-Italic-69"/> - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_53.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_53.svg index b92e9db1d5ac..353a2ee25abd 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_53.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_53.svg @@ -5,7 +5,7 @@ @@ -33,34 +33,6 @@ L 49.421875 5.171875 L 49.421875 0 z " id="DejaVuSerif-31"/> - - - +" id="DejaVuSerif-2b"/> + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + @@ -20,6 +20,38 @@ z + + + + + + + - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -63,11 +63,11 @@ Q 21.09375 69.390625 17.28125 65.921875 Q 13.484375 62.453125 12.796875 55.515625 " id="DejaVuSerif-32"/> - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_56.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_56.svg index e79ba8b3505e..36e853c0e446 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_56.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_56.svg @@ -5,7 +5,7 @@ @@ -33,24 +33,6 @@ L 49.421875 5.171875 L 49.421875 0 z " id="DejaVuSerif-31"/> - + - - - - - - - + + + + + + + @@ -20,35 +20,53 @@ z - +M -1.515625 0 +L -0.53125 5.171875 +L 8.734375 5.171875 +L 20.90625 67.671875 +L 11.625 67.671875 +L 12.640625 72.90625 +L 41.65625 72.90625 +Q 60.5 72.90625 69.15625 63.28125 +Q 77.828125 53.65625 74.46875 36.53125 +Q 71.140625 19.34375 58.71875 9.671875 +Q 46.296875 0 27.484375 0 +z +" id="DejaVuSerif-Italic-44"/> + - - +M 43.5 23.390625 +L 43.5 28.515625 +Q 43.5 37.84375 39.90625 42.765625 +Q 36.328125 47.703125 29.5 47.703125 +Q 22.5625 47.703125 19.015625 42.234375 +Q 15.484375 36.765625 15.484375 25.984375 +Q 15.484375 15.234375 19.015625 9.71875 +Q 22.5625 4.203125 29.5 4.203125 +Q 36.328125 4.203125 39.90625 9.109375 +Q 43.5 14.015625 43.5 23.390625 +" id="DejaVuSerif-64"/> - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_58.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_58.svg index 10811f63b39c..adaff66dea96 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_58.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_58.svg @@ -5,7 +5,7 @@ @@ -86,10 +86,10 @@ Q 21.09375 69.390625 17.28125 65.921875 Q 13.484375 62.453125 12.796875 55.515625 " id="DejaVuSerif-32"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_59.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_59.svg index b844594f51df..cab9236546fd 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_59.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_59.svg @@ -5,7 +5,7 @@ @@ -86,10 +86,10 @@ Q 21.09375 69.390625 17.28125 65.921875 Q 13.484375 62.453125 12.796875 55.515625 " id="DejaVuSerif-32"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_60.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_60.svg index 2a89646ff83c..a4fb4be582a4 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_60.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_60.svg @@ -5,7 +5,7 @@ @@ -33,6 +33,39 @@ L 49.421875 5.171875 L 49.421875 0 z " id="DejaVuSerif-31"/> + - - - + + - +M 56.390625 0 +L 23.1875 0 +L 23.1875 5.171875 +L 34.90625 5.171875 +L 34.90625 19.484375 +L 3.078125 19.484375 +L 3.078125 24.8125 +L 35.015625 74.21875 +L 44.671875 74.21875 +L 44.671875 24.703125 +L 58.59375 24.703125 +L 58.59375 19.484375 +L 44.671875 19.484375 +L 44.671875 5.171875 +L 56.390625 5.171875 +z +" id="DejaVuSerif-34"/> - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_61.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_61.svg index 1eb83c9852ab..451ef45d9481 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_61.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_61.svg @@ -5,7 +5,7 @@ @@ -20,34 +20,6 @@ z - - - + + + - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_62.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_62.svg index db34ed2ee153..592cc403e46d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_62.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_62.svg @@ -5,7 +5,7 @@ @@ -90,12 +90,12 @@ Q 6.15625 4.296875 5 4.78125 Q 3.859375 5.28125 3.515625 5.421875 " id="Cmsy10-30"/> - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_63.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_63.svg index a020e91b7984..7d6a615053ba 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_63.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_63.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,16 @@ z + + - - - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_64.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_64.svg index 4a05b72a0c4e..1ac3faef11d5 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_64.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_64.svg @@ -5,7 +5,7 @@ @@ -50,30 +50,17 @@ Q 29.6875 47.703125 25.140625 42.765625 Q 20.609375 37.84375 18.796875 28.515625 z " id="DejaVuSerif-Italic-62"/> - +M 10.59375 25.296875 +L 73.1875 25.296875 +L 73.1875 17.484375 +L 10.59375 17.484375 +z +" id="DejaVuSerif-3d"/> + - - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_65.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_65.svg index 001692b9eaf6..819ee1329e7f 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_65.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_65.svg @@ -5,7 +5,7 @@ @@ -20,51 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_66.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_66.svg index 5b4d496ee39e..2c3d08c82b2b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_66.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_66.svg @@ -5,7 +5,7 @@ @@ -20,38 +20,25 @@ z - + - + - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_67.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_67.svg index 37d5c996ded4..5e0af6552a21 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_67.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_67.svg @@ -5,7 +5,7 @@ @@ -20,31 +20,6 @@ z - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_68.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_68.svg index f3f44873a31e..a8833a5d5de6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_68.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_68.svg @@ -5,7 +5,7 @@ @@ -50,23 +50,12 @@ Q 29.6875 47.703125 25.140625 42.765625 Q 20.609375 37.84375 18.796875 28.515625 z " id="DejaVuSerif-Italic-62"/> - - +" id="STIXGeneral-Regular-7c"/> - + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_69.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_69.svg index 6e401ec7bf6d..449ed80da374 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_69.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_69.svg @@ -5,7 +5,7 @@ @@ -20,48 +20,6 @@ z - - + + - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_70.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_70.svg index 2151a4ee086e..c9985b1a95af 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_70.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_70.svg @@ -5,7 +5,7 @@ @@ -48,19 +48,19 @@ L 23.046875 0 z " id="DejaVuSerif-Italic-4d"/> - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_71.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_71.svg index 803dcf11d881..c04252cae772 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_71.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_71.svg @@ -5,7 +5,7 @@ @@ -29,16 +29,20 @@ L 78.078125 28.375 L 3.421875 28.375 z " id="DejaVuSerif-21bc"/> - - +M 59 -2.90625 +L 52.703125 -2.90625 +L 31.203125 40.296875 +L 9.703125 -2.90625 +L 3.203125 -2.90625 +L 30.703125 53.59375 +L 31.703125 53.59375 +z +" id="STIXGeneral-Regular-22bc"/> - + + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_72.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_72.svg index f38c4f450abb..79edc9d8ebd7 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_72.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_72.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,26 @@ z + + - - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_73.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_73.svg index bfa1f2144719..a747b5b211ed 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_73.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_73.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,103 @@ z + + + + + + + + - - - - - - - - - + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_74.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_74.svg index 49624349d6fb..47f55df8c7cb 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_74.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_74.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,103 @@ z + + + + + + + + - - - - - - - - - + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_75.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_75.svg index 97d2d4efb2bb..1b540fe41060 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_75.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_75.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,80 @@ z + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_76.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_76.svg index 44df52764e5c..dc3c66e0afd9 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_76.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_76.svg @@ -5,7 +5,7 @@ @@ -33,71 +33,6 @@ L 49.421875 5.171875 L 49.421875 0 z " id="DejaVuSerif-31"/> - - - + + + - + - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_77.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_77.svg index 6f338c5cbbf9..3c9961669b69 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_77.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_77.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,26 @@ z + + - - - +" id="DejaVuSerif-21e4"/> - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_78.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_78.svg index df90a35bb9d8..72685a9e4856 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_78.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_78.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + - +" id="DejaVuSerif-2b"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_79.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_79.svg index 78c124191ebe..5f30afaf3dd0 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_79.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_dejavuserif_79.svg @@ -5,7 +5,7 @@ @@ -20,41 +20,38 @@ z - + + - - + - - - - - - - + + + + + + + - - + - - - - + + - + - + +M 38.796875 30.59375 +Q 38.796875 39.203125 31.796875 39.203125 +Q 24.90625 39.203125 18.09375 27.703125 +Q 14.90625 22.296875 12.90625 15.75 +Q 10.90625 9.203125 10.90625 4.59375 +Q 10.90625 1.203125 15.5 1.203125 +Q 22.09375 1.203125 27.796875 7.09375 +Q 32.40625 11.90625 35.59375 18.546875 +Q 38.796875 25.203125 38.796875 30.59375 +" id="STIXGeneral-Italic-62"/> + - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.png index 52356d3e3a71..18cb14a6b565 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.svg index d6445df2020a..8ef02948edb8 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.svg @@ -5,7 +5,7 @@ @@ -122,10 +122,10 @@ L 63.703125 18.59375 z " id="STIXGeneral-Regular-2250"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.png index e3b60a790fce..6bbe6cdac52d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.svg index 900578ed4cee..595025c3301a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.svg @@ -5,7 +5,7 @@ @@ -20,50 +20,6 @@ z - - - - +" id="DejaVuSans-24"/> + + +" id="DejaVuSans-31"/> +" id="DejaVuSans-30"/> + + - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.png index 1089ba52bc39..51d3d4675329 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.svg index 5e8cc03261cb..5ebbd64a05fe 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.svg @@ -10,161 +10,158 @@ - - - - + + - - + + - - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.png index 5a45b3bdf259..04771da480e9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.svg index a572aec5b309..1ff13835825c 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.svg @@ -10,102 +10,101 @@ - - - + + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.png index 439df747f103..4933861519f7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.svg index fae0e281ba34..926dea2b92e5 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.svg @@ -5,7 +5,7 @@ @@ -20,41 +20,20 @@ z - + - + + - - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.png index 3be6dfe96b5e..4534afe8cb8b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.svg index fa66d1652326..3107cfa7b53f 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,52 @@ z + + - - - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.pdf index f44493f75223..cb6a7d80f9c1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.png index bd84fc4fe1d3..b657faf689f5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.svg index c0665f64a9f8..0ef036971153 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.svg @@ -10,150 +10,145 @@ - - - - - - + + + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.png index fdbda41961e4..b9b264172f58 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.svg index 354fb8f48efd..d554a50009af 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.svg @@ -10,221 +10,217 @@ - - - - - + + - + - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.pdf index 05aee85da38f..3bdc9f28b43e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.png index 1e0694ae3980..a79e66960e34 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.svg index 444652e3d07b..c61d5ddad862 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.svg @@ -10,108 +10,107 @@ - - - + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.png index 1a9d43df118c..7b4cf277ad71 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.svg index b48b415f8af6..c33d0698fd5b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.svg @@ -10,252 +10,249 @@ - - - - - - - - - + + + + + + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.png index da4e26f8da8f..8d2315f57a42 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.svg index c92e68ada1ed..4ceeda12dbd2 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.svg @@ -10,218 +10,209 @@ - - + + + + + - + - - - - - - + - + + - +" id="STIXSizeTwoSym-Regular-230a"/> - - - - - - - - - - - - + + + + + + + + + + + - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.png index 575d546d8377..18dd456d2afe 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.svg index 8a3bf0c1ed67..8da57d0e31cf 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.svg @@ -10,90 +10,89 @@ - - - - + + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.png index e2fba2c16712..73fb2078c61f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.svg index 6e6f12283143..fa074960280b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.svg @@ -10,189 +10,186 @@ - - - - + + + + - - - + - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.png index 0cc4680a2566..d182bedf8065 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.svg index ebd9efb532bc..ee075ad6c50a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.svg @@ -5,7 +5,7 @@ @@ -20,29 +20,6 @@ z - + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.png index 8d316f9ca59b..5d21ad018141 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.svg index 98e18774e421..7309a0c57ece 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.svg @@ -5,7 +5,7 @@ @@ -20,29 +20,6 @@ z - + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.png index d0afa6d92e88..a0cdf3050742 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.svg index f5fbddef283c..878b71eea187 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.svg @@ -5,7 +5,7 @@ @@ -20,64 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.png index d0afa6d92e88..a0cdf3050742 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.svg index 2e9ee1c2cbfc..774e860890d0 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.svg @@ -5,7 +5,7 @@ @@ -20,64 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.pdf index 1ea93804e34a..d55ed3d0fcb6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.png index 81f9407c6072..a9273624c140 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.svg index 0e0221f07b9b..e9eb3275632f 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.svg @@ -5,7 +5,7 @@ @@ -20,48 +20,6 @@ z - - + + + + - - - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.pdf index d1139b531330..e2de6053602e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.png index 77e10f405a1f..b3928fb2ecc2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.svg index 7957ed1848e6..7574a0aebf55 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.svg @@ -10,278 +10,269 @@ - - - + - - - - + + + - - +M 63.703125 12 +L 4.796875 12 +L 4.796875 18.59375 +L 63.703125 18.59375 +z +" id="STIXGeneral-Regular-3d"/> + - - - - - - - - - - - - + + + + + + + + + + + - - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.png index 16fa46602197..fa6eaa86640f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.svg index 507e1fb079c1..5d9fba94e7e0 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,40 @@ z + - - +" id="STIXGeneral-Regular-32"/> - - + +" id="STIXGeneral-Italic-74"/> + + - - - + + - - +" id="STIXGeneral-Italic-3c0"/> - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.png index 59ae38d25fc7..52000b529874 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.svg index 21c06b4065ec..4623754e2963 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.svg @@ -5,7 +5,7 @@ @@ -20,108 +20,95 @@ z - - - + - + - + - +" id="STIXGeneral-Regular-2f"/> - +" id="STIXGeneral-Italic-74"/> + + + + + +" id="DejaVuSans-6f"/> + + - - - - +" id="STIXGeneral-Regular-6e"/> + - - - + - - +M 35.90625 27.203125 +Q 35.90625 42 28.203125 42 +Q 23 42 16.953125 32.796875 +Q 10.90625 23.59375 10.90625 12.5 +Q 10.90625 7.703125 12.59375 4.34375 +Q 14.296875 1 17.796875 1 +Q 25.09375 1 34.296875 20.09375 +Q 34.40625 20.703125 34.84375 22.046875 +Q 35.296875 23.40625 35.59375 24.703125 +Q 35.90625 26 35.90625 27.203125 +" id="STIXGeneral-Italic-3b1"/> - - + +" id="STIXGeneral-Italic-3c0"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.pdf index 341eaca02020..6fde8125d923 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.png index 76e526839e6e..eb3c7a21a3e8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.svg index a51f7d4f3cef..6ab7570f476f 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.svg @@ -5,7 +5,7 @@ @@ -20,95 +20,85 @@ z - + - - +" id="STIXGeneral-Italic-66"/> + - +" id="STIXGeneral-Regular-220f"/> + - - - - - - +" id="STIXGeneral-Italic-3c0"/> + - - + +M 35.90625 27.203125 +Q 35.90625 42 28.203125 42 +Q 23 42 16.953125 32.796875 +Q 10.90625 23.59375 10.90625 12.5 +Q 10.90625 7.703125 12.59375 4.34375 +Q 14.296875 1 17.796875 1 +Q 25.09375 1 34.296875 20.09375 +Q 34.40625 20.703125 34.84375 22.046875 +Q 35.296875 23.40625 35.59375 24.703125 +Q 35.90625 26 35.90625 27.203125 +" id="STIXGeneral-Italic-3b1"/> + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.png index 93b52d42f35c..1923648b80a3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.svg index d965717937d9..bc6756feadc8 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.svg @@ -10,299 +10,289 @@ - - - - - + - + + + - + + - - - - + + - - + - + + +M 52.203125 31.203125 +L 52.203125 0 +L 43.21875 0 +L 43.21875 8.296875 +Q 40.140625 3.328125 35.546875 0.953125 +Q 30.953125 -1.421875 24.3125 -1.421875 +Q 15.921875 -1.421875 10.953125 3.296875 +Q 6 8.015625 6 15.921875 +Q 6 25.140625 12.171875 29.828125 +Q 18.359375 34.515625 30.609375 34.515625 +L 43.21875 34.515625 +L 43.21875 35.40625 +Q 43.21875 41.609375 39.140625 45 +Q 35.0625 48.390625 27.6875 48.390625 +Q 23 48.390625 18.546875 47.265625 +Q 14.109375 46.140625 10.015625 43.890625 +L 10.015625 52.203125 +Q 14.9375 54.109375 19.578125 55.046875 +Q 24.21875 56 28.609375 56 +Q 40.484375 56 46.34375 49.84375 +Q 52.203125 43.703125 52.203125 31.203125 +" id="DejaVuSans-61"/> + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.png index 696586f7d80f..c706e316f588 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.svg index ad93f9b3741f..a0c30f3a113c 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.svg @@ -5,7 +5,7 @@ @@ -20,33 +20,6 @@ z - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.pdf index f013c8d886d0..ba4618cd1a29 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.png index eef9480940fa..54e0971a9fd0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.svg index ed0cafd84466..70a60a773111 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.svg @@ -5,7 +5,7 @@ @@ -20,64 +20,6 @@ z - - - + + + - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.pdf index c19194d9bc37..3fa086d055cb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.png index c6c263a2f6d4..3d15fb892fd4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.svg index b5aa7805f2fe..34c8efe0cd47 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.svg @@ -10,279 +10,273 @@ - - - - - - - - - - - - + - + + + + + + + + - +M 38 35.90625 +Q 38 38.40625 36.296875 40.15625 +Q 34.59375 41.90625 32.09375 41.90625 +Q 28 41.90625 22.796875 37 +Q 17.703125 32.09375 14.390625 25.09375 +Q 11.09375 18.09375 11.09375 11.90625 +Q 11.09375 4.203125 16.40625 4.203125 +Q 20.5 4.203125 24.59375 7.796875 +Q 29.703125 12.203125 33.84375 20.953125 +Q 38 29.703125 38 35.90625 +" id="STIXGeneral-Italic-71"/> + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.png index b0fc9a6d1a19..ff5fc89fe10d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.svg index f04e47ae7662..4555ac1aefcb 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,59 @@ z + + - + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.pdf index 3b02f03355f3..b9cabb0f060a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.png index bd6f0b0cbceb..d632a2278248 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.svg index e80112277bfb..70b3efd4a1e8 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.svg @@ -10,263 +10,257 @@ - - + + + + - - - - - - +" id="STIXGeneral-Regular-3d"/> + + - - - - - - - - - - + + + + + + + + + - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.png index 8f8a0fca3b58..e4de05e4bffc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.svg index 2015e4846c72..7255d93074ff 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.svg @@ -5,7 +5,7 @@ @@ -20,53 +20,138 @@ z - - +M 15.90625 33.40625 +L 15.90625 8.796875 +Q 15.90625 6.59375 19.34375 4.390625 +Q 22.796875 2.203125 26.296875 2.203125 +Q 31.703125 2.203125 35.046875 7.296875 +Q 38.40625 12.40625 38.40625 20.703125 +Q 38.40625 29.5 35.046875 34.75 +Q 31.703125 40 26.09375 40 +Q 22.59375 40 19.25 37.796875 +Q 15.90625 35.59375 15.90625 33.40625 +" id="STIXGeneral-Regular-70"/> + + + + - - - - +" id="STIXGeneral-Regular-75"/> - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.png index 96ab7b491a07..7001c4f0e3dd 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.svg index e0d66168485b..70746902f681 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.svg @@ -5,7 +5,7 @@ @@ -76,6 +76,30 @@ Q 14.703125 19.59375 17.640625 15 Q 20.59375 10.40625 25.5 8.09375 z " id="STIXGeneral-Regular-222e"/> + - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.png index 673465c20d29..ad3a90304fa1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.svg index 490cc57fb0bb..3f7b682991c1 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.svg @@ -5,7 +5,7 @@ @@ -20,17 +20,6 @@ z - + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.png index d30097b83a97..2343e2fca2c9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.svg index 95cb8f640557..85d5c68384db 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.svg @@ -5,7 +5,7 @@ @@ -20,101 +20,6 @@ z - - - + + + - - - - - - - + + + + + + + @@ -20,29 +20,6 @@ z - + - - + + - - - - - - - - + + + + + + + + @@ -20,88 +20,6 @@ z - - - + + + - - - - - - - - - + + + + + + + + + - - - - + + - - - - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.png index 63f6f7c11259..e120da0f210b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.svg index 350f77945b96..4157b1c1cdff 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.svg @@ -10,111 +10,106 @@ - - - - - - - - + + + + - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.png index 5e7fe5a8a616..8c5159af3f92 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.svg index a83ddba73eb9..776c6e5337fb 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.svg @@ -5,7 +5,7 @@ @@ -20,158 +20,6 @@ z - - - - - - - + +" id="STIXGeneral-Italic-55"/> - + + + - + +" id="STIXGeneral-Regular-2b"/> + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -20,6 +20,113 @@ z + + + - + + - +M 63.703125 12 +L 4.796875 12 +L 4.796875 18.59375 +L 63.703125 18.59375 +z +" id="STIXGeneral-Regular-3d"/> - - - - - + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.pdf index e0857671bdfe..c5bf91b5f021 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.png index c41fcd9c8f43..e5867f4839fb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.svg index a6a4a52de51a..dabe0a6e9718 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.svg @@ -10,246 +10,241 @@ - - - - - - + - - - + + + + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.png index ff81b4c48959..fdd2f6394689 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.svg index ac1071f61448..54bd39ae9336 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.svg @@ -10,388 +10,377 @@ - - - - + + + - - - + + + - - - - + + + - +" id="STIXGeneral-Regular-394"/> - + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.png index 16ba2960967e..21a304c44aa5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.svg index e27594ec23c6..55f3eabadd86 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.svg @@ -10,741 +10,731 @@ - - - + + + + - - - - - - - - - - - + - - - + + - - + + + + + + - - - + + + - + + +" id="STIXGeneral-Italic-3c0"/> - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.png index 10bfea4b5c37..b4ff7e515672 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.svg index 138f6e1b3d2c..c57c2c55c064 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.svg @@ -5,7 +5,7 @@ @@ -20,64 +20,6 @@ z - - + + - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.png index f83d9031d9ae..f1d40f477400 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.svg index dabe87c6fed7..293e78b4485c 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.svg @@ -5,7 +5,7 @@ @@ -20,57 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.pdf index 57e0341ed900..59ce25d7caaf 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.png index dd93ef5ebf3c..d072de609b99 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.svg index 9ad10355d8c7..1c090ba39615 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.svg @@ -5,7 +5,7 @@ @@ -20,29 +20,66 @@ z - + +" id="STIXGeneral-Regular-2b"/> - +" id="STIXGeneral-Regular-32"/> - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.pdf index e243ba141a1d..22e0050a78db 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.png index c2b524da10c5..2d3c89e0fb99 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.svg index 317fc8f5e30c..f41d192cacbd 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.svg @@ -5,7 +5,7 @@ @@ -20,29 +20,66 @@ z - + +" id="STIXGeneral-Regular-2b"/> - +" id="STIXGeneral-Regular-32"/> - - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.png index 5d8e548eff6a..3fc71b45bbda 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.svg index da3e953266a3..93d7f2d639ee 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.svg @@ -10,126 +10,120 @@ - - - + - + - + +M 36.5 36.09375 +Q 36.5 38.703125 35 40.296875 +Q 33.5 41.90625 30.90625 41.90625 +Q 24.09375 41.90625 17.796875 32.703125 +Q 14.5 27.796875 12.296875 21.796875 +Q 10.09375 15.796875 10.09375 11.203125 +Q 10.09375 3.796875 16.09375 3.796875 +Q 22 3.796875 28.796875 13.59375 +Q 36.5 24.703125 36.5 36.09375 +" id="STIXGeneral-Italic-61"/> - - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.pdf index c4af9395eb4c..4991a06a72e9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.png index 59579d22c207..cce94bd39a10 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.svg index 3022a1a6f67d..831c4754e0d3 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,37 @@ z + + - - + - - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.pdf index 584b5fca6edc..4cf305c25d49 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.png index 59579d22c207..cce94bd39a10 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.svg index 3022a1a6f67d..831c4754e0d3 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,37 @@ z + + - - + - - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.png index 67c129bd0fc9..845b9d13c43f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.svg index 9227d4d413e7..20fc63945735 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.svg @@ -10,144 +10,140 @@ - - - - - - - + + + + - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.png index ca4fe553f972..315c93a2950a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.svg index e5cfb7845c67..9d66a7700c13 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.svg @@ -5,7 +5,7 @@ @@ -20,120 +20,6 @@ z - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -20,64 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.pdf index f8726f0c4b76..578adf84aed2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.png index a117ff6ac30d..6925ae9cd791 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.svg index 19383d3f121e..79101740fc00 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.svg @@ -5,7 +5,7 @@ @@ -20,29 +20,77 @@ z - +M 36.5 36.09375 +Q 36.5 38.703125 35 40.296875 +Q 33.5 41.90625 30.90625 41.90625 +Q 24.09375 41.90625 17.796875 32.703125 +Q 14.5 27.796875 12.296875 21.796875 +Q 10.09375 15.796875 10.09375 11.203125 +Q 10.09375 3.796875 16.09375 3.796875 +Q 22 3.796875 28.796875 13.59375 +Q 36.5 24.703125 36.5 36.09375 +" id="STIXGeneral-Italic-61"/> + + - - +" id="STIXGeneral-Regular-31"/> - +" id="STIXGeneral-Italic-72"/> + + - - - - +M 38.796875 30.59375 +Q 38.796875 39.203125 31.796875 39.203125 +Q 24.90625 39.203125 18.09375 27.703125 +Q 14.90625 22.296875 12.90625 15.75 +Q 10.90625 9.203125 10.90625 4.59375 +Q 10.90625 1.203125 15.5 1.203125 +Q 22.09375 1.203125 27.796875 7.09375 +Q 32.40625 11.90625 35.59375 18.546875 +Q 38.796875 25.203125 38.796875 30.59375 +" id="STIXGeneral-Italic-62"/> - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.png index 232a5654b3b2..6cd9e6ef4744 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.svg index 888e1e11f7b1..c1eb522c218b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.svg @@ -5,7 +5,7 @@ @@ -20,21 +20,6 @@ z - - +" id="STIXSizeThreeSym-Regular-221a"/> + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + @@ -20,116 +20,6 @@ z - - - - - - +" id="STIXGeneral-Regular-7c"/> - +" id="STIXGeneral-Regular-32"/> + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -20,29 +20,6 @@ z - + - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.png index e541fa99367f..a3e28eeb1102 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.svg index 9831160c805d..93b0baf02003 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.svg @@ -5,7 +5,7 @@ @@ -20,27 +20,69 @@ z - + + - - + - + - - - - - - - + + + + + + + @@ -20,6 +20,39 @@ z + - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.png index 1f0c87524042..44435935e3c7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.svg index d369c351c035..0c3dec0e1d18 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.svg @@ -5,7 +5,7 @@ @@ -20,64 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.png index 7a9b5f05ace6..217b37f8eb5d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.svg index 1667e31eb717..4e77e516f10f 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.svg @@ -5,7 +5,7 @@ @@ -20,64 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.pdf index bf10634ca287..1bac23e7c81a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.png index 01b6b449845c..bbb1aadfe408 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.svg index 7a41dab34a3b..3cfa177cab94 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.svg @@ -5,7 +5,7 @@ @@ -20,46 +20,52 @@ z - - + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.png index 5f5bf179e958..fb78ec544100 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.svg index a7840079c083..8b9c7d426c87 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.svg @@ -5,7 +5,7 @@ @@ -20,31 +20,87 @@ z - + + + + - - - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.png index f78659dbce26..c4868ba204bd 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.svg index 06ba07590e43..b28dd244d175 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.svg @@ -5,7 +5,7 @@ @@ -20,45 +20,6 @@ z - - + + - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.pdf index 58451c13870e..25c0eff49e92 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.png index 7c66aef99f28..49439f6ff960 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.svg index 6d51e537ca23..8d9c46d8208a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.svg @@ -10,121 +10,118 @@ - - - + + - - - + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.pdf index b66f0f9a8ee5..1dee961a0094 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.png index 600c8b66da09..ac092946ddad 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.svg index 2d7558358e30..541d483775ef 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.svg @@ -10,150 +10,144 @@ - - + - + + + - - - - + +M 38.796875 30.59375 +Q 38.796875 39.203125 31.796875 39.203125 +Q 24.90625 39.203125 18.09375 27.703125 +Q 14.90625 22.296875 12.90625 15.75 +Q 10.90625 9.203125 10.90625 4.59375 +Q 10.90625 1.203125 15.5 1.203125 +Q 22.09375 1.203125 27.796875 7.09375 +Q 32.40625 11.90625 35.59375 18.546875 +Q 38.796875 25.203125 38.796875 30.59375 +" id="STIXGeneral-Italic-62"/> - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.pdf index d4674f162199..9b1c286225db 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.png index b8bf22edeb26..7cea9ef21fd4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.svg index abd6a035bd05..1ca2f5b4fc56 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.svg @@ -10,126 +10,124 @@ - - - - + + +M 23.59375 4.203125 +Q 23.59375 2 22.046875 0.546875 +Q 20.5 -0.90625 18.203125 -0.90625 +Q 16 -0.90625 14.5 0.546875 +Q 13 2 13 4.296875 +Q 13 6.59375 14.546875 8.140625 +Q 16.09375 9.703125 18.296875 9.703125 +Q 20.5 9.703125 22.046875 8.09375 +Q 23.59375 6.5 23.59375 4.203125 +" id="STIXGeneral-Regular-21"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_66.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_66.png index ab1fdf9f18d3..7c75c2893837 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_66.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_66.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_66.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_66.svg index e82d2ede8655..bce6b5573076 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_66.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_66.svg @@ -10,145 +10,144 @@ - - - - - + + + + - + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.pdf index 0245a38e044e..68ef4ccee62a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.png index 6566d15c5a61..8cc4959b5013 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.svg index da9c5777b406..e378c43163d6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.svg @@ -5,7 +5,7 @@ @@ -66,41 +66,67 @@ Q 62.5 3.796875 66.796875 9.09375 L 68.90625 11.703125 z " id="STIXGeneral-Italic-6d"/> - + + + + - - - - - + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_68.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_68.png index 0a38301acc5c..c037ffadb2b7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_68.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_68.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_68.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_68.svg index 063299253191..269efc70b9dc 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_68.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_68.svg @@ -5,122 +5,122 @@ - - + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.pdf index a5754449e493..175bcdc76bce 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.png index 5d4b56171013..2d0ac08f783e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.svg index a99fa3d1aee2..82d2413f311d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_69.svg @@ -5,119 +5,119 @@ - - - - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_70.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_70.png index 4c8eeab5035c..13823c38b1e0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_70.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_70.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_70.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_70.svg index 7c4e65dc5827..3fb3677fc1a1 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_70.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_70.svg @@ -5,15 +5,15 @@ - @@ -22,52 +22,52 @@ z - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.pdf index 7416838cf13b..7e67f9c47cd0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.png index 4b0e52aca0c5..932ca8733f7f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.svg index a8e40582b0b5..9e439f7e4254 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_71.svg @@ -5,149 +5,149 @@ - - - - - - - + + + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.pdf index 974e196c2e59..62ef409bd486 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.png index 4eab5c0355d8..a40ad0c281f6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.svg index f469103901f5..7f218efb93a6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_72.svg @@ -5,131 +5,131 @@ - - - - + - - + +M 40.5 -4.203125 +Q 40.5 -6.796875 38.59375 -8.6875 +Q 36.703125 -10.59375 34.09375 -10.59375 +Q 31.59375 -10.59375 29.6875 -8.640625 +Q 27.796875 -6.703125 27.796875 -4.203125 +Q 27.796875 -1.296875 29.640625 0.390625 +Q 31.5 2.09375 34.09375 2.09375 +Q 36.796875 2.09375 38.640625 0.4375 +Q 40.5 -1.203125 40.5 -4.203125 +" id="STIXGeneral-Regular-2251"/> - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_73.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_73.png index 6b6cc3b21c01..d6806716a4be 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_73.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_73.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_73.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_73.svg index 4225f9df01f1..bb38f4590198 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_73.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_73.svg @@ -5,7 +5,7 @@ @@ -20,73 +20,78 @@ z - - + + - - - - - - - + +" id="STIXGeneral-Italic-7a"/> + - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_74.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_74.png index 6b6cc3b21c01..d6806716a4be 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_74.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_74.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_74.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_74.svg index 7f2c803ab051..a52ae5ec00a8 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_74.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_74.svg @@ -5,7 +5,7 @@ @@ -20,73 +20,78 @@ z - - + + - - - - - - - + +" id="STIXGeneral-Italic-7a"/> + - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_75.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_75.png index ea70dcab09d8..d55dd5053188 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_75.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_75.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_75.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_75.svg index c17d060b21b1..5bfc6fbdb9b3 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_75.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_75.svg @@ -5,7 +5,7 @@ @@ -76,6 +76,52 @@ Q 14.703125 19.59375 17.640625 15 Q 20.59375 10.40625 25.5 8.09375 z " id="STIXGeneral-Regular-222e"/> + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_76.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_76.png index 96a45c4a7c5d..bdd18fee315f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_76.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_76.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_76.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_76.svg index 0468b800fb08..097bfc018f1f 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_76.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_76.svg @@ -5,7 +5,7 @@ @@ -20,83 +20,6 @@ z - - - - - +" id="DejaVuSans-67"/> +" id="DejaVuSans-73"/> + + + +" id="DejaVuSans-6e"/> + + - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_77.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_77.png index 9d3870d24e09..9ed5a18bf57b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_77.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_77.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_77.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_77.svg index 198a2d907d89..f423ee824f38 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_77.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_77.svg @@ -5,7 +5,7 @@ @@ -20,55 +20,6 @@ z - - - - + - + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_78.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_78.png index c41190cd15f0..612b9806f652 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_78.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_78.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_78.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_78.svg index 4f52c1c1367f..43858096fb5c 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_78.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_78.svg @@ -5,7 +5,7 @@ @@ -20,29 +20,72 @@ z - + + + + - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_79.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_79.svg index e34364a4c9d6..962e93527b4e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_79.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_79.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,52 @@ z + + - - - - - - - - - + + + + + + + - - + - - + - - + - - + + +M 33.40625 13.203125 +L 35.703125 22.203125 +Q 13.90625 18.703125 13.90625 9.59375 +Q 13.90625 6.09375 18.703125 6.09375 +Q 25.5 6.09375 33.40625 13.203125 +" id="STIXGeneral-Italic-1d622"/> + - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.png index bf3569afa28e..8e136b1f0b4c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.svg index 6717332dd4b0..79b96dfd43d5 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.svg @@ -5,7 +5,7 @@ @@ -20,39 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.png index bd27dcb16e2b..aaff9429df58 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.svg index 7fbc3d947ba3..b57ff67970f2 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.svg @@ -5,7 +5,7 @@ @@ -20,19 +20,6 @@ z - - - +" id="DejaVuSans-24"/> + + +" id="DejaVuSans-31"/> - + + +" id="STIXGeneral-Regular-5f"/> - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.pdf index 409d3ee2b880..2be9cf1c7552 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.png index ce2510adcf08..60c9bbb05f2e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.svg index f5a8974f41f7..07816b7bd6f1 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.svg @@ -10,141 +10,137 @@ - - - - - + - + + - - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.png index 1456df6f2ca0..07ec22b30dcc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.svg index b1a1569b0cb0..c5b0a1d76a1d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.svg @@ -10,56 +10,53 @@ - - - + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.png index cf1227dcc3a7..8e5cd1edb750 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.svg index ecb6d984c16c..98b9bd65970b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.svg @@ -5,7 +5,7 @@ @@ -20,59 +20,20 @@ z - - - - + - +" id="STIXGeneral-Regular-2b"/> + - + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.png index c8b9ee31c72c..7edcc0fcad1c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.svg index 3bca8025d0af..2127103c8649 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.svg @@ -5,7 +5,7 @@ @@ -20,73 +20,38 @@ z - +Q 35.203125 67.59375 41.453125 57.9375 +Q 47.703125 48.296875 47.703125 33 +M 39.796875 33 +Q 39.796875 45.203125 35.75 52.84375 +Q 31.703125 60.5 25.203125 60.5 +Q 17.796875 60.5 14 52.75 +Q 10.203125 45 10.203125 33.40625 +Q 10.203125 28.203125 10.953125 23.546875 +Q 11.703125 18.90625 13.34375 14.75 +Q 15 10.59375 18 8.140625 +Q 21 5.703125 25 5.703125 +Q 30.09375 5.703125 33.546875 9.796875 +Q 37 13.90625 38.390625 19.84375 +Q 39.796875 25.796875 39.796875 33 +" id="STIXGeneral-Regular-1d7e2"/> - - - - + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.pdf index d8a7ee0b8386..06350c598354 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.png index dfb84f0c6507..577e754f75ed 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.svg index 97c7868bbc67..be63a751bd1d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.svg @@ -10,104 +10,97 @@ - - - - + - - + + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.png index 288cadae7c53..64dfc78c8a17 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.svg index b297d0ab18c9..812400ab8381 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.svg @@ -10,118 +10,114 @@ - - - + - + - +" id="STIXGeneral-Italic-1d639"/> - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.pdf index b2750bec1e00..e15b3f309a3b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.png index bfcd82429e29..a2e4e381f378 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.svg index 75bbf81420f5..0f15a43c1f45 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.svg @@ -10,62 +10,59 @@ - - - + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.png index 0497af663f66..3a1ad4d5c0f6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.svg index 7c8fae507055..f23a25e25c32 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.svg @@ -10,209 +10,205 @@ - - + + + - - - - - + - - + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.png index 4195ae2b762b..7d606dc56913 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.svg index 059219df9cc3..6910c9bb8dec 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.svg @@ -10,194 +10,184 @@ - - + + - - + + - + - - - + - - - +" id="STIXSizeTwoSym-Regular-230a"/> - - - - - - - - - - - - + + + + + + + + + + + - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.png index 7f8e356874bf..d74c4626a115 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.svg index 935666363ecb..e3f54f2e5cf3 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.svg @@ -10,59 +10,57 @@ - - + - - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.png index d83a0b37143f..ca4159f321a4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.svg index f9926dd7eb49..0a4ee2c61414 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.svg @@ -10,125 +10,119 @@ - - - + - - - - + + + +" id="STIXGeneral-Italic-1d639"/> - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.png index 0d1a101ac9f5..2950476da145 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.svg index 555b239e1b6b..1802ccd2426c 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.png index 978d78af0b29..767480866740 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.svg index f63a9612de91..2618bbfa8a23 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.png index 47d0400303ac..138d2c5b3d77 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.svg index 0133e5b625ff..44dad5a3fee2 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.svg @@ -5,7 +5,7 @@ @@ -20,39 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.png index 47d0400303ac..138d2c5b3d77 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.svg index 6dc2c0f64743..a692f202017a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.svg @@ -5,7 +5,7 @@ @@ -20,39 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.pdf index 1066135182aa..e3c88d940987 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.png index f9864e50573c..077c97942777 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.svg index df6f48bc0b1f..fb8bd9b9b757 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.svg @@ -5,7 +5,7 @@ @@ -20,17 +20,6 @@ z - + + + - - - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.pdf index 47cc2fe2fd48..e96021bab2a0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.png index 5da8088f1a8a..0450ed0c99f3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.svg index 037493fcdddb..a092d53b1a1c 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.svg @@ -10,221 +10,210 @@ - - - + + - - + - - + + - - +" id="STIXGeneral-Regular-2b"/> - - - - - - - - - - - - + + + + + + + + + + + - - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.png index 0e865eed1847..d98751841ba0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.svg index a92a0e776575..bdaa8b47f891 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.svg @@ -5,7 +5,7 @@ @@ -20,18 +20,53 @@ z - +" id="STIXGeneral-Regular-1d5cc"/> + + + + + + + + + - - - - +" id="STIXGeneral-Italic-1d639"/> + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.png index 7694fa3f295f..8a145bcf1690 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.svg index 885dfec41c82..d61317816ad6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.svg @@ -5,7 +5,7 @@ @@ -20,17 +20,53 @@ z - + +" id="STIXGeneral-Regular-1d5c7"/> + + + - - - - - - + +" id="STIXGeneral-Regular-2212"/> + - + +" id="STIXGeneral-Regular-1d7e3"/> - + - + +M 11.71875 51.703125 +L 22.015625 51.703125 +L 22.015625 39.3125 +L 11.71875 39.3125 +z +" id="DejaVuSans-3a"/> + + + - - - + - +" id="STIXGeneral-Italic-1d635"/> - - - + - +" id="STIXNonUnicode-Italic-e1e7"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.pdf index 64d61197d727..25a833a4ef92 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.png index 3ef33f3b4e1a..8b294adedf3f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.svg index 371d0498a0a0..cb6a89db581e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.svg @@ -5,7 +5,7 @@ @@ -48,6 +48,94 @@ Q 12.90625 46.296875 19.40625 46.296875 Q 28 46.296875 33 41 z " id="STIXGeneral-Regular-1d5cc"/> + + + + + + + + - - - - - +" id="STIXGeneral-Regular-2b"/> - - + + +" id="STIXGeneral-Regular-1d7e3"/> - - - - - - +M 33.40625 13.203125 +L 35.703125 22.203125 +Q 13.90625 18.703125 13.90625 9.59375 +Q 13.90625 6.09375 18.703125 6.09375 +Q 25.5 6.09375 33.40625 13.203125 +" id="STIXGeneral-Italic-1d622"/> - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.png index be8a9bdce68e..a86119004e62 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.svg index d18924727a65..4e129aa6c87d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.svg @@ -10,286 +10,274 @@ - - - - - + + + - + - + - + + - + - - + + - + + - - +" id="STIXGeneral-Italic-1d62a"/> - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.png index e999cde4b131..67b95e4a058c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.svg index 4dba6fc9601a..72cd6eeb89ec 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.svg @@ -5,7 +5,7 @@ @@ -61,10 +61,10 @@ L 25.796875 46.40625 z " id="STIXGeneral-Italic-1d62a"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.pdf index 6e2d5ae3ea51..517a3174cb6e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.png index c31fd224a45e..4380fd6f9fbc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.svg index e449273a5d5b..08e7ce0cf9f7 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.svg @@ -5,7 +5,7 @@ @@ -20,30 +20,6 @@ z - - + + - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.pdf index 2984682bfa1f..a5c0426fc21b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.png index 989876399e58..e05ff60e1f60 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.svg index 7cf704fc3f94..01a95a9c3782 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.svg @@ -10,259 +10,252 @@ - - - - - - - - - + - + + + + + + - - - - +" id="STIXGeneral-Regular-302"/> + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.png index 81b2b21ae90b..3cdd12e024d3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.svg index 317f0e0f147d..b30524e2ea7a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,33 @@ z + - +M 26.59375 45.90625 +L 15.203125 0 +L 6.90625 0 +L 17.796875 44 +L 25.796875 46.40625 +z +" id="STIXGeneral-Italic-1d62a"/> - - - + + - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.pdf index 6510c197c985..490e728c8601 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.png index 976a028f4cef..b6c016a64840 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.svg index 97a8d0fcb0a1..6b002332b5dc 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.svg @@ -10,202 +10,193 @@ - - - + + + - + + - - - + - +" id="STIXGeneral-Italic-1d639"/> - - - - - - - - - - + + + + + + + + + - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.png index 09e30f4755d7..3fdc86c9bdfd 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.svg index e33936c5fed4..06e684cf71b5 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.svg @@ -5,7 +5,7 @@ @@ -48,31 +48,6 @@ Q 12.90625 46.296875 19.40625 46.296875 Q 28 46.296875 33 41 z " id="STIXGeneral-Regular-1d5cc"/> - + - - + + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.png index b265940c14f3..58bb828044e7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.svg index b7f602d3c975..7bc674a36430 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,32 @@ z + - - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.png index e5d9b0fa08aa..e57c157014a9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.svg index d0adde6d0825..38dde5b18cd8 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.svg @@ -5,7 +5,7 @@ @@ -20,17 +20,6 @@ z - + - - - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.png index 1d8f4a4a345c..a828223e20ed 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.svg index 225bb9972414..b9e6639fa956 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.svg @@ -5,7 +5,7 @@ @@ -20,25 +20,30 @@ z - +" id="STIXGeneral-Regular-1d7e4"/> - +" id="STIXGeneral-Italic-1d63a"/> - - - - - - - + + + + + + + @@ -20,42 +20,6 @@ z - - - + - +" id="STIXGeneral-Italic-1d620"/> + + - - - - - - - - + + + + + + + + @@ -20,54 +20,6 @@ z - - - - + + + + - - - - - - - - - + + + + + + + + + - - + - + + - - + - +" id="STIXGeneral-Regular-3d"/> - - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.png index 58b863cee622..e4a9fde26ae9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.svg index d1cc9ff56283..847813d30da2 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.svg @@ -10,63 +10,58 @@ - - - - - - - - + + + + - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.png index 0a0b71f801e7..80fd1e30929e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.svg index 43c5b0e76e22..e3eb91108c2a 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.svg @@ -5,7 +5,7 @@ @@ -20,88 +20,6 @@ z - - - - - +" id="STIXGeneral-Regular-2032"/> + + + + + + - + - - - + +" id="STIXGeneral-Regular-2212"/> + + + - - - - - +" id="STIXNonUnicode-Italic-e1e7"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -20,6 +20,29 @@ z + - - + + +" id="STIXGeneral-Italic-1d60f"/> + + + - +" id="STIXGeneral-Regular-1d7e4"/> - +" id="STIXGeneral-Regular-2b"/> - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.pdf index 5581c2c26ba1..4b373e9ac830 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.png index 254925790cab..aa1d8aebaece 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.svg index 2b65019b9fe8..9475fce51bd8 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.svg @@ -10,197 +10,192 @@ - - - + - + + - - - - + - + + + +M 33.40625 13.203125 +L 35.703125 22.203125 +Q 13.90625 18.703125 13.90625 9.59375 +Q 13.90625 6.09375 18.703125 6.09375 +Q 25.5 6.09375 33.40625 13.203125 +" id="STIXGeneral-Italic-1d622"/> - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.png index 4c025a72d250..4ee3b254182d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.svg index 099d2cacc807..9e081c377de8 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.svg @@ -10,258 +10,244 @@ - - - - + + - + - - + + + - + - + - - - +" id="STIXNonUnicode-Regular-e18a"/> + - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.png index ebd5e1340e43..e8033e7f9301 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.svg index 3cdf534fb07c..ac4809cf0045 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.svg @@ -10,622 +10,606 @@ - - - + + - + - - + - - + - + + + - + - + - + - + - + + + + + - + - - - - + - + - - - +" id="STIXNonUnicode-Italic-e1e7"/> - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.png index 5a9083af4e0a..2c3aeb5fd7d0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.svg index 923454734895..354f3eb546da 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.svg @@ -5,7 +5,7 @@ @@ -20,39 +20,6 @@ z - - + + - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.png index dc62c5cbaa67..c05377d34c3e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.svg index 622d3933f319..7d775f77dd0e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.svg @@ -5,7 +5,7 @@ @@ -20,18 +20,6 @@ z - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.pdf index 940c5d0e2d12..4fed497db683 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.png index a6d16a8e967d..dc44719e7c22 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.svg index 68de79b4f1c4..edf05dd4e46e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.svg @@ -5,7 +5,7 @@ @@ -20,35 +20,6 @@ z - - + + + - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.pdf index f75a9a1c5b76..3523a8f3b7a5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.png index 6d6fa995ba07..64cb1d8c7a0b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.svg index 038ebd783152..ba1af958a78e 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.svg @@ -5,7 +5,7 @@ @@ -20,35 +20,6 @@ z - - + + + - - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.png index a4458d332ad3..80fb79ed635a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.svg index 605fe53fa34f..24ebed72bbfb 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.svg @@ -10,111 +10,105 @@ - - - + - - + +M 33.40625 13.203125 +L 35.703125 22.203125 +Q 13.90625 18.703125 13.90625 9.59375 +Q 13.90625 6.09375 18.703125 6.09375 +Q 25.5 6.09375 33.40625 13.203125 +" id="STIXGeneral-Italic-1d622"/> - - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.pdf index 44e347d2d801..922e9806d5e4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.png index 1e755348d24f..0df830e50ce5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.svg index db8ba75cc4ee..3349d2f60e2b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.svg @@ -5,7 +5,7 @@ @@ -20,23 +20,32 @@ z - + - - +" id="STIXGeneral-Regular-2b"/> + + - - +" id="STIXGeneral-Regular-1d7e4"/> - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.pdf index 44e347d2d801..01c2ec54f5d5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.png index 1e755348d24f..0df830e50ce5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.svg index db8ba75cc4ee..3349d2f60e2b 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.svg @@ -5,7 +5,7 @@ @@ -20,23 +20,32 @@ z - + - - +" id="STIXGeneral-Regular-2b"/> + + - - +" id="STIXGeneral-Regular-1d7e4"/> - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.png index faf51e341556..c8a0ad61be8b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.svg index 9e908d5be5f5..e83435ef22f5 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.svg @@ -10,114 +10,109 @@ - - - - - - - + + + - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.png index 3d4c6ec179a0..04cb478f442f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.svg index c27427990b89..7698c16e33d1 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,16 @@ z + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -20,39 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.pdf index 44a38d37e91d..4397f810b4b9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.png index e735873c1cf1..a60e349d4cbb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.svg index 07d2f183f211..1da98b129ac6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.svg @@ -5,7 +5,7 @@ @@ -20,64 +20,6 @@ z - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.png index 9115cc1eb7a9..3c7416c57932 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.svg index 33fac2c45ae6..8d97a589bd52 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,20 @@ z + - - +" id="STIXSizeTwoSym-Regular-221a"/> - +" id="STIXGeneral-Italic-1d639"/> - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + @@ -20,6 +20,68 @@ z + + + + + + - - - - - - - +" id="STIXGeneral-Regular-3d"/> - +M 26.59375 45.90625 +L 15.203125 0 +L 6.90625 0 +L 17.796875 44 +L 25.796875 46.40625 +z +" id="STIXGeneral-Italic-1d62a"/> + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -20,20 +20,6 @@ z - + - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.png index f858e255963c..9a795e61b328 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.svg index 481682c5e5f4..fa7c7bb4dd82 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.svg @@ -5,7 +5,7 @@ @@ -20,70 +20,6 @@ z - - - + + + - - - - - - - + + + + + + + @@ -20,6 +20,25 @@ z + + - - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.png index 8f70d6d51748..9f24e368356c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.svg index 74cd0e2d1e27..ad724dfd2771 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.svg @@ -5,7 +5,7 @@ @@ -20,39 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.png index bd55798817e9..60c33e172c63 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.svg index 4211ce814233..19b75e3f47b5 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.svg @@ -5,7 +5,7 @@ @@ -20,39 +20,6 @@ z - - + + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.pdf index be5aca27b2d5..827113676db3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.png index e1d48ac8c6ac..dcd8f10f3395 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.svg index 60198123932d..21d56809b9aa 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,104 @@ z + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.png index a44998b87d94..5f14d8f4eaac 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.svg index 12748bca4348..76362ecb1214 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,24 @@ z + + + - - - - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.png index f373662165bc..74d24e776a71 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.svg index 129e0dc6c92d..a94dca540149 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.svg @@ -5,7 +5,7 @@ @@ -20,36 +20,6 @@ z - - + + - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.pdf index 8d25579e6e7d..7a1bab63531f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.png index 0cee0de18f06..a2e6ff7a27b5 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.svg index 76fd0dce0d2e..ecdb84beb126 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.svg @@ -10,106 +10,102 @@ - - + - - - - + + - - - - - - - - - + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.pdf index aa99e2283989..0a4f17155212 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.png index 3744f6069915..67e20dae7037 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.svg index 351feb297b44..b3c3cd9998ec 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.svg @@ -10,135 +10,129 @@ - - - + - - - + + - + +M 33.40625 13.203125 +L 35.703125 22.203125 +Q 13.90625 18.703125 13.90625 9.59375 +Q 13.90625 6.09375 18.703125 6.09375 +Q 25.5 6.09375 33.40625 13.203125 +" id="STIXGeneral-Italic-1d622"/> - - - - - - - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.pdf index 654876e9da07..fb95011581af 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.png index b8bf22edeb26..7cea9ef21fd4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.svg index 0857e334fa6c..8f6c251485b8 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.svg @@ -10,126 +10,124 @@ - - - - + + +M 23.59375 4.203125 +Q 23.59375 2 22.046875 0.546875 +Q 20.5 -0.90625 18.203125 -0.90625 +Q 16 -0.90625 14.5 0.546875 +Q 13 2 13 4.296875 +Q 13 6.59375 14.546875 8.140625 +Q 16.09375 9.703125 18.296875 9.703125 +Q 20.5 9.703125 22.046875 8.09375 +Q 23.59375 6.5 23.59375 4.203125 +" id="STIXGeneral-Regular-21"/> - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_66.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_66.png index 094e8156d66c..2d2a22d88f8b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_66.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_66.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_66.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_66.svg index 735eca6b3150..56641fa94ea7 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_66.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_66.svg @@ -10,107 +10,105 @@ - - - - + + + - - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.pdf index e752aba4a189..1b18196e3014 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.png index ec6947fc770d..9f91f69295f0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.svg index e02715693373..2ddfc60d8ce4 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,125 @@ z + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_68.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_68.png index de3c5de79ad2..14c69bebcf4b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_68.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_68.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_68.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_68.svg index c4ab5c743435..cb9acb49de71 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_68.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_68.svg @@ -5,106 +5,106 @@ - - - - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.pdf index c51b5f4e7ae0..573128eb5d45 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.png index a909c167362c..743ed114c952 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.svg index 440d8ab4406b..6d9539618aa4 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_69.svg @@ -5,106 +5,106 @@ - - + - - - - - - - - + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_70.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_70.png index 2c86c67da769..f3222c890b45 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_70.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_70.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_70.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_70.svg index 603294c36659..686e58f4f545 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_70.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_70.svg @@ -5,15 +5,15 @@ - @@ -21,34 +21,34 @@ z - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.pdf index 1dc61e7e543b..ad50a45f0428 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.png index 4b0e52aca0c5..932ca8733f7f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.svg index ed0d9dfdf7ad..6fba3e060110 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_71.svg @@ -5,149 +5,149 @@ - - - - - - - + + + - - - - - - - - - - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.pdf b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.pdf index 82efdfb9a6a4..909aa3b7fb41 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.pdf and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.png index 4eab5c0355d8..a40ad0c281f6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.svg index 30c8a1e1b80e..7f218efb93a6 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_72.svg @@ -5,131 +5,131 @@ - - - - + - - + +M 40.5 -4.203125 +Q 40.5 -6.796875 38.59375 -8.6875 +Q 36.703125 -10.59375 34.09375 -10.59375 +Q 31.59375 -10.59375 29.6875 -8.640625 +Q 27.796875 -6.703125 27.796875 -4.203125 +Q 27.796875 -1.296875 29.640625 0.390625 +Q 31.5 2.09375 34.09375 2.09375 +Q 36.796875 2.09375 38.640625 0.4375 +Q 40.5 -1.203125 40.5 -4.203125 +" id="STIXGeneral-Regular-2251"/> - - - - - - - - + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_73.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_73.png index 0e1c01d5393f..2f287c8555a9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_73.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_73.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_73.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_73.svg index 88fb48b5e3c7..2df349600b2d 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_73.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_73.svg @@ -5,7 +5,7 @@ @@ -20,25 +20,6 @@ z - - - +M 21.703125 30.203125 +L 16.5 9.40625 +Q 19.59375 6.09375 24.796875 6.09375 +Q 32 6.09375 38.59375 12.390625 +Q 45.203125 18.703125 45.203125 28.796875 +Q 45.203125 33.59375 42.640625 36.390625 +Q 40.09375 39.203125 35.203125 39.203125 +Q 31.59375 39.203125 27.9375 36.84375 +Q 24.296875 34.5 21.703125 30.203125 +" id="STIXGeneral-Italic-1d623"/> - - + +M 39.09375 15.796875 +L 43.40625 32.90625 +Q 40.703125 39.203125 34.59375 39.203125 +Q 28.09375 39.203125 21.796875 32.640625 +Q 15.5 26.09375 15.5 16.796875 +Q 15.5 11.5 18.140625 8.796875 +Q 20.796875 6.09375 25.203125 6.09375 +Q 28.703125 6.09375 32.5 8.75 +Q 36.296875 11.40625 39.09375 15.796875 +" id="STIXGeneral-Italic-1d625"/> - - + - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_74.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_74.png index 0e1c01d5393f..2f287c8555a9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_74.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_74.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_74.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_74.svg index 0b957fe21eb5..5c1e52968a72 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_74.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_74.svg @@ -5,7 +5,7 @@ @@ -20,25 +20,6 @@ z - - - +M 21.703125 30.203125 +L 16.5 9.40625 +Q 19.59375 6.09375 24.796875 6.09375 +Q 32 6.09375 38.59375 12.390625 +Q 45.203125 18.703125 45.203125 28.796875 +Q 45.203125 33.59375 42.640625 36.390625 +Q 40.09375 39.203125 35.203125 39.203125 +Q 31.59375 39.203125 27.9375 36.84375 +Q 24.296875 34.5 21.703125 30.203125 +" id="STIXGeneral-Italic-1d623"/> - - + +M 39.09375 15.796875 +L 43.40625 32.90625 +Q 40.703125 39.203125 34.59375 39.203125 +Q 28.09375 39.203125 21.796875 32.640625 +Q 15.5 26.09375 15.5 16.796875 +Q 15.5 11.5 18.140625 8.796875 +Q 20.796875 6.09375 25.203125 6.09375 +Q 28.703125 6.09375 32.5 8.75 +Q 36.296875 11.40625 39.09375 15.796875 +" id="STIXGeneral-Italic-1d625"/> - - + - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_75.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_75.png index 47e65dad726f..14f60e5d2f66 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_75.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_75.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_75.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_75.svg index 4fd7af0c22be..8bc32e559925 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_75.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_75.svg @@ -5,7 +5,7 @@ @@ -20,20 +20,6 @@ z - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_76.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_76.png index 6b15ac3641cf..effcf6acfe11 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_76.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_76.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_76.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_76.svg index c543e5955bfa..8039696442ae 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_76.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_76.svg @@ -5,7 +5,7 @@ @@ -20,70 +20,34 @@ z - - - - + +" id="DejaVuSans-67"/> - +" id="DejaVuSans-73"/> + + + +" id="DejaVuSans-6e"/> + - - - - - - - - - - - + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_77.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_77.png index 9d3870d24e09..9ed5a18bf57b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_77.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_77.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_77.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_77.svg index 198a2d907d89..f423ee824f38 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_77.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_77.svg @@ -5,7 +5,7 @@ @@ -20,55 +20,6 @@ z - - - - + - + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_78.png b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_78.png index 5c592903b818..2b66c097353b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_78.png and b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_78.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_78.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_78.svg index 28d017865b34..1c79857fd936 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_78.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_78.svg @@ -5,7 +5,7 @@ @@ -20,6 +20,32 @@ z + - - +M 11.71875 12.40625 +L 22.015625 12.40625 +L 22.015625 4 +L 14.015625 -11.625 +L 7.71875 -11.625 +L 11.71875 4 +z +" id="DejaVuSans-3b"/> - - + +" id="STIXGeneral-Regular-1d7e4"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_79.svg b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_79.svg index 7952d1bd6820..25294c0e11f8 100644 --- a/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_79.svg +++ b/lib/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_79.svg @@ -5,7 +5,7 @@ @@ -56,20 +56,6 @@ L 28.796875 67.703125 L 30.203125 67.203125 z " id="STIXGeneral-Regular-1d7e3"/> - + - - - - - - - + + + + + + + - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -134,107 +134,107 @@ L 0.000000 4.000000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + - - + diff --git a/lib/matplotlib/tests/baseline_images/test_patches/clip_to_bbox.png b/lib/matplotlib/tests/baseline_images/test_patches/clip_to_bbox.png index 9c8f9c4003d6..e76e13457a4a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patches/clip_to_bbox.png and b/lib/matplotlib/tests/baseline_images/test_patches/clip_to_bbox.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_patches/clip_to_bbox.svg b/lib/matplotlib/tests/baseline_images/test_patches/clip_to_bbox.svg index 11600dda6ea3..3d1d17fe74dd 100644 --- a/lib/matplotlib/tests/baseline_images/test_patches/clip_to_bbox.svg +++ b/lib/matplotlib/tests/baseline_images/test_patches/clip_to_bbox.svg @@ -10,360 +10,349 @@ - - - +" style="fill:#ff7f50;opacity:0.500000;"/> - + - + - + - + - + - + - + - + - + - - + - + +" id="DejaVuSans-35"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - - - + + + - + - + - - + + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - + - - - + + + @@ -372,129 +361,129 @@ Q31.1094 20.4531 19.1875 8.29688" id="BitstreamVeraSans-Roman-32"/> - + - + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - + + + + - + - + - - + + - + - + - - - + + + - + - + - - - - + + + + @@ -502,7 +491,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.pdf b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.pdf index 10ec4d3d3847..06e31444a10f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.pdf and b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.png b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.png index b968c0ddf27f..5e01b4baf3b6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.png and b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.svg b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.svg index b4e1e646b0f1..29b09f3866c0 100644 --- a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.svg +++ b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.svg @@ -10,177 +10,186 @@ - - - - - - - - +" style="fill:#ff0000;fill-opacity:0.500000;stroke:#0000ff;stroke-dasharray:3.000000,5.000000,1.000000,5.000000;stroke-dashoffset:0.0;stroke-opacity:0.750000;stroke-width:5.000000;"/> - +" style="fill:#ff0000;fill-opacity:0.500000;stroke:#0000ff;stroke-dasharray:3.000000,5.000000,1.000000,5.000000;stroke-dashoffset:0.0;stroke-linejoin:miter;stroke-opacity:0.750000;stroke-width:5.000000;"/> + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -189,122 +198,102 @@ L0 4" id="m741efc42ff" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.pdf b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.pdf index b7a5322613a4..ac317e48faa1 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.pdf and b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.png b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.png index 3eb70b362ac8..5ef3845cb20e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.png and b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.svg b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.svg index 7fde38ba1621..323ad93caf2f 100644 --- a/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.svg +++ b/lib/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.svg @@ -10,177 +10,186 @@ - - - - - - - - +" style="fill:#ff0000;fill-opacity:0.250000;stroke:#0000ff;stroke-dasharray:3.000000,5.000000,1.000000,5.000000;stroke-dashoffset:0.0;stroke-opacity:0.250000;stroke-width:5.000000;"/> - +" style="fill:#ff0000;opacity:0.250000;stroke:#0000ff;stroke-dasharray:3.000000,5.000000,1.000000,5.000000;stroke-dashoffset:0.0;stroke-linejoin:miter;stroke-width:5.000000;"/> + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -189,122 +198,102 @@ L0 4" id="m741efc42ff" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.pdf b/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.pdf index c7db3f087979..1b4d81d6f4bb 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.pdf and b/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.png b/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.png index 1c2a6bf40164..1f257c25550f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.png and b/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.svg b/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.svg index 3367ef4c3142..b8fe5778bc76 100644 --- a/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.svg +++ b/lib/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.svg @@ -10,177 +10,186 @@ - - - - - - - - +" style="fill:#ff0000;stroke:#0000ff;stroke-dasharray:5.000000,7.000000,10.000000,7.000000;stroke-dashoffset:0.0;stroke-width:5.000000;"/> - +" style="fill:#ff0000;stroke:#0000ff;stroke-dasharray:5.000000,7.000000,10.000000,7.000000;stroke-dashoffset:0.0;stroke-linejoin:miter;stroke-width:5.000000;"/> + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -189,122 +198,102 @@ L0 4" id="m741efc42ff" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_patches/wedge_range.svg b/lib/matplotlib/tests/baseline_images/test_patches/wedge_range.svg index 09a11c755f22..c1fa833228ea 100644 --- a/lib/matplotlib/tests/baseline_images/test_patches/wedge_range.svg +++ b/lib/matplotlib/tests/baseline_images/test_patches/wedge_range.svg @@ -10,276 +10,274 @@ - - - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:3.000000;"/> - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:3.000000;"/> - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:3.000000;"/> - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:3.000000;"/> - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:3.000000;"/> - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:3.000000;"/> - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:3.000000;"/> - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:3.000000;"/> - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;stroke-width:3.000000;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -288,82 +286,82 @@ L0 4" id="m741efc42ff" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -371,7 +369,7 @@ L-4 0" id="mcb0005524f" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_path/path_clipping.svg b/lib/matplotlib/tests/baseline_images/test_path/path_clipping.svg index bd86170b41c6..db2deca27b54 100644 --- a/lib/matplotlib/tests/baseline_images/test_path/path_clipping.svg +++ b/lib/matplotlib/tests/baseline_images/test_path/path_clipping.svg @@ -10,148 +10,143 @@ - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -160,82 +155,82 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -243,128 +238,124 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -373,72 +364,72 @@ L236.618 44.64" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-lin - + - + - + - + - + - + - + - + - + - + - + - + @@ -446,128 +437,124 @@ L236.618 44.64" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-lin - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -576,72 +563,72 @@ L54 137.802" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - + - + - + - + - + - + - + - + - + - + @@ -649,128 +636,124 @@ L54 137.802" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -779,72 +762,72 @@ L236.618 137.802" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - + - + - + - + - + - + - + - + - + - + @@ -852,128 +835,124 @@ L236.618 137.802" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -982,72 +961,72 @@ L54 230.963" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - + - + - + - + - + - + - + - + - + - + @@ -1055,128 +1034,124 @@ L54 230.963" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1185,72 +1160,72 @@ L236.618 230.963" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - + - + - + - + - + - + - + - + - + - + @@ -1258,128 +1233,124 @@ L236.618 230.963" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1388,72 +1359,72 @@ L54 324.125" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - + - + - + - + - + - + - + - + - + - + @@ -1461,26 +1432,26 @@ L54 324.125" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - - - - - + + - + - - - - - - - + - + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_path/semi_log_with_zero.png b/lib/matplotlib/tests/baseline_images/test_path/semi_log_with_zero.png index 8edfb8a0a64b..11b91b03532b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_path/semi_log_with_zero.png and b/lib/matplotlib/tests/baseline_images/test_path/semi_log_with_zero.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_path/xkcd.pdf b/lib/matplotlib/tests/baseline_images/test_path/xkcd.pdf index 3b4d0fbd8f27..42bd8afeb3f2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_path/xkcd.pdf and b/lib/matplotlib/tests/baseline_images/test_path/xkcd.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_path/xkcd.png b/lib/matplotlib/tests/baseline_images/test_path/xkcd.png index 7765064a8202..18caf678115f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_path/xkcd.png and b/lib/matplotlib/tests/baseline_images/test_path/xkcd.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_path/xkcd.svg b/lib/matplotlib/tests/baseline_images/test_path/xkcd.svg index c6c595d46aa6..23a1a96cff36 100644 --- a/lib/matplotlib/tests/baseline_images/test_path/xkcd.svg +++ b/lib/matplotlib/tests/baseline_images/test_path/xkcd.svg @@ -11,1017 +11,1017 @@ +" style="fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:4.000000;"/> +" style="fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:4.000000;"/> - - + + - + + + + + + + + + - + - - - - - - - - - +L 517 42.507786 +L 518.4 42.550282 +" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:1.500000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> +" style="stroke:#ffffff;stroke-width:4.000000;"/> +" style="stroke:#000000;stroke-width:3.000000;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_patheffects/collection.png b/lib/matplotlib/tests/baseline_images/test_patheffects/collection.png index f901fad483a2..4746d567b7d3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patheffects/collection.png and b/lib/matplotlib/tests/baseline_images/test_patheffects/collection.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_patheffects/collection.svg b/lib/matplotlib/tests/baseline_images/test_patheffects/collection.svg index 8d63f7fd0451..655f41f60aed 100644 --- a/lib/matplotlib/tests/baseline_images/test_patheffects/collection.svg +++ b/lib/matplotlib/tests/baseline_images/test_patheffects/collection.svg @@ -10,4852 +10,4847 @@ - - - + - + - + - + - - - - + + + + - + - + - + - + - + - + - - - - - - + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + - + - + - - + + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - - + + + - + - + - + - - - + + + - + - + - + - - - + + + - + - + - + - - - + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -4864,9751 +4859,9635 @@ z - + - + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.pdf b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.pdf index 2d9a3fd243d6..86a6fd21e3ef 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.pdf and b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.png b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.png index 45cdb836cb79..1b7895d2e6b4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.png and b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.svg b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.svg index 7dafdd6277b1..8d409f4c9327 100644 --- a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.svg +++ b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect1.svg @@ -10,485 +10,453 @@ - - - - + - + - + - + - + - - + + - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - - - + + + + - - + - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect2.svg b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect2.svg index f52e08777fc7..de4ca1941a28 100644 --- a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect2.svg +++ b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect2.svg @@ -10,243 +10,229 @@ - - - - + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -255,587 +241,577 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - + + + + + + + + + + + + - + - - + + + - + - - + - + - - + + + - + - - - - - - - - - - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.pdf b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.pdf index 283f603d6ad8..bb73667d3267 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.pdf and b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.png b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.png index e6121f89292e..91cee1a16657 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.png and b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.svg b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.svg index 346b759d9c55..9a5dc9e15cd3 100644 --- a/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.svg +++ b/lib/matplotlib/tests/baseline_images/test_patheffects/patheffect3.svg @@ -10,513 +10,502 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + - + - + - + - + - + - + - + - + - - + + - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + @@ -525,2071 +514,2015 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - + + - - - + + - - + - - - - - + + + - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_png/pngsuite.png b/lib/matplotlib/tests/baseline_images/test_png/pngsuite.png index 31efe5506528..cc89b520ad8f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_png/pngsuite.png and b/lib/matplotlib/tests/baseline_images/test_png/pngsuite.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_quiver/quiver_animated_test_image.png b/lib/matplotlib/tests/baseline_images/test_quiver/quiver_animated_test_image.png index f05d07768957..c22225d81c05 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_quiver/quiver_animated_test_image.png and b/lib/matplotlib/tests/baseline_images/test_quiver/quiver_animated_test_image.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_quiver/quiver_single_test_image.png b/lib/matplotlib/tests/baseline_images/test_quiver/quiver_single_test_image.png index efb9689ed394..6f2c9e5b056f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_quiver/quiver_single_test_image.png and b/lib/matplotlib/tests/baseline_images/test_quiver/quiver_single_test_image.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_quiver/quiver_with_key_test_image.png b/lib/matplotlib/tests/baseline_images/test_quiver/quiver_with_key_test_image.png index fce1d38a1e7b..53152a006a31 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_quiver/quiver_with_key_test_image.png and b/lib/matplotlib/tests/baseline_images/test_quiver/quiver_with_key_test_image.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_scale/log_scales.png b/lib/matplotlib/tests/baseline_images/test_scale/log_scales.png index 52bb6bd9a2b5..404023bce904 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_scale/log_scales.png and b/lib/matplotlib/tests/baseline_images/test_scale/log_scales.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_scale/log_scales.svg b/lib/matplotlib/tests/baseline_images/test_scale/log_scales.svg index db0974b7495f..52dd71dc5d8b 100644 --- a/lib/matplotlib/tests/baseline_images/test_scale/log_scales.svg +++ b/lib/matplotlib/tests/baseline_images/test_scale/log_scales.svg @@ -5,105 +5,123 @@ - - - + - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -112,168 +130,148 @@ L0 2" id="md27378e979" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.pdf b/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.pdf index 95b03e16c2be..c7f389261c25 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.pdf and b/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.png b/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.png index 88ee33be905c..78d16adc4a60 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.png and b/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.svg b/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.svg index 8c3b06233ec2..eb3162cf045f 100644 --- a/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.svg +++ b/lib/matplotlib/tests/baseline_images/test_simplification/clipper_edge.svg @@ -5,77 +5,95 @@ - - - + + + + + + + + + + + + + - + - + - + - + - + - + @@ -84,75 +102,55 @@ L0 -4" id="mcb557df647" style="stroke:#000000;stroke-linecap:butt;stroke-width:0 - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/clipping.pdf b/lib/matplotlib/tests/baseline_images/test_simplification/clipping.pdf index 057da4e9809a..bde7a1fe34b6 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/clipping.pdf and b/lib/matplotlib/tests/baseline_images/test_simplification/clipping.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/clipping.png b/lib/matplotlib/tests/baseline_images/test_simplification/clipping.png index 5f7f5c864f2e..41f89abc3d43 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/clipping.png and b/lib/matplotlib/tests/baseline_images/test_simplification/clipping.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/clipping.svg b/lib/matplotlib/tests/baseline_images/test_simplification/clipping.svg index d2b5e7f58353..0935cf4d8e5c 100644 --- a/lib/matplotlib/tests/baseline_images/test_simplification/clipping.svg +++ b/lib/matplotlib/tests/baseline_images/test_simplification/clipping.svg @@ -5,111 +5,129 @@ - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -118,134 +136,115 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.pdf b/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.pdf index 93bed725e8b1..c39b73d74b74 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.pdf and b/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.png b/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.png index c6a8fc03dad3..32903d660580 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.png and b/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.svg b/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.svg index 183f122b743e..e718e7c24252 100644 --- a/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.svg +++ b/lib/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.svg @@ -5,209 +5,211 @@ - - - + + + + + + + + + + + + + - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/clipping_with_nans.png b/lib/matplotlib/tests/baseline_images/test_simplification/clipping_with_nans.png index c88c317ee396..28ce4fe86ac0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/clipping_with_nans.png and b/lib/matplotlib/tests/baseline_images/test_simplification/clipping_with_nans.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/clipping_with_nans.svg b/lib/matplotlib/tests/baseline_images/test_simplification/clipping_with_nans.svg index 1b950b632089..3906c2d14e06 100644 --- a/lib/matplotlib/tests/baseline_images/test_simplification/clipping_with_nans.svg +++ b/lib/matplotlib/tests/baseline_images/test_simplification/clipping_with_nans.svg @@ -10,407 +10,396 @@ - - - + - + - + - + - + - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-37"/> - - + + @@ -419,128 +408,126 @@ z - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -548,7 +535,7 @@ z - + diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.pdf b/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.pdf index 2daaf1aed548..c52c6b87147b 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.pdf and b/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.png b/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.png index 5cfbdbe2cf1e..e99aed330f0f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.png and b/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.svg b/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.svg index 5028831da564..dcd19f984eeb 100644 --- a/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.svg +++ b/lib/matplotlib/tests/baseline_images/test_simplification/fft_peaks.svg @@ -5,156 +5,174 @@ - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -163,134 +181,114 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.pdf b/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.pdf index a057de3d9198..f24b352fc32d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.pdf and b/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.png b/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.png index f73f61f6fd1a..7ccbcaec576c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.png and b/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.svg b/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.svg index 0d73eda04bae..4216931a7f62 100644 --- a/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.svg +++ b/lib/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.svg @@ -5,106 +5,123 @@ - - - +" style="fill:url(#h692db09807);stroke:#000000;stroke-linejoin:miter;"/> + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -113,119 +130,99 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/overflow.pdf b/lib/matplotlib/tests/baseline_images/test_simplification/overflow.pdf index 0231180f4cbc..5ff090be248d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/overflow.pdf and b/lib/matplotlib/tests/baseline_images/test_simplification/overflow.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/overflow.png b/lib/matplotlib/tests/baseline_images/test_simplification/overflow.png index 915c5696a81b..559eae11ad4c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/overflow.png and b/lib/matplotlib/tests/baseline_images/test_simplification/overflow.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/overflow.svg b/lib/matplotlib/tests/baseline_images/test_simplification/overflow.svg index aa4493cd84c8..c86d20d26c94 100644 --- a/lib/matplotlib/tests/baseline_images/test_simplification/overflow.svg +++ b/lib/matplotlib/tests/baseline_images/test_simplification/overflow.svg @@ -5,153 +5,171 @@ - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -160,122 +178,102 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.pdf b/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.pdf index 9a4c6dba81f7..7a935cbfd2bc 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.pdf and b/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.png b/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.png index 5e7ff414ecff..7b342039562c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.png and b/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.svg b/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.svg index 877d792ba460..21ecc9bfbf56 100644 --- a/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.svg +++ b/lib/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.svg @@ -5,287 +5,304 @@ - - - + - +" id="ma53147de87" style="stroke:#000000;stroke-width:0.500000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -294,122 +311,102 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.pdf b/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.pdf index 38783b886fd2..84e7e23b180f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.pdf and b/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.png b/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.png index 8333a4194802..d852259c65c3 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.png and b/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.svg b/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.svg index 55a574e3ba0b..4b7d5026d5b6 100644 --- a/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.svg +++ b/lib/matplotlib/tests/baseline_images/test_simplification/simplify_curve.svg @@ -5,106 +5,124 @@ - - - +" style="fill:none;stroke:#000000;stroke-linejoin:miter;"/> + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + @@ -113,98 +131,78 @@ L0 4" id="mdad270ee8e" style="stroke:#000000;stroke-linecap:butt;stroke-width:0. - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - + diff --git a/lib/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.png b/lib/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.png index e0e9b8b7d471..fc79b980f67c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.png and b/lib/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.svg b/lib/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.svg index f978b953df6f..3500247717a8 100644 --- a/lib/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.svg +++ b/lib/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.svg @@ -10,441 +10,432 @@ - - - + - + - + - + - + - + - + - + - - + + - + - +" id="DejaVuSans-31"/> - - + + - + - + - - + + - + - + - - + + - + - +" id="DejaVuSans-34"/> - - + + - + - +" id="DejaVuSans-35"/> - - + + - + - + - - + + - + - +" id="DejaVuSans-37"/> - - + + @@ -453,160 +444,158 @@ z - + - + - - + +" id="DejaVuSans-2e"/> - - - - - + + + + + - + - - - - - + + + + + - + - - - - - + + + + + - + - - - - - + + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + @@ -614,221 +603,216 @@ z - - - + + + - - + - - + + + + + - - - +" id="DejaVuSans-69"/> - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_spines/spines_capstyle.svg b/lib/matplotlib/tests/baseline_images/test_spines/spines_capstyle.svg index 4eae0598266b..c241158c7fd9 100644 --- a/lib/matplotlib/tests/baseline_images/test_spines/spines_capstyle.svg +++ b/lib/matplotlib/tests/baseline_images/test_spines/spines_capstyle.svg @@ -10,46 +10,44 @@ - - - - - + - + - + - + + + diff --git a/lib/matplotlib/tests/baseline_images/test_spines/spines_data_positions.png b/lib/matplotlib/tests/baseline_images/test_spines/spines_data_positions.png index 6634314e2445..563e081fcb44 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_spines/spines_data_positions.png and b/lib/matplotlib/tests/baseline_images/test_spines/spines_data_positions.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_spines/spines_data_positions.svg b/lib/matplotlib/tests/baseline_images/test_spines/spines_data_positions.svg index 1e9b07dbfa98..258d26175cb5 100644 --- a/lib/matplotlib/tests/baseline_images/test_spines/spines_data_positions.svg +++ b/lib/matplotlib/tests/baseline_images/test_spines/spines_data_positions.svg @@ -10,339 +10,329 @@ - - - + - + - + - + - + - + - + - + - - - - + + +" id="DejaVuSans-2e"/> + - - - - - + + + + + - + - + - - + +" id="DejaVuSans-35"/> - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -351,194 +341,194 @@ z - + - + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.pdf b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.pdf index 22d94cc98f34..9e4ee8d6ade4 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.pdf and b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.png b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.png index 14e42c88bcdc..0a80870d4a40 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.png and b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.svg b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.svg index b20f034d875d..0684af8ad009 100644 --- a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.svg +++ b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.svg @@ -10,2875 +10,2814 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + +" style="fill:#ffb900;stroke:#ffb900;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff3b00;stroke:#ff3b00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff8b00;stroke:#ff8b00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff7b00;stroke:#ff7b00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffa900;stroke:#ffa900;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffa700;stroke:#ffa700;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffa200;stroke:#ffa200;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff8a00;stroke:#ff8a00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff6300;stroke:#ff6300;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff7200;stroke:#ff7200;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff2b00;stroke:#ff2b00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff7c00;stroke:#ff7c00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff8900;stroke:#ff8900;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff8b00;stroke:#ff8b00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffb600;stroke:#ffb600;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffc300;stroke:#ffc300;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffd200;stroke:#ffd200;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffc800;stroke:#ffc800;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff9800;stroke:#ff9800;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffa500;stroke:#ffa500;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffa900;stroke:#ffa900;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff4f00;stroke:#ff4f00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff4700;stroke:#ff4700;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff3b00;stroke:#ff3b00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffa100;stroke:#ffa100;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff4700;stroke:#ff4700;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff9a00;stroke:#ff9a00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff7000;stroke:#ff7000;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff5900;stroke:#ff5900;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff7d00;stroke:#ff7d00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff9d00;stroke:#ff9d00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff6b00;stroke:#ff6b00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff7100;stroke:#ff7100;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff7800;stroke:#ff7800;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff9c00;stroke:#ff9c00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffcc00;stroke:#ffcc00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffdf00;stroke:#ffdf00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffec00;stroke:#ffec00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#fff500;stroke:#fff500;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#fffa00;stroke:#fffa00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#fff500;stroke:#fff500;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#fff600;stroke:#fff600;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffbb00;stroke:#ffbb00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff8f00;stroke:#ff8f00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ff8300;stroke:#ff8300;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffbb00;stroke:#ffbb00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffdc00;stroke:#ffdc00;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffa200;stroke:#ffa200;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffe800;stroke:#ffe800;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffb400;stroke:#ffb400;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffd800;stroke:#ffd800;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffd100;stroke:#ffd100;stroke-linecap:round;stroke-width:2.000000;"/> - - + +" style="fill:#ffc900;stroke:#ffc900;stroke-linecap:round;stroke-width:2.000000;"/> - + - + - + - + - + - + - + - + - - +" id="DejaVuSans-2212"/> + - - - + + + - + - + - + - - - + + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -2887,139 +2826,139 @@ Q19.5312 74.2188 31.7812 74.2188" id="BitstreamVeraSans-Roman-30"/> - + - + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -3027,1768 +2966,217 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +" style="fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.010000;"/> + - + - + - - - - + + + + - + - - - - + + + + - + - + - - - + + + - + - + - - - + + + - + - +" id="DejaVuSans-34"/> - - - + + + - + - - - + + + - + - - - - - - - - - - - - - - - + + @@ -4796,11 +3184,11 @@ z - - - - + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_linewidth_test_image.png b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_linewidth_test_image.png index 638c150f5e87..f96f19448ade 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_linewidth_test_image.png and b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_linewidth_test_image.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_linewidth_test_image.svg b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_linewidth_test_image.svg index ac62e5d537ce..5154dd9b48a2 100644 --- a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_linewidth_test_image.svg +++ b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_linewidth_test_image.svg @@ -10,2785 +10,2728 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:0.649517;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.130849;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:0.951078;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.674022;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.899564;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:3.203376;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:3.067927;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.457522;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.765089;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.764789;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.712888;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.718915;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:0.290633;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:0.867369;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.518547;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.259803;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.756305;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.904683;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.690775;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.880315;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.733687;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.950307;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.023024;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.183136;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.477618;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.535365;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.369706;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.954364;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.199628;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.734366;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.970792;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.140153;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.116828;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.617258;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.912477;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.885327;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.841399;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.236546;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.399053;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.600045;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.403885;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:0.910269;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:2.037783;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:0.662977;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:0.742786;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:0.656730;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:1.081614;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:0.807871;"/> - - + +" style="stroke:#000000;stroke-linecap:round;stroke-width:0.277165;"/> - + - + - + - + - + - + - + - + - - +" id="DejaVuSans-2212"/> + - - - + + + - + - + - + - - - + + + - + - + - +" id="DejaVuSans-31"/> - - - + + + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -2797,139 +2740,139 @@ Q19.5312 74.2188 31.7812 74.2188" id="BitstreamVeraSans-Roman-30"/> - + - + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -2937,7 +2880,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_masks_and_nans_test_image.png b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_masks_and_nans_test_image.png index cd07292e2b3c..c8627ba02ac0 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_masks_and_nans_test_image.png and b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_masks_and_nans_test_image.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_masks_and_nans_test_image.svg b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_masks_and_nans_test_image.svg index 80134cd3c9ee..03afde3a9884 100644 --- a/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_masks_and_nans_test_image.svg +++ b/lib/matplotlib/tests/baseline_images/test_streamplot/streamplot_masks_and_nans_test_image.svg @@ -10,3886 +10,3811 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - + - + - + - + - + - + - + - + - - + + - - - + + + - + - + - + - - - + + + - + - + - + - - - + + + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -3898,139 +3823,139 @@ Q19.5312 74.2188 31.7812 74.2188" id="BitstreamVeraSans-Roman-30"/> - + - + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -4038,7 +3963,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_subplots/subplots_offset_text.png b/lib/matplotlib/tests/baseline_images/test_subplots/subplots_offset_text.png index f635bb901e96..01d086b738d9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_subplots/subplots_offset_text.png and b/lib/matplotlib/tests/baseline_images/test_subplots/subplots_offset_text.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_subplots/subplots_offset_text.svg b/lib/matplotlib/tests/baseline_images/test_subplots/subplots_offset_text.svg index f3e45ad908c0..589c70359f61 100644 --- a/lib/matplotlib/tests/baseline_images/test_subplots/subplots_offset_text.svg +++ b/lib/matplotlib/tests/baseline_images/test_subplots/subplots_offset_text.svg @@ -10,189 +10,183 @@ - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -201,647 +195,636 @@ L0 4" id="m3a68111ca7" style="stroke:#000000;stroke-width:0.5;"/> - + - + - + - + - + - - + + - + - + - +" id="DejaVuSans-31"/> - - + + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - +" id="DejaVuSans-35"/> - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-37"/> - - + + - + - + - + - - + + - + - + - + - - + + - +" id="DejaVuSans-65"/> - - - - + + + + - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -850,120 +833,120 @@ L315.491 43.2" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-line - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -971,238 +954,233 @@ L315.491 43.2" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-line - - + - + - + - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - - - - + + + + @@ -1210,454 +1188,448 @@ L72 231.709" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejo - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - - - - + + + + - - + - + - + - + - + - + - + - - + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - +" id="DejaVuSans-2b"/> - - - - - + + + + + @@ -1665,120 +1637,120 @@ z - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1786,17 +1758,17 @@ z - - - - - + + - + - - + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_table/table_cell_manipulation.png b/lib/matplotlib/tests/baseline_images/test_table/table_cell_manipulation.png index e5d399a09e45..48eca0cbd737 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_table/table_cell_manipulation.png and b/lib/matplotlib/tests/baseline_images/test_table/table_cell_manipulation.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_table/table_labels.png b/lib/matplotlib/tests/baseline_images/test_table/table_labels.png index bd724d32353c..419abd0ca050 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_table/table_labels.png and b/lib/matplotlib/tests/baseline_images/test_table/table_labels.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_table/table_zorder.png b/lib/matplotlib/tests/baseline_images/test_table/table_zorder.png index 01cc2f613255..58f70066e7ab 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_table/table_zorder.png and b/lib/matplotlib/tests/baseline_images/test_table/table_zorder.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/annotation_negative_ax_coords.png b/lib/matplotlib/tests/baseline_images/test_text/annotation_negative_ax_coords.png index e070d0fe9d51..78bb1947e0f2 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/annotation_negative_ax_coords.png and b/lib/matplotlib/tests/baseline_images/test_text/annotation_negative_ax_coords.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/annotation_negative_fig_coords.png b/lib/matplotlib/tests/baseline_images/test_text/annotation_negative_fig_coords.png index 4503136ecd4e..c482b52e269f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/annotation_negative_fig_coords.png and b/lib/matplotlib/tests/baseline_images/test_text/annotation_negative_fig_coords.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/antialiased.png b/lib/matplotlib/tests/baseline_images/test_text/antialiased.png index 45792bbf7381..11ba1b082df9 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/antialiased.png and b/lib/matplotlib/tests/baseline_images/test_text/antialiased.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/axes_titles.png b/lib/matplotlib/tests/baseline_images/test_text/axes_titles.png index 57f6a1d7b37b..68b3b4209893 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/axes_titles.png and b/lib/matplotlib/tests/baseline_images/test_text/axes_titles.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/font_styles.png b/lib/matplotlib/tests/baseline_images/test_text/font_styles.png index 4e0f36082321..ae1ab5d3e231 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/font_styles.png and b/lib/matplotlib/tests/baseline_images/test_text/font_styles.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/font_styles.svg b/lib/matplotlib/tests/baseline_images/test_text/font_styles.svg index 37fba48c8076..e62797eb4c23 100644 --- a/lib/matplotlib/tests/baseline_images/test_text/font_styles.svg +++ b/lib/matplotlib/tests/baseline_images/test_text/font_styles.svg @@ -10,847 +10,816 @@ - - - + - + - + - + - - - - - - + + - + + - + - + + - + + +" id="DejaVuSans-74"/> - - - - - - - - - - - - + + + + + + + + + + + + - - + + - - + + + - - + + - - +" id="DejaVuSans-Bold-74"/> - - - - - - - - - - + + + + + + + + + + - - - + + - - - + + + + - + - + - - - - + + +" id="DejaVuSans-BoldOblique-46"/> + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - - + - +" id="DejaVuSans-67"/> + - - - - - - - - - - - + + + + + + + + + + + - + + - - - +" id="DejaVuSans-65"/> + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_text/multiline.pdf b/lib/matplotlib/tests/baseline_images/test_text/multiline.pdf index cc6485f24a63..14d313a75590 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/multiline.pdf and b/lib/matplotlib/tests/baseline_images/test_text/multiline.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/multiline.png b/lib/matplotlib/tests/baseline_images/test_text/multiline.png index f718b667229d..8a28f05bd6f8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/multiline.png and b/lib/matplotlib/tests/baseline_images/test_text/multiline.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/multiline.svg b/lib/matplotlib/tests/baseline_images/test_text/multiline.svg index e65c3dd59d6a..15bfc30bebdc 100644 --- a/lib/matplotlib/tests/baseline_images/test_text/multiline.svg +++ b/lib/matplotlib/tests/baseline_images/test_text/multiline.svg @@ -5,7 +5,7 @@ @@ -27,18 +27,18 @@ z " style="fill:#ffffff;"/> - - @@ -86,7 +86,7 @@ Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 " id="DejaVuSans-70"/> - + @@ -96,27 +96,69 @@ Q 48.6875 17.390625 48.6875 27.296875 - +" id="Cmmi10-4d"/> - - + + - + @@ -127,7 +169,7 @@ z - + @@ -136,14 +178,14 @@ z - - - - - + + + + + - + @@ -154,7 +196,7 @@ z - + @@ -164,43 +206,53 @@ z - + - - - - - + + + + + - + @@ -212,35 +264,6 @@ Q 13.921875 25.984375 13.921875 20.90625 - - - + + + - + @@ -353,38 +405,21 @@ Q 54.890625 44.34375 54.890625 33.015625 - +" id="DejaVuSans-78"/> + - - +" id="DejaVuSans-67"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_text/text_alignment.pdf b/lib/matplotlib/tests/baseline_images/test_text/text_alignment.pdf index e6199559b9da..a6e4fcf45d8a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/text_alignment.pdf and b/lib/matplotlib/tests/baseline_images/test_text/text_alignment.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/text_alignment.png b/lib/matplotlib/tests/baseline_images/test_text/text_alignment.png index a4f11d9fac9d..b28ea9027bc7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/text_alignment.png and b/lib/matplotlib/tests/baseline_images/test_text/text_alignment.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/text_alignment.svg b/lib/matplotlib/tests/baseline_images/test_text/text_alignment.svg index 2e1ab2a7c384..13adbe4deae7 100644 --- a/lib/matplotlib/tests/baseline_images/test_text/text_alignment.svg +++ b/lib/matplotlib/tests/baseline_images/test_text/text_alignment.svg @@ -10,848 +10,820 @@ - - - + - + - + - + - + - + - +" style="fill:#f5deb3;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - - - + + + + - + - - +" id="DejaVuSans-6a"/> - - - - - - - + + + + + + + - - - + + + + - - +" id="Cmr10-3d"/> - - - - - - + + + + + + - +" style="fill:#f5deb3;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - - +" id="DejaVuSans-62"/> + - - - - - - - - - - + + + + + + + + + + - - - - - - + + + + + + - +" style="fill:#f5deb3;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - - - + + + - + - - +" id="DejaVuSans-69"/> + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - + + + + + + - +" style="fill:#f5deb3;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - + - +" id="DejaVuSans-72"/> - - - - - - - - - - + + + + + + + + + + - - - - - - + + + + + + - +" style="fill:#f5deb3;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - - - - - - - + + + + + + + - - - - - - + + + + + + - +" style="fill:#f5deb3;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - - - - - - - - - - + + + + + + + + + + - - - - - - + + + + + + - +" style="fill:#f5deb3;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - + + + + + + - +" style="fill:#f5deb3;opacity:0.500000;stroke:#000000;stroke-linejoin:miter;"/> - - - - - - - - - - + + + + + + + + + + - - - - - - + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.pdf b/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.pdf index e097e1e5c8cb..d811b2903bb8 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.pdf and b/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.pdf differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.png b/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.png index 33c363d52148..4d51d1a30206 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.png and b/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.svg b/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.svg index 2b0b2068c8e6..db01e9349bd4 100644 --- a/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.svg +++ b/lib/matplotlib/tests/baseline_images/test_text/text_bboxclip.svg @@ -10,334 +10,324 @@ - - - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + @@ -346,547 +336,533 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - + - - - - - + + + + + - + + + - - - + + - - - + + - +" id="DejaVuSans-3f"/> - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - + - - - + - + + +" id="DejaVuSans-79"/> - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_text/titles.png b/lib/matplotlib/tests/baseline_images/test_text/titles.png index a830766304ca..caf466e92dea 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_text/titles.png and b/lib/matplotlib/tests/baseline_images/test_text/titles.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_text/titles.svg b/lib/matplotlib/tests/baseline_images/test_text/titles.svg index b31dffece94f..f16063a156fd 100644 --- a/lib/matplotlib/tests/baseline_images/test_text/titles.svg +++ b/lib/matplotlib/tests/baseline_images/test_text/titles.svg @@ -10,238 +10,224 @@ - - - + - + - + - + - - - + + - + - + + - +" id="DejaVuSans-69"/> - - - - - - - - - - - + + + + + + + + + + + - - + - +" id="DejaVuSans-67"/> + - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.png b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.png index 0195dca14596..4b853b4d6a2a 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.png and b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.svg b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.svg index 349e23404416..9428ebeffee1 100644 --- a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.svg +++ b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.svg @@ -10,317 +10,302 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - - + - + - + - + - + +" id="DejaVuSans-65"/> - - - - - - - - + + + + + + + + @@ -328,191 +313,186 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - +" id="DejaVuSans-79"/> - - - - - - - - + + + + + + + + - + - - + +" id="DejaVuSans-74"/> - - - - - - + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.png b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.png index 7f0bef91e9bc..951fdeb9e417 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.png and b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.svg b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.svg index 71f0f08cac16..5566752210df 100644 --- a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.svg +++ b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.svg @@ -10,317 +10,302 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - - + - + - + - + - + +" id="DejaVuSans-65"/> - - - - - - - - + + + + + + + + @@ -328,298 +313,288 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - +" id="DejaVuSans-79"/> - - - - - - - - + + + + + + + + - + - - + +" id="DejaVuSans-74"/> - - - - - - + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + @@ -627,197 +602,192 @@ L333.953 26.8475" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + @@ -825,197 +795,192 @@ L52.4334 236.367" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + @@ -1023,100 +988,100 @@ L333.953 236.367" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - - - - - - + - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.png b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.png index e152395bd730..98492f0b9e7f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.png and b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.svg b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.svg index d9875c7a7fc5..29b976377083 100644 --- a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.svg +++ b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.svg @@ -10,317 +10,302 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - - + - + - + - + - + +" id="DejaVuSans-65"/> - - - - - - - - + + + + + + + + @@ -328,298 +313,288 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - +" id="DejaVuSans-79"/> - - - - - - - - + + + + + + + + - + - - + +" id="DejaVuSans-74"/> - - - - - - + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + @@ -627,197 +602,192 @@ L52.4334 236.367" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + @@ -825,97 +795,97 @@ L333.953 26.8475" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - + + - + - - + + diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.png b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.png index 8800c270f9fa..fc82f5b010a7 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.png and b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.svg b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.svg index e238f2ae4d00..2d586f903f12 100644 --- a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.svg +++ b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.svg @@ -10,317 +10,302 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - - + - + - + - + - + +" id="DejaVuSans-65"/> - - - - - - - - + + + + + + + + @@ -328,298 +313,288 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - +" id="DejaVuSans-79"/> - - - - - - - - + + + + + + + + - + - - + +" id="DejaVuSans-74"/> - - - - - - + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + @@ -627,197 +602,192 @@ L240.113 26.8475" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + @@ -825,197 +795,192 @@ L52.4334 166.527" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + @@ -1023,100 +988,100 @@ L427.793 166.527" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - - - - - - + - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.png b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.png index 6643b0a6bfb9..4c7d1af67fbe 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.png and b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.svg b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.svg index 5d6d838b39f3..dbec8e7ed41c 100644 --- a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.svg +++ b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.svg @@ -10,285 +10,277 @@ - - - - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + - + - + - +" id="DejaVuSans-34"/> - - + + - + - + - + - - + + - + - + - + - - + + @@ -297,100 +289,100 @@ Q18.3125 60.0625 18.3125 54.3906" id="BitstreamVeraSans-Roman-38"/> - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + @@ -398,7 +390,7 @@ L-4 0" id="m81ec2b1422" style="stroke:#000000;stroke-width:0.5;"/> - + diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.png b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.png index c68654321057..8787fa9bc08f 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.png and b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.svg b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.svg index 0d2a1d69e81a..342084ef21db 100644 --- a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.svg +++ b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.svg @@ -10,317 +10,302 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - - + - + - + - + - + +" id="DejaVuSans-65"/> - - - - - - - - + + + + + + + + @@ -328,298 +313,288 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - +" id="DejaVuSans-79"/> - - - - - - - - + + + + + + + + - + - - + +" id="DejaVuSans-74"/> - - - - - - + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + @@ -627,184 +602,179 @@ L52.4334 236.368" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -813,174 +783,169 @@ L340.433 26.8475" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -989,187 +954,182 @@ L340.433 155.825" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - + - + - + - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + @@ -1177,92 +1137,92 @@ L340.433 284.802" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-l - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - - - - - - - - + + + + + + + + - - - - + - + + + + - + - + diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout7.png b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout7.png index fddf632dc2c7..b088ec1cf43e 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout7.png and b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout7.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout7.svg b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout7.svg index 1455bcd695fc..e331f84f1be4 100644 --- a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout7.svg +++ b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout7.svg @@ -10,317 +10,302 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - - + - + - + - + - + +" id="DejaVuSans-65"/> - - - - - - - - + + + + + + + + @@ -328,323 +313,314 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - +" id="DejaVuSans-79"/> - - - - - - - - + + + + + + + + - - - + - + + + - + - +" id="DejaVuSans-69"/> - - - - - - - - - - - + + + + + + + + + + + - - + - +" id="DejaVuSans-67"/> + - - - - - - - - - - - - + + + + + + + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout8.png b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout8.png index 75630dff9038..8c4a7c898394 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout8.png and b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout8.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout8.svg b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout8.svg index 15877e4d9bde..e9577436a363 100644 --- a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout8.svg +++ b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout8.svg @@ -10,317 +10,302 @@ - - - + - + - + - + - + - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +" id="DejaVuSans-35"/> - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + - - + - + - + - + - + +" id="DejaVuSans-65"/> - - - - - - - - + + + + + + + + @@ -328,191 +313,186 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - + - - - - + + + + - +" id="DejaVuSans-79"/> - - - - - - - - + + + + + + + + - + - - + +" id="DejaVuSans-74"/> - - - - - - + + + + + + - + diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes1.png b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes1.png index f186ef08bdc0..ddc9aebad132 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes1.png and b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes1.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes1.svg b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes1.svg index d43bfa137d4e..ca72b7b4238f 100644 --- a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes1.svg +++ b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes1.svg @@ -5,15 +5,15 @@ - @@ -27,13 +27,13 @@ z " style="fill:#ffffff;"/> - - @@ -47,292 +47,292 @@ L 251.229091 183.810909 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;"/> - - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +Q 12.9375 14.109375 22.625 23.890625 +Q 32.328125 33.6875 34.8125 36.53125 +Q 39.546875 41.84375 41.421875 45.53125 +Q 43.3125 49.21875 43.3125 52.78125 +Q 43.3125 58.59375 39.234375 62.25 +Q 35.15625 65.921875 28.609375 65.921875 +Q 23.96875 65.921875 18.8125 64.3125 +Q 13.671875 62.703125 7.8125 59.421875 +L 7.8125 69.390625 +Q 13.765625 71.78125 18.9375 73 +Q 24.125 74.21875 28.421875 74.21875 +Q 39.75 74.21875 46.484375 68.546875 +Q 53.21875 62.890625 53.21875 53.421875 +Q 53.21875 48.921875 51.53125 44.890625 +Q 49.859375 40.875 45.40625 35.40625 +Q 44.1875 33.984375 37.640625 27.21875 +Q 31.109375 20.453125 19.1875 8.296875 +" id="DejaVuSans-32"/> - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - +Q 6.984375 17.96875 6.984375 36.375 +Q 6.984375 53.65625 15.1875 63.9375 +Q 23.390625 74.21875 37.203125 74.21875 +Q 40.921875 74.21875 44.703125 73.484375 +Q 48.484375 72.75 52.59375 71.296875 +" id="DejaVuSans-36"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + @@ -341,130 +341,130 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -478,10 +478,10 @@ z " style="fill:#ff0000;"/> - @@ -494,18 +494,18 @@ z " style="fill:#ff0000;"/> - - @@ -518,10 +518,10 @@ z " style="fill:#ff0000;"/> - @@ -534,10 +534,10 @@ z " style="fill:#ff0000;"/> - @@ -552,13 +552,13 @@ z " style="fill:#ffffff;"/> - - @@ -572,128 +572,128 @@ L 532.749091 183.810909 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;"/> - - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -702,120 +702,120 @@ L 324.770909 38.669091 - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -829,10 +829,10 @@ z " style="fill:#0000ff;"/> - @@ -845,18 +845,18 @@ z " style="fill:#0000ff;"/> - - @@ -869,10 +869,10 @@ z " style="fill:#0000ff;"/> - @@ -885,10 +885,10 @@ z " style="fill:#0000ff;"/> - @@ -903,13 +903,13 @@ z " style="fill:#ffffff;"/> - - @@ -923,128 +923,128 @@ L 251.229091 393.330909 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;"/> - - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1053,120 +1053,120 @@ L 43.250909 248.189091 - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1180,10 +1180,10 @@ z " style="fill:#008000;"/> - @@ -1196,18 +1196,18 @@ z " style="fill:#008000;"/> - - @@ -1220,10 +1220,10 @@ z " style="fill:#008000;"/> - @@ -1236,10 +1236,10 @@ z " style="fill:#008000;"/> - @@ -1254,13 +1254,13 @@ z " style="fill:#ffffff;"/> - - @@ -1274,128 +1274,128 @@ L 532.749091 393.330909 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;"/> - - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1404,120 +1404,120 @@ L 324.770909 248.189091 - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1531,10 +1531,10 @@ z " style="fill:#ffff00;"/> - @@ -1547,18 +1547,18 @@ z " style="fill:#ffff00;"/> - - @@ -1571,10 +1571,10 @@ z " style="fill:#ffff00;"/> - @@ -1587,27 +1587,27 @@ z " style="fill:#ffff00;"/> - - + - - + + - + - - + + diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes2.png b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes2.png index ce279ae6966b..3d44fce30c6c 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes2.png and b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes2.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes2.svg b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes2.svg index a7ee864b4018..eb7f4dd0dc80 100644 --- a/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes2.svg +++ b/lib/matplotlib/tests/baseline_images/test_tightlayout/tight_layout_offsetboxes2.svg @@ -5,15 +5,15 @@ - @@ -27,13 +27,13 @@ z " style="fill:#ffffff;"/> - - @@ -47,292 +47,292 @@ L 265.155156 183.810909 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;"/> - - + - + - + - + - - + +" id="DejaVuSans-2e"/> - - - - + + + + - + - + - +Q 12.9375 14.109375 22.625 23.890625 +Q 32.328125 33.6875 34.8125 36.53125 +Q 39.546875 41.84375 41.421875 45.53125 +Q 43.3125 49.21875 43.3125 52.78125 +Q 43.3125 58.59375 39.234375 62.25 +Q 35.15625 65.921875 28.609375 65.921875 +Q 23.96875 65.921875 18.8125 64.3125 +Q 13.671875 62.703125 7.8125 59.421875 +L 7.8125 69.390625 +Q 13.765625 71.78125 18.9375 73 +Q 24.125 74.21875 28.421875 74.21875 +Q 39.75 74.21875 46.484375 68.546875 +Q 53.21875 62.890625 53.21875 53.421875 +Q 53.21875 48.921875 51.53125 44.890625 +Q 49.859375 40.875 45.40625 35.40625 +Q 44.1875 33.984375 37.640625 27.21875 +Q 31.109375 20.453125 19.1875 8.296875 +" id="DejaVuSans-32"/> - - - - + + + + - + - + - +" id="DejaVuSans-34"/> - - - - + + + + - + - + - +Q 6.984375 17.96875 6.984375 36.375 +Q 6.984375 53.65625 15.1875 63.9375 +Q 23.390625 74.21875 37.203125 74.21875 +Q 40.921875 74.21875 44.703125 73.484375 +Q 48.484375 72.75 52.59375 71.296875 +" id="DejaVuSans-36"/> - - - - + + + + - + - + - + - - - - + + + + - + - + - +" id="DejaVuSans-31"/> - - - - + + + + @@ -341,130 +341,130 @@ z - + - + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -478,10 +478,10 @@ z " style="fill:#ff0000;"/> - @@ -494,10 +494,10 @@ z " style="fill:#ff0000;"/> - @@ -544,21 +544,21 @@ z - - - @@ -567,133 +567,133 @@ L 553.463437 38.669091 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;"/> - - - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -702,120 +702,120 @@ L 331.559190 38.669091 - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -831,13 +831,13 @@ z " style="fill:#ffffff;"/> - - @@ -851,128 +851,128 @@ L 265.155156 393.330909 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;"/> - - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -981,120 +981,120 @@ L 43.250909 248.189091 - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1108,10 +1108,10 @@ z " style="fill:#008000;"/> - @@ -1124,10 +1124,10 @@ z " style="fill:#008000;"/> - @@ -1174,21 +1174,21 @@ z - - - @@ -1197,133 +1197,133 @@ L 553.463437 248.189091 " style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;"/> - - - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1332,120 +1332,120 @@ L 331.559190 248.189091 - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + - + - + - - - - + + + + @@ -1453,17 +1453,17 @@ L 331.559190 248.189091 - - - - - - - + - + + + + + + + diff --git a/lib/matplotlib/tests/baseline_images/test_transforms/pre_transform_data.png b/lib/matplotlib/tests/baseline_images/test_transforms/pre_transform_data.png index 16fa4a783ceb..b062bbd20862 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_transforms/pre_transform_data.png and b/lib/matplotlib/tests/baseline_images/test_transforms/pre_transform_data.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_transforms/pre_transform_data.svg b/lib/matplotlib/tests/baseline_images/test_transforms/pre_transform_data.svg index 6fc0280cb41d..69595ddf83b6 100644 --- a/lib/matplotlib/tests/baseline_images/test_transforms/pre_transform_data.svg +++ b/lib/matplotlib/tests/baseline_images/test_transforms/pre_transform_data.svg @@ -5,7 +5,7 @@ @@ -27,7 +27,7 @@ z " style="fill:#ffffff;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +" id="m7e8a106a3a" style="stroke:#000000;"/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:3.343969;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.992787;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.588050;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.469881;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.146641;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:5.176332;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:4.222007;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.186015;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:4.292078;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:4.316706;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.930897;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:3.822300;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:4.678638;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:4.364802;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:4.586196;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:4.518533;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:3.377069;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:3.428706;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:4.320976;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.452545;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.740901;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.170965;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:5.056674;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.426686;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.042637;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.397459;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.031861;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.754928;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.231408;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.828363;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.949362;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.498523;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:3.204752;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.017622;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:3.883519;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.447806;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.215293;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.246609;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.773003;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.435947;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.835310;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.930199;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.054601;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:4.083729;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.496781;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.158756;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.653559;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.949675;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.420672;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:0.447127;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.710205;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:2.409923;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:3.465176;"/> - - + +" style="fill:#0000ff;stroke:#0000ff;stroke-linecap:round;stroke-width:1.948223;"/> - - @@ -4898,20 +4898,20 @@ L 518.4 43.2 +" id="m5a2237a8bc" style="stroke:#000000;stroke-width:0.500000;"/> - + +" id="m84ae75c1be" style="stroke:#000000;stroke-width:0.500000;"/> - + @@ -4937,7 +4937,7 @@ Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 " id="DejaVuSans-30"/> - + @@ -4945,12 +4945,12 @@ Q 19.53125 74.21875 31.78125 74.21875 - + - + @@ -4980,7 +4980,7 @@ Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 " id="DejaVuSans-32"/> - + @@ -4989,12 +4989,12 @@ Q 31.109375 20.453125 19.1875 8.296875 - + - + @@ -5018,7 +5018,7 @@ L 4.890625 26.703125 z " id="DejaVuSans-34"/> - + @@ -5027,12 +5027,12 @@ z - + - + @@ -5067,7 +5067,7 @@ Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 " id="DejaVuSans-36"/> - + @@ -5076,12 +5076,12 @@ Q 48.484375 72.75 52.59375 71.296875 - + - + @@ -5124,7 +5124,7 @@ Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 " id="DejaVuSans-38"/> - + @@ -5133,12 +5133,12 @@ Q 18.3125 60.0625 18.3125 54.390625 - + - + @@ -5158,7 +5158,7 @@ L 12.40625 0 z " id="DejaVuSans-31"/> - + @@ -5172,25 +5172,25 @@ z +" id="mafad8985c9" style="stroke:#000000;stroke-width:0.500000;"/> - + +" id="mad71edf850" style="stroke:#000000;stroke-width:0.500000;"/> - + - + @@ -5198,17 +5198,17 @@ L -4 0 - + - + - + @@ -5217,17 +5217,17 @@ L -4 0 - + - + - + @@ -5236,17 +5236,17 @@ L -4 0 - + - + - + @@ -5255,17 +5255,17 @@ L -4 0 - + - + - + @@ -5274,17 +5274,17 @@ L -4 0 - + - + - + @@ -5295,7 +5295,7 @@ L -4 0 - + diff --git a/lib/matplotlib/tests/baseline_images/test_triangulation/tri_smooth_contouring.png b/lib/matplotlib/tests/baseline_images/test_triangulation/tri_smooth_contouring.png index f9fec56be0c6..655841671c49 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_triangulation/tri_smooth_contouring.png and b/lib/matplotlib/tests/baseline_images/test_triangulation/tri_smooth_contouring.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_triangulation/tri_smooth_gradient.png b/lib/matplotlib/tests/baseline_images/test_triangulation/tri_smooth_gradient.png index 0dd2d6f0f6ba..071102bcf92d 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_triangulation/tri_smooth_gradient.png and b/lib/matplotlib/tests/baseline_images/test_triangulation/tri_smooth_gradient.png differ diff --git a/lib/matplotlib/tests/baseline_images/test_triangulation/tripcolor1.png b/lib/matplotlib/tests/baseline_images/test_triangulation/tripcolor1.png index e513ce86b92e..5446c9a6c940 100644 Binary files a/lib/matplotlib/tests/baseline_images/test_triangulation/tripcolor1.png and b/lib/matplotlib/tests/baseline_images/test_triangulation/tripcolor1.png differ diff --git a/lib/matplotlib/tests/test_axes.py b/lib/matplotlib/tests/test_axes.py index 28223b49694a..3a1a25053da5 100644 --- a/lib/matplotlib/tests/test_axes.py +++ b/lib/matplotlib/tests/test_axes.py @@ -238,7 +238,7 @@ def test_polar_coord_annotations(): ax.set_ylim(-20, 20) -@image_comparison(baseline_images=['fill_units'], tol=18, extensions=['png'], +@image_comparison(baseline_images=['fill_units'], extensions=['png'], savefig_kwarg={'dpi': 60}) def test_fill_units(): from datetime import datetime @@ -1046,7 +1046,7 @@ def test_markevery_polar(): @image_comparison(baseline_images=['marker_edges'], - remove_text=True, tol=3) + remove_text=True) def test_marker_edges(): x = np.linspace(0, 1, 10) fig = plt.figure() @@ -1062,14 +1062,14 @@ def test_marker_edges(): def test_bar_tick_label_single(): # From 2516: plot bar with array of string labels for x axis ax = plt.gca() - ax.bar(0, 1 , tick_label='a') + ax.bar(0, 1, tick_label='0') # Reuse testcase from above for a labeled data test data = {"a": 0, "b": 1} fig = plt.figure() ax = fig.add_subplot(111) ax = plt.gca() - ax.bar("a", "b" , tick_label='a', data=data) + ax.bar("a", "b", tick_label='0', data=data) @cleanup @@ -1120,7 +1120,7 @@ def test_hist_step_empty(): ax = plt.gca() ax.hist([], histtype='step') -@image_comparison(baseline_images=['hist_steplog'], remove_text=True) +@image_comparison(baseline_images=['hist_steplog'], remove_text=True, tol=0.05) def test_hist_steplog(): np.random.seed(0) data = np.random.standard_normal(2000) @@ -1738,7 +1738,7 @@ def test_bxp_bad_positions(): assert_raises(ValueError, ax.bxp, logstats, positions=[2, 3]) -@image_comparison(baseline_images=['boxplot', 'boxplot']) +@image_comparison(baseline_images=['boxplot', 'boxplot'], tol=1) def test_boxplot(): x = np.linspace(-7, 7, 140) x = np.hstack([-25, x, 25]) @@ -1797,7 +1797,7 @@ def _rc_test_bxp_helper(ax, rc_dict): return ax @image_comparison(baseline_images=['boxplot_rc_parameters'], - savefig_kwarg={'dpi': 100}, remove_text=True) + savefig_kwarg={'dpi': 100}, remove_text=True, tol=1) def test_boxplot_rc_parameters(): fig, ax = plt.subplots(3) @@ -2747,7 +2747,7 @@ def test_subplot_key_hash(): @image_comparison(baseline_images=['specgram_freqs', 'specgram_freqs_linear'], - remove_text=True, extensions=['png']) + remove_text=True, extensions=['png'], tol=0.01) def test_specgram_freqs(): '''test axes.specgram in default (psd) mode with sinusoidal stimuli''' n = 10000 @@ -2800,7 +2800,7 @@ def test_specgram_freqs(): @image_comparison(baseline_images=['specgram_noise', 'specgram_noise_linear'], - remove_text=True, extensions=['png']) + remove_text=True, extensions=['png'], tol=0.01) def test_specgram_noise(): '''test axes.specgram in default (psd) mode with noise stimuli''' np.random.seed(0) @@ -2847,7 +2847,7 @@ def test_specgram_noise(): @image_comparison(baseline_images=['specgram_magnitude_freqs', 'specgram_magnitude_freqs_linear'], - remove_text=True, extensions=['png']) + remove_text=True, extensions=['png'], tol=0.01) def test_specgram_magnitude_freqs(): '''test axes.specgram in magnitude mode with sinusoidal stimuli''' n = 10000 diff --git a/lib/matplotlib/tests/test_backend_pdf.py b/lib/matplotlib/tests/test_backend_pdf.py index f5f58b71064e..c062657499b6 100644 --- a/lib/matplotlib/tests/test_backend_pdf.py +++ b/lib/matplotlib/tests/test_backend_pdf.py @@ -122,7 +122,7 @@ def test_hatching_legend(): @image_comparison(baseline_images=['grayscale_alpha'], - extensions=['pdf'], tol=1e-3) + extensions=['pdf']) def test_grayscale_alpha(): """Masking images with NaN did not work for grayscale images""" x, y = np.ogrid[-2:2:.1, -2:2:.1] diff --git a/lib/matplotlib/tests/test_bbox_tight.py b/lib/matplotlib/tests/test_bbox_tight.py index 97f4d1ace22d..7e05e5fd5432 100644 --- a/lib/matplotlib/tests/test_bbox_tight.py +++ b/lib/matplotlib/tests/test_bbox_tight.py @@ -15,7 +15,7 @@ @image_comparison(baseline_images=['bbox_inches_tight'], remove_text=True, - savefig_kwarg=dict(bbox_inches='tight'), tol=15) + savefig_kwarg=dict(bbox_inches='tight')) def test_bbox_inches_tight(): #: Test that a figure saved using bbox_inches='tight' is clipped correctly data = [[ 66386, 174296, 75131, 577908, 32015], @@ -84,8 +84,8 @@ def test_bbox_inches_tight_clipping(): path.vertices *= 0.25 patch.set_clip_path(path, transform=ax.transAxes) plt.gcf().artists.append(patch) - - + + @image_comparison(baseline_images=['bbox_inches_tight_raster'], remove_text=True, savefig_kwarg={'bbox_inches': 'tight'}) def test_bbox_inches_tight_raster(): diff --git a/lib/matplotlib/tests/test_dates.py b/lib/matplotlib/tests/test_dates.py index 766d07edcb91..54afc633bf7e 100644 --- a/lib/matplotlib/tests/test_dates.py +++ b/lib/matplotlib/tests/test_dates.py @@ -71,7 +71,7 @@ def test_date_axhline(): fig.subplots_adjust(left=0.25) -@image_comparison(baseline_images=['date_axvline'], tol=16, +@image_comparison(baseline_images=['date_axvline'], extensions=['png']) def test_date_axvline(): # test ax hline with date inputs diff --git a/lib/matplotlib/tests/test_image.py b/lib/matplotlib/tests/test_image.py index cbcb9b162625..39db286b6861 100644 --- a/lib/matplotlib/tests/test_image.py +++ b/lib/matplotlib/tests/test_image.py @@ -354,7 +354,7 @@ def test_image_composite_alpha(): ax.set_ylim([5, 0]) -@image_comparison(baseline_images=['rasterize_10dpi'], extensions=['pdf','svg'], tol=5e-2, remove_text=True) +@image_comparison(baseline_images=['rasterize_10dpi'], extensions=['pdf','svg'], remove_text=True) def test_rasterize_dpi(): # This test should check rasterized rendering with high output resolution. # It plots a rasterized line and a normal image with implot. So it will catch diff --git a/lib/matplotlib/tests/test_mathtext.py b/lib/matplotlib/tests/test_mathtext.py index 21e0d25ca7e9..f329c1b89491 100644 --- a/lib/matplotlib/tests/test_mathtext.py +++ b/lib/matplotlib/tests/test_mathtext.py @@ -157,8 +157,7 @@ def make_set(basename, fontset, tests, extensions=None): def make_test(filename, test): - @image_comparison(baseline_images=[filename], extensions=extensions, - tol=32) + @image_comparison(baseline_images=[filename], extensions=extensions) def single_test(): matplotlib.rcParams['mathtext.fontset'] = fontset fig = plt.figure(figsize=(5.25, 0.75)) diff --git a/lib/matplotlib/tests/test_path.py b/lib/matplotlib/tests/test_path.py index ed08b5620076..156cf4ad7419 100644 --- a/lib/matplotlib/tests/test_path.py +++ b/lib/matplotlib/tests/test_path.py @@ -91,6 +91,8 @@ def test_make_compound_path_empty(): @image_comparison(baseline_images=['xkcd'], remove_text=True) def test_xkcd(): + np.random.seed(0) + x = np.linspace(0, 2.0 * np.pi, 100.0) y = np.sin(x) diff --git a/lib/matplotlib/textpath.py b/lib/matplotlib/textpath.py index 64b44c0726e1..875e7de29dd2 100644 --- a/lib/matplotlib/textpath.py +++ b/lib/matplotlib/textpath.py @@ -20,6 +20,7 @@ from matplotlib.font_manager import FontProperties, get_font from matplotlib.transforms import Affine2D from matplotlib.externals.six.moves.urllib.parse import quote as urllib_quote +from collections import OrderedDict class TextToPath(object): @@ -183,7 +184,7 @@ def get_glyphs_with_font(self, font, s, glyph_map=None, glyph_map = dict() if return_new_glyphs_only: - glyph_map_new = dict() + glyph_map_new = OrderedDict() else: glyph_map_new = glyph_map diff --git a/lib/matplotlib/ticker.py b/lib/matplotlib/ticker.py index eea7e852187c..b487671fb5e9 100644 --- a/lib/matplotlib/ticker.py +++ b/lib/matplotlib/ticker.py @@ -1937,7 +1937,7 @@ def __call__(self): # TODO: Need a better way to figure out ndivs ndivs = 1 else: - x = int(round(10 ** (np.log10(majorstep) % 1))) + x = int(np.round(10 ** (np.log10(majorstep) % 1))) if x in [1, 5, 10]: ndivs = 5 else: diff --git a/lib/mpl_toolkits/mplot3d/axes3d.py b/lib/mpl_toolkits/mplot3d/axes3d.py index af9d97e8e082..59c997944f81 100755 --- a/lib/mpl_toolkits/mplot3d/axes3d.py +++ b/lib/mpl_toolkits/mplot3d/axes3d.py @@ -1947,7 +1947,7 @@ def _3d_extend_contour(self, cset, stride=5): polyverts = [] normals = [] - nsteps = round(len(topverts[0]) / stride) + nsteps = np.round(len(topverts[0]) / stride) if nsteps <= 1: if len(topverts[0]) > 1: nsteps = 2 @@ -1955,9 +1955,9 @@ def _3d_extend_contour(self, cset, stride=5): continue stepsize = (len(topverts[0]) - 1) / (nsteps - 1) - for i in range(int(round(nsteps)) - 1): - i1 = int(round(i * stepsize)) - i2 = int(round((i + 1) * stepsize)) + for i in range(int(np.round(nsteps)) - 1): + i1 = int(np.round(i * stepsize)) + i2 = int(np.round((i + 1) * stepsize)) polyverts.append([topverts[0][i1], topverts[0][i2], botverts[0][i2], @@ -2497,13 +2497,13 @@ def quiver(self, *args, **kwargs): *pivot*: [ 'tail' | 'middle' | 'tip' ] The part of the arrow that is at the grid point; the arrow - rotates about this point, hence the name *pivot*. + rotates about this point, hence the name *pivot*. Default is 'tail' - + *normalize*: [False | True] - When True, all of the arrows will be the same length. This + When True, all of the arrows will be the same length. This defaults to False, where the arrows will be different lengths - depending on the values of u,v,w. + depending on the values of u,v,w. Any additional keyword arguments are delegated to :class:`~matplotlib.collections.LineCollection` @@ -2531,8 +2531,9 @@ def calc_arrow(uvw, angle=15): Rpos = np.array([[c+(x**2)*(1-c), x*y*(1-c), y*s], [y*x*(1-c), c+(y**2)*(1-c), -x*s], [-y*s, x*s, c]]) - # opposite rotation negates everything but the diagonal - Rneg = Rpos * (np.eye(3)*2 - 1) + # opposite rotation negates all the sin terms + Rneg = Rpos.copy() + Rneg[[0,1,2,2],[2,2,0,1]] = -Rneg[[0,1,2,2],[2,2,0,1]] # multiply them to get the rotated vector return Rpos.dot(uvw), Rneg.dot(uvw) @@ -2606,7 +2607,7 @@ def calc_arrow(uvw, angle=15): norm = np.sqrt(np.sum(UVW**2, axis=1)) # If any row of UVW is all zeros, don't make a quiver for it - mask = norm > 1e-10 + mask = norm > 0 XYZ = XYZ[mask] if normalize: UVW = UVW[mask] / norm[mask].reshape((-1, 1)) diff --git a/lib/mpl_toolkits/tests/baseline_images/test_axes_grid/imagegrid_cbar_mode.png b/lib/mpl_toolkits/tests/baseline_images/test_axes_grid/imagegrid_cbar_mode.png index 09dfd7ddbbaa..b172fa48c866 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_axes_grid/imagegrid_cbar_mode.png and b/lib/mpl_toolkits/tests/baseline_images/test_axes_grid/imagegrid_cbar_mode.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_axes_grid1/divider_append_axes.png b/lib/mpl_toolkits/tests/baseline_images/test_axes_grid1/divider_append_axes.png index dab7c58dd861..9ad2fc28322f 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_axes_grid1/divider_append_axes.png and b/lib/mpl_toolkits/tests/baseline_images/test_axes_grid1/divider_append_axes.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_axes_grid1/divider_append_axes.svg b/lib/mpl_toolkits/tests/baseline_images/test_axes_grid1/divider_append_axes.svg index 10adc9b52840..87bf21d75b60 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_axes_grid1/divider_append_axes.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_axes_grid1/divider_append_axes.svg @@ -10,1175 +10,1175 @@ - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1187,118 +1187,118 @@ L 0 4 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1306,347 +1306,347 @@ L -4 0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1655,35 +1655,35 @@ L 424.8 302.4 - + - + - @@ -1694,243 +1694,243 @@ Q 19.53125 74.21875 31.78125 74.21875 - + - + - - + - + - + - - + - + - + - - + - + - + - - + - + - + - - - + + - + - + - - + + @@ -1938,251 +1938,251 @@ z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -2195,136 +2195,136 @@ L 518.4 136.8 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + - + - + - - + + @@ -2333,108 +2333,108 @@ L 518.4 136.8 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2442,251 +2442,251 @@ L 518.4 136.8 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -2699,136 +2699,136 @@ L 158.4 136.8 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - - + + - + - + - - + + @@ -2837,108 +2837,108 @@ L 158.4 136.8 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2946,347 +2946,347 @@ L 158.4 136.8 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3295,12 +3295,12 @@ L 424.8 43.2 - + - + @@ -3313,116 +3313,116 @@ L 424.8 43.2 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - - + + @@ -3430,20 +3430,20 @@ L 424.8 43.2 - + - - + + - - + + - - + + - - + + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/axes3d_cla.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/axes3d_cla.png index 6bea96258174..28c53105dbac 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/axes3d_cla.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/axes3d_cla.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/axes3d_labelpad.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/axes3d_labelpad.png index 2030124524b1..a3585070b398 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/axes3d_labelpad.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/axes3d_labelpad.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.pdf b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.pdf index 18489251692e..6a017195eb6a 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.pdf and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.pdf differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.png index 9c80f196971e..1e5c7c1a6615 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.svg index 0b37edf833a4..eae595176bd7 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/bar3d.svg @@ -10,932 +10,987 @@ - - - + - + - + - + - - - - - - - - - - - - + + + + + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.pdf b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.pdf index a07ca1c5711d..d72cfee76b9b 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.pdf and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.pdf differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.png index dc5a214ed20f..a8aa9cab3161 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.svg index 4ca2fbe05030..85c9eca23f97 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contour3d.svg @@ -10,3207 +10,2443 @@ - - - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + - + - + - + - + - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - - - - - + + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - - - - - - + - + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.pdf b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.pdf index fbd01e0a226a..5f8ef9630856 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.pdf and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.pdf differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.png index 2c77f390af7b..f38eaa4b91a1 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.svg index 37ef1c5eeddd..d3af3bc163d9 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d.svg @@ -10,7406 +10,7208 @@ - - - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + - + - + - + - + - + - - - - - - +" style="fill:#506bda;"/> - - - - - - +M 283.081544 299.410729 +L 282.128459 299.067098 +L 281.03165 298.626857 +L 279.978869 298.156061 +L 279.13015 297.73324 +L 278.972474 297.65312 +L 278.017781 297.114344 +L 277.114164 296.54029 +L 277.085079 296.519826 +L 276.273233 295.922803 +L 275.738401 295.477062 +L 275.495908 295.261365 +L 274.792705 294.54864 +L 274.774958 294.528346 +L 274.182693 293.771255 +L 274.101127 293.650856 +L 273.682369 292.917715 +L 273.637628 292.825295 +L 273.350646 292.043396 +L 273.331097 291.960374 +L 273.21793 291.299707 +L 273.209243 290.842692 +L 273.216792 290.588683 +L 273.343816 289.909438 +L 273.526309 289.417082 +L 273.58916 289.259544 +L 273.956469 288.639823 +L 274.44267 288.049481 +L 275.053558 287.489858 +L 275.797841 286.962991 +L 276.687748 286.471759 +L 277.739877 286.020081 +L 278.849215 285.654643 +L 278.977403 285.613449 +L 280.442372 285.261863 +L 281.305043 285.114318 +L 282.181691 284.976466 +L 283.359973 284.856829 +L 284.285342 284.778694 +L 285.214562 284.740855 +L 286.909147 284.705689 +L 286.954163 284.706257 +L 288.578835 284.753247 +L 290.155139 284.834736 +L 290.471064 284.857227 +L 291.660968 284.966576 +L 293.121913 285.130682 +L 294.546472 285.321094 +L 295.936454 285.536601 +L 297.09497 285.740745 +L 297.292311 285.77696 +L 298.612536 286.043329 +L 299.906141 286.32933 +L 301.174462 286.634069 +L 302.418782 286.956683 +L 303.640342 287.296337 +L 303.802924 287.344713 +L 304.833616 287.657061 +L 306.003197 288.035614 +L 307.151452 288.430345 +L 308.279638 288.840399 +L 309.388987 289.264934 +L 310.116952 289.557698 +L 310.473012 289.708688 +L 311.522942 290.178075 +L 312.555822 290.66082 +L 313.300382 291.023895 +L 313.562766 291.163414 +L 314.525116 291.699475 +L 315.472728 292.247397 +L 315.479013 292.251177 +L 316.34884 292.848542 +L 317.023035 293.32784 +L 317.193516 293.473882 +L 317.960507 294.157236 +L 318.111855 294.296639 +L 318.621064 294.919787 +L 318.823732 295.176158 +L 319.129552 295.795154 +L 319.217771 295.980427 +L 319.330888 296.718177 +L 319.289591 296.927431 +L 319.193783 297.396668 +L 318.833324 298.022256 +L 318.270443 298.599881 +L 317.520712 299.133207 +L 316.597415 299.625354 +L 315.511348 300.078849 +L 314.533218 300.40861 +L 314.268325 300.495026 +L 312.864146 300.8728 +L 311.886434 301.090687 +L 311.301635 301.212783 +L 309.60086 301.5075 +L 309.570138 301.51233 +L 307.641386 301.764528 +L 307.514062 301.778404 +L 305.55245 301.957497 +L 305.486412 301.962278 +L 303.689753 302.064198 +L 303.032405 302.087844 +L 301.903361 302.115182 +L 300.188713 302.119121 +L 300.181642 302.119077 +L 298.523478 302.076843 +L 296.915953 301.997992 +L 296.633952 301.978 +L 295.359878 301.882053 +L 293.849865 301.73304 +L 292.383493 301.55281 +L 291.172573 301.374055 +L 290.959589 301.342308 +L 289.577587 301.102037 +L 288.235848 300.833274 +L 286.93398 300.536389 +L 285.671882 300.211545 +L 284.449746 299.858694 +L 283.268051 299.477578 +z +" style="fill:#80a3fa;"/> - - - + - - - - - - - +M 272.284873 304.743757 +L 271.273518 304.380381 +L 270.156529 303.949907 +L 269.069012 303.499307 +L 268.012508 303.027544 +L 267.779124 302.916151 +L 266.981426 302.538666 +L 265.98185 302.028401 +L 265.089267 301.533908 +L 265.01739 301.494249 +L 264.080475 300.941659 +L 263.183735 300.361733 +L 263.145492 300.335317 +L 262.318393 299.760774 +L 261.645518 299.246369 +L 261.496081 299.130615 +L 260.712795 298.474179 +L 260.448702 298.232605 +L 259.974795 297.787128 +L 259.480813 297.275818 +L 259.286523 297.066421 +L 258.695564 296.364642 +L 258.651735 296.30952 +L 258.075866 295.512707 +L 258.061811 295.491422 +L 257.567243 294.670252 +L 257.556445 294.650473 +L 257.162416 293.837595 +L 257.136419 293.774884 +L 256.866341 293.049489 +L 256.798095 292.816449 +L 256.659568 292.284011 +L 256.572413 291.781022 +L 256.536333 291.539722 +L 256.488874 290.814704 +L 256.492148 290.645888 +L 256.509177 290.10698 +L 256.603312 289.417987 +L 256.613495 289.37204 +L 256.754131 288.743544 +L 256.975403 288.086953 +L 257.073187 287.86435 +L 257.2548 287.445203 +L 257.597286 286.819464 +L 258.007442 286.210813 +L 258.342438 285.794558 +L 258.482121 285.618459 +L 259.020782 285.042242 +L 259.633549 284.484569 +L 260.324568 283.946404 +L 261.099789 283.429141 +L 261.967298 282.934686 +L 262.937792 282.465564 +L 263.352208 282.297 +L 264.017274 282.023172 +L 265.221768 281.611302 +L 266.543315 281.246022 +L 266.578122 281.236334 +L 268.08995 280.899067 +L 268.929846 280.755752 +L 269.799797 280.609618 +L 271.040895 280.457395 +L 271.739858 280.375601 +L 272.981577 280.277854 +L 273.96127 280.209145 +L 274.810328 280.17649 +L 276.545544 280.129603 +L 276.561264 280.12958 +L 278.231867 280.139062 +L 279.622408 280.1678 +L 279.861578 280.177349 +L 281.436467 280.254344 +L 282.980165 280.353501 +L 283.473652 280.390779 +L 284.485209 280.480157 +L 285.959023 280.62915 +L 287.407374 280.79647 +L 288.831425 280.98135 +L 288.918559 280.993631 +L 290.227368 281.186544 +L 291.601629 281.407555 +L 292.955456 281.643547 +L 294.289705 281.893956 +L 295.605184 282.158253 +L 296.902659 282.435936 +L 298.182857 282.726527 +L 299.446478 283.029567 +L 300.694193 283.344617 +L 301.926653 283.671248 +L 303.144489 284.009043 +L 304.34832 284.357595 +L 305.538754 284.7165 +L 306.716391 285.085362 +L 307.881826 285.463782 +L 308.423483 285.646226 +L 309.033425 285.852968 +L 310.171636 286.252632 +L 311.299111 286.660892 +L 312.41648 287.07732 +L 313.524377 287.501484 +L 313.922877 287.658373 +L 314.617676 287.937121 +L 315.699105 288.382288 +L 316.772695 288.834093 +L 317.839133 289.292056 +L 317.853221 289.298237 +L 318.88459 289.766256 +L 319.923811 290.246007 +L 320.957737 290.730644 +L 321.008857 290.754961 +L 321.967091 291.234246 +L 322.971394 291.742616 +L 323.653075 292.09117 +L 323.963427 292.261048 +L 324.933532 292.796643 +L 325.901335 293.334267 +L 325.901939 293.334634 +L 326.832049 293.901873 +L 327.76232 294.470217 +L 327.805452 294.496488 +L 328.647369 295.073028 +L 329.399289 295.585796 +L 329.523048 295.684036 +L 330.349327 296.332755 +L 330.703159 296.606928 +L 331.134033 297.013537 +L 331.72758 297.562281 +L 331.868725 297.732716 +L 332.487271 298.455267 +L 332.521483 298.514009 +L 332.999174 299.289841 +L 333.035025 299.399997 +L 333.278023 300.069435 +L 333.302356 300.470267 +L 333.335213 300.796689 +L 333.191387 301.476473 +L 332.893957 302.043892 +L 332.86048 302.112054 +L 332.370969 302.710211 +L 331.729731 303.272531 +L 330.95323 303.80292 +L 330.054501 304.304464 +L 329.478425 304.576359 +L 329.047659 304.780518 +L 327.944634 305.233919 +L 326.744472 305.664393 +L 325.946722 305.918218 +L 325.456044 306.074045 +L 324.086164 306.464484 +L 323.170596 306.698153 +L 322.630094 306.834529 +L 321.091622 307.185058 +L 320.670417 307.272459 +L 319.468944 307.5156 +L 318.337933 307.721721 +L 317.754177 307.824204 +L 316.123861 308.082689 +L 315.94326 308.109843 +L 314.028614 308.370634 +L 314.003628 308.373749 +L 311.998035 308.603563 +L 311.960456 308.607476 +L 309.982923 308.792449 +L 309.834802 308.804511 +L 308.06256 308.935046 +L 307.516213 308.967894 +L 306.19382 309.039472 +L 305.011485 309.086144 +L 304.373006 309.108559 +L 302.595802 309.145579 +L 302.274514 309.147941 +L 300.856166 309.155053 +L 299.231316 309.135138 +L 299.158078 309.134163 +L 297.490193 309.091283 +L 295.861244 309.02012 +L 295.741158 309.013258 +L 294.258878 308.929758 +L 292.690642 308.814768 +L 291.501957 308.708339 +L 291.153071 308.677747 +L 289.640219 308.52308 +L 288.157712 308.346746 +L 286.704108 308.149858 +L 285.443999 307.958696 +L 285.277534 307.933836 +L 283.873645 307.701879 +L 282.496737 307.450939 +L 281.146188 307.181524 +L 279.821571 306.894001 +L 278.522644 306.588599 +L 277.249354 306.265415 +L 276.001832 305.92441 +L 274.780395 305.565414 +L 273.585552 305.188118 +L 272.418006 304.792077 +z +" style="fill:#b2ccfb;"/> - - - - - - +" style="fill:#dddcdc;"/> - - - - - - +M 346.572105 292.63587 +L 345.887634 292.409649 +L 344.722681 292.011801 +L 343.569153 291.606366 +L 342.426473 291.193792 +L 341.29406 290.774534 +L 340.614962 290.516656 +L 340.174894 290.346414 +L 339.070605 289.908261 +L 337.974921 289.464722 +L 336.887195 289.016291 +L 336.415117 288.817914 +L 335.815859 288.556792 +L 334.758405 288.0881 +L 333.706936 287.61603 +L 333.060615 287.322136 +L 332.670486 287.133983 +L 331.654403 286.638081 +L 330.642003 286.140551 +L 330.292382 285.96742 +L 329.657686 285.623598 +L 328.688428 285.096778 +L 328.016884 284.731305 +L 327.737809 284.557515 +L 326.826483 283.990828 +L 326.205379 283.606759 +L 325.941813 283.405986 +L 325.11294 282.7819 +L 324.860051 282.594098 +L 324.380772 282.089042 +L 323.997135 281.696966 +L 323.810736 281.280254 +L 323.636756 280.91992 +L 323.799319 280.267574 +L 324.50123 279.743582 +L 325.761578 279.352225 +L 326.647311 279.226236 +L 327.607612 279.099703 +L 328.570002 279.052314 +L 330.080948 278.995589 +L 330.327994 278.997537 +L 331.974887 279.02335 +L 333.262695 279.058756 +L 333.585312 279.075737 +L 335.139895 279.168888 +L 336.674034 279.277139 +L 337.319555 279.328215 +L 338.178479 279.407283 +L 339.658592 279.555478 +L 341.122944 279.715513 +L 342.572163 279.886968 +L 342.643078 279.895872 +L 344.00111 280.073644 +L 345.416602 280.270592 +L 346.819388 280.477293 +L 348.209877 280.69348 +L 349.588444 280.918907 +L 350.743508 281.116908 +L 350.955313 281.153438 +L 352.310414 281.397155 +L 353.654676 281.649403 +L 354.988313 281.910049 +L 356.311507 282.178988 +L 357.624408 282.456136 +L 358.92713 282.741434 +L 360.219753 283.034849 +L 361.502325 283.336374 +L 362.774856 283.646026 +L 364.037319 283.963853 +L 365.289651 284.289928 +L 366.531751 284.624354 +L 367.763477 284.967264 +L 368.984646 285.318823 +L 370.195034 285.679229 +L 370.462842 285.761498 +L 371.394174 286.048858 +L 372.58189 286.427876 +L 373.757876 286.816541 +L 374.921715 287.215201 +L 376.072933 287.624244 +L 377.200677 288.040267 +L 377.210962 288.044133 +L 378.331251 288.47834 +L 379.436835 288.924618 +L 380.526962 289.383576 +L 381.190392 289.673714 +L 381.59658 289.859081 +L 382.641579 290.354305 +L 383.667541 290.865078 +L 383.978119 291.025502 +L 384.657204 291.404564 +L 385.616845 291.968086 +L 385.986622 292.194937 +L 386.525725 292.571514 +L 387.389021 293.211035 +L 387.410668 293.227704 +L 388.144453 293.934295 +L 388.353894 294.148054 +L 388.756325 294.768842 +L 388.879437 294.970718 +L 389.024909 295.70442 +L 388.955408 295.920948 +L 388.813646 296.354528 +L 388.25542 296.923204 +L 387.350565 297.410382 +L 386.758704 297.6009 +L 386.089603 297.813665 +L 384.449695 298.127479 +L 384.343957 298.139464 +L 382.389667 298.341883 +L 382.366629 298.343049 +L 380.55716 298.418237 +L 379.835013 298.438988 +L 378.826575 298.4332 +L 377.156607 298.402031 +L 376.652244 298.386837 +L 375.541923 298.328935 +L 373.965741 298.226787 +L 372.54786 298.115317 +L 372.417935 298.103357 +L 370.909511 297.950386 +L 369.424244 297.780242 +L 367.961279 297.593627 +L 366.580181 297.399816 +L 366.520068 297.39101 +L 365.104314 297.169654 +L 363.707821 296.934283 +L 362.329994 296.685395 +L 360.970271 296.423454 +L 359.62812 296.148903 +L 358.303034 295.862165 +L 356.994519 295.563649 +L 355.702097 295.253751 +L 354.425296 294.932861 +L 353.163648 294.601365 +L 351.916687 294.259646 +L 350.68394 293.908088 +L 349.464933 293.547077 +L 348.259181 293.177004 +L 347.066192 292.798264 +z +" style="fill:#f6bfa6;"/> - - - - - - +M 346.012812 289.003228 +L 345.611198 288.840143 +L 344.538543 288.379319 +L 343.484192 287.905994 +L 342.616747 287.500185 +L 342.45981 287.411617 +L 341.522595 286.854165 +L 340.701644 286.350085 +L 340.618721 286.273408 +L 339.889184 285.565894 +L 339.754866 285.430819 +L 339.632196 284.707817 +L 340.328926 284.179612 +L 341.939388 283.868164 +L 342.215513 283.857755 +L 343.939377 283.832539 +L 344.754012 283.841735 +L 345.543079 283.89569 +L 347.054241 284.027147 +L 348.530198 284.18485 +L 349.824773 284.348332 +L 349.970033 284.369562 +L 351.357887 284.593091 +L 352.722361 284.834403 +L 354.064242 285.092974 +L 355.384182 285.368374 +L 356.682712 285.660268 +L 357.960241 285.968403 +L 359.217063 286.292615 +L 360.453361 286.632819 +L 361.66921 286.989013 +L 362.864579 287.361273 +L 363.582587 287.598507 +L 364.030933 287.756027 +L 365.159604 288.179834 +L 366.263526 288.623104 +L 367.342227 289.086256 +L 367.772066 289.282837 +L 368.356757 289.598584 +L 369.31242 290.156268 +L 369.786065 290.454634 +L 370.157864 290.798078 +L 370.718907 291.371965 +L 370.772568 291.615037 +L 370.848224 292.100117 +L 370.271682 292.661891 +L 368.975574 293.053736 +L 368.842996 293.067866 +L 366.928054 293.227208 +L 366.790408 293.235133 +L 365.266241 293.196031 +L 363.67135 293.114701 +L 363.1789 293.07816 +L 362.16626 292.966235 +L 360.716408 292.776733 +L 359.301239 292.561706 +L 357.919216 292.322385 +L 356.568828 292.059978 +L 355.24858 291.775676 +L 353.956996 291.470649 +L 352.692613 291.146054 +L 351.453982 290.803032 +L 350.239667 290.442708 +L 349.048249 290.066191 +L 347.878329 289.674571 +L 346.728528 289.268915 +z +" style="fill:#f08a6c;"/> - - - - - - +" style="fill:#cd423b;"/> - - - - - - +" style="fill:#4e68d8;"/> - - - - - - +" style="fill:#779af7;"/> - - - - - - +" style="fill:#a3c2fe;"/> - - - - - - +" style="fill:#ccd9ed;"/> - - - - - - +" style="fill:#ecd3c5;"/> - - - - - - +" style="fill:#f7b093;"/> - - - - - - +" style="fill:#eb7d62;"/> - - - - - - +" style="fill:#ca3b37;"/> - - - - - - +" style="fill:#4e68d8;"/> - - - - - - +" style="fill:#779af7;"/> - - - - - - +" style="fill:#a3c2fe;"/> - - - - - - +" style="fill:#ccd9ed;"/> - - - - - - +" style="fill:#ecd3c5;"/> - - - - - - +" style="fill:#f7b093;"/> - - - - - - +" style="fill:#eb7d62;"/> - - - - - - +" style="fill:#ca3b37;"/> - + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d_fill.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d_fill.png index 4eefa96e686b..63dd67a186f6 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d_fill.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d_fill.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d_fill.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d_fill.svg index f6bce1c3d65d..43d80f0c49b0 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d_fill.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/contourf3d_fill.svg @@ -5,483 +5,419 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.pdf b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.pdf index 4a7dd722a5fa..23e65aa30eec 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.pdf and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.pdf differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.png index b6e595702a96..036a4bd06d64 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.svg index ad3f6d71fee4..07a239528807 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/lines3d.svg @@ -10,479 +10,447 @@ - - - + - + - + - + - - - - - - - - - - - - + + + + + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/mixedsubplot.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/mixedsubplot.png index 6493c67a2493..49c573b664d5 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/mixedsubplot.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/mixedsubplot.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/mixedsubplot.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/mixedsubplot.svg index 684e0eeec9cc..313cc85abe5d 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/mixedsubplot.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/mixedsubplot.svg @@ -10,342 +10,342 @@ - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -353,11115 +353,11115 @@ L 259.2 57.6 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - + + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.pdf b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.pdf index 0aa6ee03af4d..58524d9e9019 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.pdf and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.pdf differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.png index 9a9176b06e5e..700dcd069e41 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.svg index 097de9ef90a8..1cbb2c79a1f8 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d.svg @@ -10,22052 +10,3112 @@ - - - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_empty.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_empty.png index 7b425a39b208..df7185e00d86 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_empty.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_empty.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_empty.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_empty.svg index 7f093e98a600..d0ae12f36c83 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_empty.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_empty.svg @@ -10,303 +10,275 @@ - - - + - + - + - + - - - - - - - - - - - - - - + + + + + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + - + - + - + - + - + - + - - - + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.pdf b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.pdf index af1f689761fb..5db55fa9ecdd 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.pdf and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.pdf differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.png index 17a34be269d0..0595dc1febd2 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.svg index 1d83cc34d383..190bf1bc15ba 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_masked.svg @@ -10,12548 +10,1735 @@ - - - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_pivot_middle.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_pivot_middle.png index d9225628866f..9143746d0646 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_pivot_middle.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_pivot_middle.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_pivot_tail.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_pivot_tail.png index b6bc54e7c417..7ab9fcc5dfd2 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_pivot_tail.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/quiver3d_pivot_tail.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/scatter3d.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/scatter3d.png index 033900be897e..44e3adcfe98a 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/scatter3d.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/scatter3d.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/scatter3d.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/scatter3d.svg index e8a79383fad8..b6e633aa80fd 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/scatter3d.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/scatter3d.svg @@ -10,390 +10,375 @@ - - - + - + - + - + - - - - - - - - - - - - - - + + + + + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + + + + + + - + - + - + - + - + - + - + - +" id="C0_0_83d296332c"/> - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +" style="fill:#0000ff;fill-opacity:0.3;stroke:#000000;stroke-opacity:0.3;"/> + + + + + + + + + - + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.pdf b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.pdf index 127696d86156..2963a1abf39f 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.pdf and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.pdf differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.png index ab05010ba648..d9202e468d42 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.svg index bb38d58fb98e..dd994b919b3b 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/surface3d.svg @@ -10,19449 +10,11030 @@ - - - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -19460,11 +11041,11 @@ L-4 0" id="mcb0005524f" style="stroke:#000000;stroke-width:0.5;"/> - - - - + + + + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.pdf b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.pdf index 38e829f8d67c..29418da8fe36 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.pdf and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.pdf differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.png index 2fb1b6cad41e..deb9ef3dd252 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.svg index 2a20b28253f8..7ff89bd7058e 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/text3d.svg @@ -10,703 +10,691 @@ - - - + - + - + - + - - + - + - + - + - +" id="DejaVuSans-58"/> + - - - - - - - + + + + + + + - - - - - - + + + + + + - + - + - - + + - + - + - - + + - + - +" id="DejaVuSans-34"/> - - + + - + - + - - + + - + - + - - + + - + - +" id="DejaVuSans-31"/> - - - + + + - + - +" id="DejaVuSans-59"/> - - - - - - - + + + + + + + - - - - - - + + + + + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - - + + + - + - +" id="DejaVuSans-5a"/> - - - - - - - + + + + + + + - - - - - - + + + + + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - - + + + @@ -715,480 +703,465 @@ L478.02 112.5" style="fill:none;stroke:#000000;stroke-linecap:square;"/> - - - + - - - + - + + + + + + - + - - +" id="DejaVuSans-3d"/> - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - + +" id="DejaVuSans-35"/> - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - + - + +" id="DejaVuSans-7a"/> - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + - + +" id="DejaVuSans-54"/> - - - - - - - + + + + + + + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/trisurf3d.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/trisurf3d.png index dec8885a1e74..f69277c8d988 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/trisurf3d.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/trisurf3d.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/trisurf3d.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/trisurf3d.svg index 2f76f08ca53a..89c8ecd3401b 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/trisurf3d.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/trisurf3d.svg @@ -10,5156 +10,2969 @@ - - - + - + - + - + - - - - - - - - - - - - + + + + + - + - + - + - + - + - + - - - - - - - - - - - - + + + + + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.pdf b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.pdf index ee3752ca2aa1..72366ece83e0 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.pdf and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.pdf differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.png index 4ddd17179dcb..28f1f1140beb 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.svg b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.svg index a5a1b4e8adab..20b80a21db38 100644 --- a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.svg +++ b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3d.svg @@ -10,3604 +10,3492 @@ - - - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - + + + + + + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3dzerocstride.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3dzerocstride.png index ca39d6a5df82..78ab297963ca 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3dzerocstride.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3dzerocstride.png differ diff --git a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3dzerorstride.png b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3dzerorstride.png index 8a8b814f8156..2ae4e2d32446 100644 Binary files a/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3dzerorstride.png and b/lib/mpl_toolkits/tests/baseline_images/test_mplot3d/wireframe3dzerorstride.png differ diff --git a/lib/mpl_toolkits/tests/test_axes_grid1.py b/lib/mpl_toolkits/tests/test_axes_grid1.py index 33c9b0ba3066..7e3eaced3335 100644 --- a/lib/mpl_toolkits/tests/test_axes_grid1.py +++ b/lib/mpl_toolkits/tests/test_axes_grid1.py @@ -50,6 +50,7 @@ def test_divider_append_axes(): axHistleft.yaxis.set_ticklabels(()) axHistright.yaxis.set_ticklabels(()) + if __name__ == '__main__': import nose nose.runmodule(argv=['-s', '--with-doctest'], exit=False) diff --git a/setupext.py b/setupext.py index 01d482ce58fb..6c0fe6131031 100755 --- a/setupext.py +++ b/setupext.py @@ -706,6 +706,7 @@ def get_package_data(self): 'matplotlib': baseline_images + [ + 'tests/cmr10.pfb', 'tests/mpltest.ttf', 'tests/test_rcparams.rc', 'tests/test_utf32_be_rcparams.rc',