コード例 #1
0
        /// <summary>
        /// Writes the value expressed as a <c>cartesian</c>, which is the list of positions specified as three-dimensional Cartesian values, <c>[X, Y, Z, X, Y, Z, ...]</c>, in meters relative to the <c>referenceFrame</c>.
        /// </summary>
        /// <param name="values">The values.</param>
        public void WriteCartesian(IEnumerable <Cartesian> values)
        {
            const string PropertyName = CartesianPropertyName;

            OpenIntervalIfNecessary();
            Output.WritePropertyName(PropertyName);
            CesiumWritingHelper.WriteCartesian3List(Output, values);
        }