CesiumLanguageWriter.PacketCesiumWriter.WritePositionPropertyCartographicRadians C# (CSharp) Method

WritePositionPropertyCartographicRadians() public method

Writes a value for the position property as a cartographicRadians value. The position property specifies the position of the object in the world. The position has no direct visual representation, but it is used to locate billboards, labels, and other graphical items attached to the object.
public WritePositionPropertyCartographicRadians ( IList dates, IList values, int startIndex, int length ) : void
dates IList The dates at which the value is specified.
values IList The position corresponding to each date.
startIndex int The index of the first element to write.
length int The number of elements to write.
return void
        public void WritePositionPropertyCartographicRadians(IList<JulianDate> dates, IList<Cartographic> values, int startIndex, int length)
        {
            using (var writer = OpenPositionProperty())
            {
                writer.WriteCartographicRadians(dates, values, startIndex, length);
            }
        }

Same methods

PacketCesiumWriter::WritePositionPropertyCartographicRadians ( Cartographic value ) : void
PacketCesiumWriter::WritePositionPropertyCartographicRadians ( IList dates, IList values ) : void