Skip to content

Commit

Permalink
Fix the issue that cannot instantiate the Lut3DParams.Cube.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vensent committed Mar 9, 2018
1 parent 79d00e5 commit b2d0e0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -67,7 +67,7 @@ public void setParams(ScriptIntrinsicColorMatrix scriptIntrinsicColorMatrix) {

private final MatrixSetter matrixSetter;

ColorMatrixParams(MatrixSetter matrixSetter) {
public ColorMatrixParams(MatrixSetter matrixSetter) {
this.matrixSetter = matrixSetter;
}

Expand Down
Expand Up @@ -20,14 +20,14 @@ public static class Cube {
private final int ySize;
private final int zSize;

Cube(int xSize, int ySize, int zSize) {
public Cube(int xSize, int ySize, int zSize) {
this.cube = new int[xSize * ySize * zSize];
this.xSize = xSize;
this.ySize = ySize;
this.zSize = zSize;
}

Cube(int xSize, int ySize, int zSize, int[] cube) {
public Cube(int xSize, int ySize, int zSize, int[] cube) {
this.cube = cube;
this.xSize = xSize;
this.ySize = ySize;
Expand Down

0 comments on commit b2d0e0f

Please sign in to comment.