pre-commit run --all-files
This commit is contained in:
parent
d29aeb2ddb
commit
f4eec2e24f
1 changed files with 8 additions and 8 deletions
|
@ -69,8 +69,7 @@ std::ostream& operator<<(std::ostream& os, mapnik::gradient const& gr)
|
||||||
|
|
||||||
std::ostream& operator<<(std::ostream& os, agg::trans_affine const& tr)
|
std::ostream& operator<<(std::ostream& os, agg::trans_affine const& tr)
|
||||||
{
|
{
|
||||||
os << "<transform>matrix(" << tr.sx << "," << tr.shy << ","
|
os << "<transform>matrix(" << tr.sx << "," << tr.shy << "," << tr.shx << "," << tr.sy << "," << tr.tx << ","
|
||||||
<< tr.shx << "," << tr.sy << "," << tr.tx << ","
|
|
||||||
<< tr.ty << ")</transform>";
|
<< tr.ty << ")</transform>";
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
|
@ -78,7 +77,8 @@ std::ostream& operator<<(std::ostream& os, agg::trans_affine const& tr)
|
||||||
struct group_attribute_visitor
|
struct group_attribute_visitor
|
||||||
{
|
{
|
||||||
group_attribute_visitor(std::stringstream& ss, unsigned padding)
|
group_attribute_visitor(std::stringstream& ss, unsigned padding)
|
||||||
: ss_(ss), padding_(padding)
|
: ss_(ss)
|
||||||
|
, padding_(padding)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
void operator()(mapnik::svg::group const& g) const
|
void operator()(mapnik::svg::group const& g) const
|
||||||
|
|
Loading…
Add table
Reference in a new issue