diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-05-17 22:55:31 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-05-17 22:55:31 +0200 |
| commit | c975d0d5e989cca6eff8e80ca8174f85eb4a3460 (patch) | |
| tree | 7aaf68ee71d81a1d71d7dcb1f928659bc6fa975d /src/pdf/mod.rs | |
| parent | 24c4a746bc68874f2d1b0d1b726596930acaadcf (diff) | |
Tidy up layouting code
Diffstat (limited to 'src/pdf/mod.rs')
| -rw-r--r-- | src/pdf/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdf/mod.rs b/src/pdf/mod.rs index 2b32f101..19c8499b 100644 --- a/src/pdf/mod.rs +++ b/src/pdf/mod.rs @@ -177,7 +177,7 @@ impl<'a> PdfExporter<'a> { } Shape::Ellipse(size) => { - let path = geom::ellipse_path(size); + let path = geom::Path::ellipse(size); write_path(&mut content, x, y, &path, false, true); } |
