Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7507477

Browse files
committed
Use miter_join_revert in Agg backend to match behavior of other backends.
svn path=/trunk/matplotlib/; revision=6794
1 parent 22c47dc commit 7507477

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/_backend_agg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ GCAgg::_set_joinstyle(const Py::Object& gc) {
209209
std::string joinstyle = Py::String( gc.getAttr("_joinstyle") );
210210

211211
if (joinstyle=="miter")
212-
join = agg::miter_join;
212+
join = agg::miter_join_revert;
213213
else if (joinstyle=="round")
214214
join = agg::round_join;
215215
else if(joinstyle=="bevel")

0 commit comments

Comments
 (0)