From 299e966816aca254781d80447b0163cd5196f1b7 Mon Sep 17 00:00:00 2001 From: aarzilli Date: Tue, 5 Nov 2019 14:04:39 +0100 Subject: [PATCH] op/paint: make documentation of Line clearer The movement is not to an absolute coordinate but by a delta relative to the current position of the pen. --- op/paint/path.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/op/paint/path.go b/op/paint/path.go index 73f3fab8..225c8b99 100644 --- a/op/paint/path.go +++ b/op/paint/path.go @@ -65,9 +65,9 @@ func (p *Path) end() { p.contour++ } -// Line records a line from the pen to end. -func (p *Path) Line(to f32.Point) { - to = to.Add(p.pen) +// Line moves the pen by the amount specified by delta, recording a line. +func (p *Path) Line(delta f32.Point) { + to := delta.Add(p.pen) p.lineTo(to) }