App
CurvesLUTCancelableToolActionData.java
Go to the documentation of this file.
1 package mhr.appcore.tools.actiondata;
2 
3 import mhr.appcore.tools.actiondata.CancelableToolActionData.Action;
4 
9 
10 
11  public float[][] M;
12  public float[][] R;
13  public float[][] G;
14  public float[][] B;
15  public float[][] A;
16 
17  public CurvesLUTCancelableToolActionData(Action action, float[][] M, float[][] R, float[][] G, float[][] B, float[][] A) {
18  super(action);
19  this.M = M;
20  this.R = R;
21  this.G = G;
22  this.B = B;
23  this.A = A;
24  }
25 
26 }