public bool Contains(PointDouble value) { return(base.List.Contains(value)); }
public int IndexOf(PointDouble value) { return(base.List.IndexOf(value)); }
public void Insert(int index, PointDouble value) { base.List.Insert(index, value); }
public void Remove(PointDouble value) { base.List.Remove(value); }
public int Add(PointDouble value) { return(base.List.Add(value)); }