/// <summary> /// Writes the value expressed as a <code>unitCartesian</code>, which is the axis specified as a three-dimensional unit magnitude Cartesian value `[X, Y, Z]`, in world coordinates. /// </summary> /// <param name="dates">The dates at which the value is specified.</param> /// <param name="values">The values corresponding to each date.</param> /// <param name="startIndex">The index of the first element to use in the `values` collection.</param> /// <param name="length">The number of elements to use from the `values` collection.</param> public void WriteUnitCartesian(IList <JulianDate> dates, IList <UnitCartesian> values, int startIndex, int length) { const string PropertyName = UnitCartesianPropertyName; OpenIntervalIfNecessary(); CesiumWritingHelper.WriteUnitCartesian3(Output, PropertyName, dates, values, startIndex, length); }
/// <summary> /// Writes the value expressed as a <code>unitCartesian</code>, which is the axis specified as a three-dimensional unit magnitude Cartesian value `[X, Y, Z]`, in world coordinates. /// </summary> /// <param name="value">The value.</param> public void WriteUnitCartesian(UnitCartesian value) { const string PropertyName = UnitCartesianPropertyName; OpenIntervalIfNecessary(); Output.WritePropertyName(PropertyName); CesiumWritingHelper.WriteUnitCartesian3(Output, value); }