diff options
Diffstat (limited to 'components/canvas/canvas_data.rs')
-rw-r--r-- | components/canvas/canvas_data.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/canvas/canvas_data.rs b/components/canvas/canvas_data.rs index 59a0fed8345..7525574a927 100644 --- a/components/canvas/canvas_data.rs +++ b/components/canvas/canvas_data.rs @@ -114,6 +114,7 @@ pub trait GenericPathBuilder { control_point3: &Point2D<f32>, ); fn close(&mut self); + #[allow(clippy::too_many_arguments)] fn ellipse( &mut self, origin: Point2D<f32>, @@ -195,6 +196,7 @@ impl<'a> PathBuilderRef<'a> { .arc(center, radius, start_angle, end_angle, ccw); } + #[allow(clippy::too_many_arguments)] pub fn ellipse( &mut self, center: &Point2D<f32>, @@ -978,6 +980,7 @@ impl<'a> CanvasData<'a> { } } + #[allow(clippy::too_many_arguments)] pub fn ellipse( &mut self, center: &Point2D<f32>, |