From 951d45a2c690507e87950465977ead15e0a9f99c Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Thu, 3 Dec 2020 10:03:51 +0100 Subject: [PATCH] op/clip: fix incirrent mention of even-odd fill rule It's the non-zero winding rule. Noticed by Richard Wilkes. Signed-off-by: Elias Naur --- op/clip/clip.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op/clip/clip.go b/op/clip/clip.go index 405a4600..10608178 100644 --- a/op/clip/clip.go +++ b/op/clip/clip.go @@ -15,7 +15,7 @@ import ( // Path constructs a Op clip path described by lines and // Bézier curves, where drawing outside the Path is discarded. -// The inside-ness of a pixel is determines by the even-odd rule, +// The inside-ness of a pixel is determines by the non-zero winding rule, // similar to the SVG rule of the same name. // // Path generates no garbage and can be used for dynamic paths; path