From 380d77f63e1238334b008a1f0a3a517cd72eef79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20D=C3=B3ka?= Date: Wed, 4 Nov 2020 21:25:50 +0100 Subject: [PATCH] initial commit --- geometry.go | 1 - 1 file changed, 1 deletion(-) diff --git a/geometry.go b/geometry.go index d315fe3..bac34d2 100644 --- a/geometry.go +++ b/geometry.go @@ -1153,7 +1153,6 @@ func Constant(constant Vec) *Bezier { // You can of course pass any value though its really hard to // predict what value will it return func (b *Bezier) Point(t float64) Vec { - /* Formula from Wikipedia article on Bézier curves. */ if b.redundant || b.Start == b.End { b.redundant = true return b.Start