Remove() public method

Removes the first occurrence of a specific Vector3 from the Vector3List.
/// The specified was not found in the Vector3List. ///
public Remove ( Vector3 item ) : void
item Vector3 The to remove from the Vector3List.
return void
 public override void Remove(Vector3 x)
 {
     lock (this.m_root)
         m_collection.Remove(x);
 }