Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneashleyberry committed Apr 4, 2019
1 parent 3ad386e commit 2e01a52
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pkg/cubelut/cubelut.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ func Apply(src image.Image, lut CubeFile, intensity float64) (image.Image, error
y := i / lut.Size % lut.Size
z := i / lut.Size / lut.Size
cube[x][y][z] = []float64{lut.R[i], lut.G[i], lut.B[i]}
// fmt.Println(i, x, y, z, lut.R[i], lut.G[i], lut.B[i])
}

fmt.Println(cube[0][0][0])
Expand Down

0 comments on commit 2e01a52

Please sign in to comment.