awayjs-display
Version:
AwayJS displaylist classes
42 lines • 1.96 kB
JavaScript
/**
* The InterpolationMethod class provides values for the
* <code>interpolationMethod</code> parameter in the
* <code>Graphics.beginGradientFill()</code> and
* <code>Graphics.lineGradientStyle()</code> methods. This parameter
* determines the RGB space to use when rendering the gradient.
*/
var InterpolationMethod = (function () {
function InterpolationMethod() {
}
/**
* Specifies that the RGB interpolation method should be used. This means
* that the gradient is rendered with exponential sRGB(standard RGB) space.
* The sRGB space is a W3C-endorsed standard that defines a non-linear
* conversion between red, green, and blue component values and the actual
* intensity of the visible component color.
*
* <p>For example, consider a simple linear gradient between two colors(with
* the <code>spreadMethod</code> parameter set to
* <code>SpreadMethod.REFLECT</code>). The different interpolation methods
* affect the appearance as follows: </p>
*/
InterpolationMethod.LINEAR_RGB = "linearRGB";
/**
* Specifies that the RGB interpolation method should be used. This means
* that the gradient is rendered with exponential sRGB(standard RGB) space.
* The sRGB space is a W3C-endorsed standard that defines a non-linear
* conversion between red, green, and blue component values and the actual
* intensity of the visible component color.
*
* <p>For example, consider a simple linear gradient between two colors(with
* the <code>spreadMethod</code> parameter set to
* <code>SpreadMethod.REFLECT</code>). The different interpolation methods
* affect the appearance as follows: </p>
*/
InterpolationMethod.RGB = "rgb";
return InterpolationMethod;
}());
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = InterpolationMethod;
//# sourceMappingURL=InterpolationMethod.js.map
;