Make Path2D#into_outline public

This commit is contained in:
Alex Zepeda 2020-03-02 00:14:24 -08:00
parent 0f35d9c817
commit c8496a1cb2
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.outline
}