fix closing polygons on reprojection
This commit is contained in:
parent
abff549ed0
commit
4084e670ec
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ struct transform_path_adapter
|
|||
while (!ok)
|
||||
{
|
||||
command = geom_.vertex(x,y);
|
||||
if (command == SEG_END)
|
||||
if (command == SEG_END || command == SEG_CLOSE)
|
||||
{
|
||||
return command;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue