From 1cd3a9380945eaf91f0208a943257111e0fd1538 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 26 Sep 2021 01:13:00 +0900 Subject: [PATCH] vector: Fix comments --- vector/path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vector/path.go b/vector/path.go index 56e1b8a84..a3e9b993b 100644 --- a/vector/path.go +++ b/vector/path.go @@ -282,7 +282,7 @@ func (p *Path) Arc(x, y, radius, startAngle, endAngle float32, dir Direction) { // // The returned vertice's SrcX and SrcY are 0, and ColorR, ColorG, ColorB, and ColorA are 1. // -// The returned values are intended to be passed to DrawTriangles or DrawTrianglesShader with EvenOdd option +// The returned values are intended to be passed to DrawTriangles or DrawTrianglesShader with EvenOdd fill mode // in order to render a complex polygon like a concave polygon, a polygon with holes, or a self-intersecting polygon. func (p *Path) AppendVerticesAndIndicesForFilling(vertices []ebiten.Vertex, indices []uint16) ([]ebiten.Vertex, []uint16) { // TODO: Add tests.