24 lines
468 B
Java
24 lines
468 B
Java
package org.apache.batik.ext.awt.image;
|
|
|
|
public interface ComponentTransferFunction {
|
|
public static final int DISCRETE = 2;
|
|
public static final int GAMMA = 4;
|
|
public static final int IDENTITY = 0;
|
|
public static final int LINEAR = 3;
|
|
public static final int TABLE = 1;
|
|
|
|
float getAmplitude();
|
|
|
|
float getExponent();
|
|
|
|
float getIntercept();
|
|
|
|
float getOffset();
|
|
|
|
float getSlope();
|
|
|
|
float[] getTableValues();
|
|
|
|
int getType();
|
|
}
|