Color convertLinearToGamma([double? gammaFactor]) { if (gammaFactor == null) { copyLinearToGamma(this); } else { copyLinearToGamma(this, gammaFactor); } return this; }