Class StdDoubleVector
Inheritance
StdDoubleVector
Namespace: pxr
Syntax
public class StdDoubleVector : IDisposable, IList<double>, ICollection<double>, IEnumerable<double>, IEnumerable
Constructors
StdDoubleVector()
Declaration
StdDoubleVector(StdDoubleVector)
Declaration
public StdDoubleVector(StdDoubleVector other)
Parameters
StdDoubleVector(ICollection)
Declaration
public StdDoubleVector(ICollection c)
Parameters
StdDoubleVector(Int32)
Declaration
public StdDoubleVector(int capacity)
Parameters
Type |
Name |
Description |
Int32 |
capacity |
|
Fields
swigCMemOwn
Declaration
protected bool swigCMemOwn
Field Value
Properties
Capacity
Declaration
public int Capacity { get; set; }
Property Value
Count
Declaration
public int Count { get; }
Property Value
Implements
IsFixedSize
Declaration
public bool IsFixedSize { get; }
Property Value
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
Implements
IsSynchronized
Declaration
public bool IsSynchronized { get; }
Property Value
Item[Int32]
Declaration
public double this[int index] { get; set; }
Parameters
Type |
Name |
Description |
Int32 |
index |
|
Property Value
Implements
Methods
Add(Double)
Declaration
public void Add(double x)
Parameters
Type |
Name |
Description |
Double |
x |
|
Implements
AddRange(StdDoubleVector)
Declaration
public void AddRange(StdDoubleVector values)
Parameters
Clear()
Declaration
Implements
Contains(Double)
Declaration
public bool Contains(double value)
Parameters
Type |
Name |
Description |
Double |
value |
|
Returns
Implements
CopyTo(Double[])
Declaration
public void CopyTo(double[] array)
Parameters
Type |
Name |
Description |
Double[] |
array |
|
CopyTo(Double[], Int32)
Declaration
public void CopyTo(double[] array, int arrayIndex)
Parameters
Implements
CopyTo(Int32, Double[], Int32, Int32)
Declaration
public void CopyTo(int index, double[] array, int arrayIndex, int count)
Parameters
Dispose()
Declaration
public virtual void Dispose()
Implements
Finalize()
Declaration
protected void Finalize()
GetEnumerator()
Declaration
public StdDoubleVector.StdDoubleVectorEnumerator GetEnumerator()
Returns
GetRange(Int32, Int32)
Declaration
public StdDoubleVector GetRange(int index, int count)
Parameters
Returns
IndexOf(Double)
Declaration
public int IndexOf(double value)
Parameters
Type |
Name |
Description |
Double |
value |
|
Returns
Implements
Insert(Int32, Double)
Declaration
public void Insert(int index, double x)
Parameters
Implements
System.Collections.Generic.IList<T>.Insert(System.Int32, T)
InsertRange(Int32, StdDoubleVector)
Declaration
public void InsertRange(int index, StdDoubleVector values)
Parameters
LastIndexOf(Double)
Declaration
public int LastIndexOf(double value)
Parameters
Type |
Name |
Description |
Double |
value |
|
Returns
Remove(Double)
Declaration
public bool Remove(double value)
Parameters
Type |
Name |
Description |
Double |
value |
|
Returns
Implements
RemoveAt(Int32)
Declaration
public void RemoveAt(int index)
Parameters
Type |
Name |
Description |
Int32 |
index |
|
Implements
RemoveRange(Int32, Int32)
Declaration
public void RemoveRange(int index, int count)
Parameters
Repeat(Double, Int32)
Declaration
public static StdDoubleVector Repeat(double value, int count)
Parameters
Returns
Reverse()
Declaration
Reverse(Int32, Int32)
Declaration
public void Reverse(int index, int count)
Parameters
SetRange(Int32, StdDoubleVector)
Declaration
public void SetRange(int index, StdDoubleVector values)
Parameters
Explicit Interface Implementations
IEnumerable<Double>.GetEnumerator()
Declaration
IEnumerator<double> IEnumerable<double>.GetEnumerator()
Returns
Implements
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Implements