gamma property
The gamma of the layer.
Implementation
double get gamma {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ImageAdjustmentLayer_getGamma(
_handle, errorHandler);
});
}
Implementation
set gamma(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ImageAdjustmentLayer_setGamma(
_handle, value, errorHandler);
});
}