diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-05-03 23:56:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-03 23:56:57 +0200 |
| commit | aa10ea8470763afe98d5ff558381f0a0beb0c017 (patch) | |
| tree | 938f58a8e0faa4f5216920fc3e82d86301d2f094 /src/export/render.rs | |
| parent | f9e115daf54c29358f890b137f50a33a781af680 (diff) | |
| parent | 51d0de09c6f7e2af4db3b65c3fe9595c501b82c9 (diff) | |
Merge pull request #69 from typst/shapeees
Advanced shapes
Diffstat (limited to 'src/export/render.rs')
| -rw-r--r-- | src/export/render.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/export/render.rs b/src/export/render.rs index c3b92d31..50257e1c 100644 --- a/src/export/render.rs +++ b/src/export/render.rs @@ -7,8 +7,10 @@ use tiny_skia as sk; use ttf_parser::{GlyphId, OutlineBuilder}; use usvg::FitTo; -use crate::frame::{Element, Frame, Geometry, Group, Shape, Text}; -use crate::geom::{self, Length, Paint, PathElement, Size, Stroke, Transform}; +use crate::frame::{Element, Frame, Group, Text}; +use crate::geom::{ + self, Geometry, Length, Paint, PathElement, Shape, Size, Stroke, Transform, +}; use crate::image::{Image, RasterImage, Svg}; use crate::Context; |
