CesiumLanguageWriter.PacketCesiumWriter.WritePositionProperty C# (CSharp) Method

WritePositionProperty() public method

Writes a value for the position property as a cartesian 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 WritePositionProperty ( IList dates, IList values ) : void
dates IList The dates at which the value is specified.
values IList The values corresponding to each date.
return void
        public void WritePositionProperty(IList<JulianDate> dates, IList<Cartesian> values)
        {
            using (var writer = OpenPositionProperty())
            {
                writer.WriteCartesian(dates, values);
            }
        }

Same methods

PacketCesiumWriter::WritePositionProperty ( Cartesian value ) : void
PacketCesiumWriter::WritePositionProperty ( IList dates, IList values, int startIndex, int length ) : void