summaryrefslogtreecommitdiffstats
path: root/svgbob/src/buffer/fragment_buffer/fragment/arc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'svgbob/src/buffer/fragment_buffer/fragment/arc.rs')
-rw-r--r--svgbob/src/buffer/fragment_buffer/fragment/arc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/svgbob/src/buffer/fragment_buffer/fragment/arc.rs b/svgbob/src/buffer/fragment_buffer/fragment/arc.rs
index 756a8d4..5d7963e 100644
--- a/svgbob/src/buffer/fragment_buffer/fragment/arc.rs
+++ b/svgbob/src/buffer/fragment_buffer/fragment/arc.rs
@@ -139,7 +139,7 @@ impl Arc {
impl Bounds for Arc {
fn bounds(&self) -> (Point, Point) {
let aabb = Segment::new(*self.start, *self.end).local_aabb();
- (Point::from(*aabb.mins()), Point::from(*aabb.maxs()))
+ (Point::from(*aabb.mins), Point::from(*aabb.maxs))
}
}