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

Same methods

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