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 ( Motion value ) : void
value Motion The value.
return void
        public void WritePositionPropertyCartesianVelocity(Motion<Cartesian> value)
        {
            using (var writer = OpenPositionProperty())
            {
                writer.WriteCartesianVelocity(value);
            }
        }

Same methods

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