correct line_string/multi_line_string
This commit is contained in:
parent
f06443910f
commit
b0587a01c0
1 changed files with 10 additions and 0 deletions
|
@ -50,6 +50,16 @@ struct geometry_correct
|
|||
}
|
||||
}
|
||||
|
||||
result_type operator() (line_string & line) const
|
||||
{
|
||||
boost::geometry::correct(line);
|
||||
}
|
||||
|
||||
result_type operator() (multi_line_string & multi_line) const
|
||||
{
|
||||
boost::geometry::correct(multi_line);
|
||||
}
|
||||
|
||||
result_type operator() (polygon & poly) const
|
||||
{
|
||||
boost::geometry::correct(poly);
|
||||
|
|
Loading…
Reference in a new issue