Skip to content

Commit 74b6d50

Browse files
committed
Remove conflict markers from last commit.
svn path=/trunk/matplotlib/; revision=7923
1 parent f645f42 commit 74b6d50

File tree

2 files changed

+0
-25
lines changed

2 files changed

+0
-25
lines changed

lib/matplotlib/collections.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,6 @@ def set_verts(self, verts, closed=True):
574574
if closed:
575575
self._paths = []
576576
for xy in verts:
577-
<<<<<<< .working
578577
if len(xy):
579578
if np.ma.isMaskedArray(xy):
580579
xy = np.ma.concatenate([xy, np.zeros((1,2))])
@@ -586,19 +585,6 @@ def set_verts(self, verts, closed=True):
586585
codes[0] = mpath.Path.MOVETO
587586
codes[-1] = mpath.Path.CLOSEPOLY
588587
self._paths.append(mpath.Path(xy, codes))
589-
=======
590-
if len(xy):
591-
if np.ma.isMaskedArray(xy):
592-
xy = np.ma.concatenate([xy, np.zeros((1,2))])
593-
else:
594-
xy = np.asarray(xy)
595-
xy = np.concatenate([xy, np.zeros((1,2))])
596-
codes = np.empty(xy.shape[0], dtype='uint8')
597-
codes[:] = mpath.Path.LINETO
598-
codes[0] = mpath.Path.MOVETO
599-
codes[-1] = mpath.Path.CLOSEPOLY
600-
self._paths.append(mpath.Path(xy, codes))
601-
>>>>>>> .merge-right.r7919
602588
else:
603589
self._paths.append(mpath.Path(xy))
604590
else:

src/_backend_agg.cpp

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -163,17 +163,6 @@ GCAgg::GCAgg(const Py::Object &gc, double dpi) :
163163
_set_hatch_path(gc);
164164
}
165165

166-
<<<<<<< .working
167-
=======
168-
GCAgg::GCAgg(double dpi) :
169-
dpi(dpi), isaa(true),
170-
cap(agg::butt_cap), join(agg::round_join), linewidth(1.0), alpha(1.0),
171-
dashOffset(0.0)
172-
{
173-
174-
}
175-
176-
>>>>>>> .merge-right.r7919
177166
void
178167
GCAgg::_set_antialiased(const Py::Object& gc) {
179168
_VERBOSE("GCAgg::antialiased");

0 commit comments

Comments
 (0)