CesiumLanguageWriter.PacketCesiumWriter.WriteOrientationProperty C# (CSharp) Method

WriteOrientationProperty() public method

Writes a value for the orientation property as a unitQuaternion value. The orientation property specifies the orientation of the object in the world. The orientation has no direct visual representation, but it is used to orient models, cones, pyramids, and other graphical items attached to the object.
public WriteOrientationProperty ( UnitQuaternion value ) : void
value UnitQuaternion The value.
return void
        public void WriteOrientationProperty(UnitQuaternion value)
        {
            using (var writer = OpenOrientationProperty())
            {
                writer.WriteUnitQuaternion(value);
            }
        }

Same methods

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