gamma property

double get gamma

The gamma of the layer.

Implementation

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

Implementation

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