/// <summary> /// Writes the value expressed as a <c>rgbaf</c>, which is the color specified as an array of color components <c>[Red, Green, Blue, Alpha]</c> where each component is a double in the range 0.0-1.0. /// </summary> /// <param name="dates">The dates at which the value is specified.</param> /// <param name="colors">The color corresponding to each date.</param> /// <param name="startIndex">The index of the first element to write.</param> /// <param name="length">The number of elements to write.</param> public void WriteRgbaf(IList <JulianDate> dates, IList <Color> colors, int startIndex, int length) { const string PropertyName = RgbafPropertyName; OpenIntervalIfNecessary(); CesiumWritingHelper.WriteRgbaf(Output, PropertyName, dates, colors, startIndex, length); }
/// <summary> /// Writes the value expressed as a <c>rgbaf</c>, which is the color specified as an array of color components <c>[Red, Green, Blue, Alpha]</c> where each component is a double in the range 0.0-1.0. /// </summary> /// <param name="red">The red component in the range 0 to 1.0.</param> /// <param name="green">The green component in the range 0 to 1.0.</param> /// <param name="blue">The blue component in the range 0 to 1.0.</param> /// <param name="alpha">The alpha component in the range 0 to 1.0.</param> public void WriteRgbaf(float red, float green, float blue, float alpha) { const string PropertyName = RgbafPropertyName; OpenIntervalIfNecessary(); Output.WritePropertyName(PropertyName); CesiumWritingHelper.WriteRgbaf(Output, red, green, blue, alpha); }
/// <summary> /// Writes the value expressed as a <c>rgbaf</c>, which is the color specified as an array of color components <c>[Red, Green, Blue, Alpha]</c> where each component is a double in the range 0.0-1.0. /// </summary> /// <param name="color">The color.</param> public void WriteRgbaf(Color color) { const string PropertyName = RgbafPropertyName; OpenIntervalIfNecessary(); Output.WritePropertyName(PropertyName); CesiumWritingHelper.WriteRgbaf(Output, color); }