CesiumLanguageWriter.PacketCesiumWriter.WritePositionProperty C# (CSharp) 메소드

WritePositionProperty() 공개 메소드

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.
리턴 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