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.