From f83b2b83cf726660991b2f31d53b967defa71d77 Mon Sep 17 00:00:00 2001 From: gucio321 Date: Thu, 14 Dec 2023 14:47:17 +0100 Subject: [PATCH] plot: fix strider values --- Plot.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Plot.go b/Plot.go index 1215418c..2dc6290c 100644 --- a/Plot.go +++ b/Plot.go @@ -291,7 +291,7 @@ func (p *BarPlot) Plot() { p.shift, 0, // TODO: implement int32(p.offset), - 0, // TODO: implement + 8, // sizeof(double) = 8 ) } @@ -549,7 +549,7 @@ func (p *ScatterPlot) Plot() { p.x0, 0, // TODO: implement flags int32(p.offset), - 0, // TODO: implement + 8, // sizeof(double) = 8 ) } @@ -581,6 +581,6 @@ func (p *ScatterXYPlot) Plot() { int32(len(p.xs)), 0, // TODO: implement int32(p.offset), - 0, // TODO: implement + 8, // sizeof(double) = 8 ) }