App
CurvesLUTLayerSpecificPresentation.java
Go to the documentation of this file.
1 package mhr.appcore.image.layers.lut;
2 
3 import mhr.appcore.image.layers.LayerSpecificPresentation;
4 import mhr.appcore.tools.actiondata.CurvesLUTCancelableToolActionData;
5 
6 
11 
12  public float[][] M;
13  public float[][] R;
14  public float[][] G;
15  public float[][] B;
16  public float[][] A;
17 
18  public CurvesLUTLayerSpecificPresentation(float[][] M, float[][] R, float[][] G, float[][] B, float[][] A) {
19  this.M = M;
20  this.R = R;
21  this.G = G;
22  this.B = B;
23  this.A = A;
24  }
25 }