Axiom.Math.Collections.Vector3List.SyncVector3List.Insert C# (CSharp) Method

Insert() public method

public Insert ( int pos, Vector3 x ) : void
pos int
x Vector3
return void
            public override void Insert( int pos, Vector3 x )
            {
                lock ( this.m_root )
                    m_collection.Insert( pos, x );
            }