Assembly: VRage.Math.dll

public class CurveKeyCollection: ICollection<CurveKey>, IEnumerable<CurveKey>, IEnumerable

Contains the CurveKeys making up a Curve.

Properties

Member Description
Count Gets the number of elements contained in the CurveKeyCollection.
IsReadOnly Returns a value indicating whether the CurveKeyCollection is read-only.
Item

Constructors

Member Description
CurveKeyCollection()

Methods

Member Description
Add(object)
Add(CurveKey) Adds a CurveKey to the CurveKeyCollection.
Clear() Removes all CurveKeys from the CurveKeyCollection.
Clone() Creates a copy of the CurveKeyCollection.
Contains(CurveKey) Determines whether the CurveKeyCollection contains a specific CurveKey.
CopyTo(CurveKey[], int) Copies the CurveKeys of the CurveKeyCollection to an array, starting at the array index provided.
GetEnumerator() Returns an enumerator that iterates through the CurveKeyCollection.
IndexOf(CurveKey) Determines the index of a CurveKey in the CurveKeyCollection.
Remove(CurveKey) Removes the first occurrence of a specific CurveKey from the CurveKeyCollection.
RemoveAt(int) Removes the CurveKey at the specified index.

Implements: