App
CurvesLUTBrush.java
Go to the documentation of this file.
1 package mhr.appcore.tools.brushlike;
2 
3 import mhr.appcore.bitmap.NBitmap;
4 import mhr.appcore.pointops.LUT;
5 
9 public class CurvesLUTBrush extends LUTBrush {
10 
20  public CurvesLUTBrush(NBitmap brush, double opacity, double flow, double spacing, float[][]M, float[][]R, float[][]G, float[][]B, float[][]A) {
21  super(brush, opacity, flow, spacing);
22  lut = LUT.getCurvesLut(M, R, G, B, A);
23  }
24 }