Merge pull request #278 from inferiorhumanorgans/iho/pub-outline

Make Path2D#into_outline public
This commit is contained in:
Patrick Walton 2020-03-03 11:00:00 -08:00 committed by GitHub
commit afd1585d5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -598,7 +598,7 @@ impl Path2D {
} }
} }
fn into_outline(mut self) -> Outline { pub fn into_outline(mut self) -> Outline {
self.flush_current_contour(); self.flush_current_contour();
self.outline self.outline
} }