Some compatibility bugs. Slic3r will still fail hard with non-manifold objects

This commit is contained in:
Alessandro Ranellucci 2011-10-11 15:51:08 +02:00
parent bca3abb755
commit f01ddae974
4 changed files with 32 additions and 23 deletions

View file

@ -58,7 +58,7 @@ sub output {
);
$g->$method(
%$path,
'marker-end' => "url(#endArrow)",
'marker-end' => $things{no_arrows} ? "" : "url(#endArrow)",
);
}
}
@ -101,7 +101,7 @@ sub output {
style => {
'stroke' => $colour || 'black',
},
'marker-end' => "url(#endArrow)",
'marker-end' => $things{no_arrows} ? "" : "url(#endArrow)",
);
}
}