Skip to content

Commit

Permalink
plot: fix strider values
Browse files Browse the repository at this point in the history
  • Loading branch information
gucio321 committed Dec 14, 2023
1 parent 4b7bd86 commit f83b2b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Plot.go
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ func (p *BarPlot) Plot() {
p.shift,
0, // TODO: implement
int32(p.offset),
0, // TODO: implement
8, // sizeof(double) = 8
)
}

Expand Down Expand Up @@ -549,7 +549,7 @@ func (p *ScatterPlot) Plot() {
p.x0,
0, // TODO: implement flags
int32(p.offset),
0, // TODO: implement
8, // sizeof(double) = 8
)
}

Expand Down Expand Up @@ -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
)
}

0 comments on commit f83b2b8

Please sign in to comment.