CesiumLanguageWriter.PacketCesiumWriter.WritePositionPropertyCartesianVelocity C# (CSharp) Method

WritePositionPropertyCartesianVelocity() public method

Writes a value for the position property as a cartesianVelocity 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 WritePositionPropertyCartesianVelocity ( 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 WritePositionPropertyCartesianVelocity(IList<JulianDate> dates, IList<Motion<Cartesian>> values)
        {
            using (var writer = OpenPositionProperty())
            {
                writer.WriteCartesianVelocity(dates, values);
            }
        }

Same methods

PacketCesiumWriter::WritePositionPropertyCartesianVelocity ( IList dates, IList values, int startIndex, int length ) : void
PacketCesiumWriter::WritePositionPropertyCartesianVelocity ( Motion value ) : void