Axiom.Math.Collections.QuaternionCollection.this C# (CSharp) Method

this() public method

Gets or sets the Quaternion at the specified index.
/// is less than zero /// -or- /// is equal to or greater than . ///
public this ( int index ) : Quaternion
index int The zero-based index of the element to get or set.
return Axiom.Math.Quaternion
        public virtual Quaternion this[ int index ]
        {
            get
            {
                ValidateIndex( index ); // throws
                return m_array[ index ];
            }
            set
            {
                ValidateIndex( index ); // throws
                ++m_version;
                m_array[ index ] = value;
            }
        }

Same methods

QuaternionCollection::this ( int i ) : objectIList.System