123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Runtime.Serialization;
- namespace CommonLang.Geometry
- {
-
-
-
-
-
- public class CurveKeyCollection : ICollection<CurveKey>
- {
- #region Private Fields
- private readonly List<CurveKey> _keys;
- #endregion
- #region Properties
-
-
-
-
-
- public CurveKey this[int index]
- {
- get { return _keys[index]; }
- set
- {
- if (value == null)
- throw new ArgumentNullException();
- if (index >= _keys.Count)
- throw new IndexOutOfRangeException();
- if (_keys[index].Position == value.Position)
- _keys[index] = value;
- else
- {
- _keys.RemoveAt(index);
- _keys.Add(value);
- }
- }
- }
-
-
-
-
- public int Count
- {
- get { return _keys.Count; }
- }
-
-
-
-
- public bool IsReadOnly
- {
- get { return false; }
- }
- #endregion
- #region Constructors
-
-
-
- public CurveKeyCollection()
- {
- _keys = new List<CurveKey>();
- }
- #endregion
- IEnumerator IEnumerable.GetEnumerator()
- {
- return _keys.GetEnumerator();
- }
-
-
-
-
-
-
- public void Add(CurveKey item)
- {
- if (item == null)
- throw new ArgumentNullException("item");
- if (_keys.Count == 0)
- {
- this._keys.Add(item);
- return;
- }
- for (int i = 0; i < this._keys.Count; i++)
- {
- if (item.Position < this._keys[i].Position)
- {
- this._keys.Insert(i, item);
- return;
- }
- }
- this._keys.Add(item);
- }
-
-
-
- public void Clear()
- {
- _keys.Clear();
- }
-
-
-
-
- public CurveKeyCollection Clone()
- {
- CurveKeyCollection ckc = new CurveKeyCollection();
- foreach (CurveKey key in this._keys)
- ckc.Add(key);
- return ckc;
- }
-
-
-
-
-
- public bool Contains(CurveKey item)
- {
- return _keys.Contains(item);
- }
-
-
-
-
-
- public void CopyTo(CurveKey[] array, int arrayIndex)
- {
- _keys.CopyTo(array, arrayIndex);
- }
-
-
-
-
- public IEnumerator<CurveKey> GetEnumerator()
- {
- return _keys.GetEnumerator();
- }
-
-
-
-
-
- public int IndexOf(CurveKey item)
- {
- return _keys.IndexOf(item);
- }
-
-
-
-
- public void RemoveAt(int index)
- {
- _keys.RemoveAt(index);
- }
-
-
-
-
-
-
- public bool Remove(CurveKey item)
- {
- return _keys.Remove(item);
- }
- }
- }
|