gamma property

double gamma

The gamma of the layer.

Implementation

double get gamma {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ImageAdjustmentLayer_getGamma(
        _handle, errorHandler);
  });
}
void gamma=(double value)

Implementation

set gamma(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ImageAdjustmentLayer_setGamma(
        _handle, value, errorHandler);
  });
}