From af9275aec80ff61ad4c38bf56f3a11c3c2295810 Mon Sep 17 00:00:00 2001 From: matt rice Date: Fri, 17 Jul 2026 05:04:19 -0700 Subject: [PATCH] Add builder notes to docs --- imaging/src/painter.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/imaging/src/painter.rs b/imaging/src/painter.rs index 85041e8..4b44f9e 100644 --- a/imaging/src/painter.rs +++ b/imaging/src/painter.rs @@ -153,7 +153,7 @@ where record::replay(scene, self.sink); } - /// Start configuring a fill draw. + /// Start configuring a fill draw. Default field values can be changed in the returned `FillBuilder`. /// /// Defaults: /// - geometry transform: [`Affine::IDENTITY`] @@ -182,7 +182,7 @@ where self.sink.fill(FillRef::new(rect, brush)); } - /// Start configuring a stroke draw. + /// Start configuring a stroke draw. Default field values can be changed in the returned `StrokeBuilder`. /// /// Defaults: /// - geometry transform: [`Affine::IDENTITY`] @@ -200,7 +200,7 @@ where } } - /// Start configuring a glyph run. + /// Start configuring a glyph run. Default field values can be changed in the returned `GlyphRunBuilder`. /// /// Defaults: /// - run transform: [`Affine::IDENTITY`]