Method | Description | |
---|---|---|
Add ( Vector3 item ) : int |
Adds a Vector3 to the end of the
|
|
AddRange ( Vector3 x ) : int |
Adds the elements of a Vector3 array to the current
|
|
AddRange ( |
Adds the elements of another
|
|
Clear ( ) : void |
Removes all elements from the
|
|
Clone ( ) : object |
Creates a shallow copy of the Vector3List.
|
|
Contains ( Vector3 item ) : bool |
Determines whether a given Vector3 is in the
|
|
CopyTo ( Vector3 array ) : void |
Copies the entire
|
|
CopyTo ( Vector3 array, int start ) : void |
Copies the entire
|
|
GetEnumerator ( ) : IVector3ListEnumerator |
Returns an enumerator that can iterate through the
|
|
ICollection ( |
||
IList ( int pos ) : void | ||
IList ( int pos, object x ) : void | ||
IList ( object x ) : void | ||
IndexOf ( Vector3 item ) : int |
Returns the zero-based index of the first occurrence of a Vector3 in the
|
|
Insert ( int index, Vector3 item ) : void |
Inserts an element into the
|
|
ReadOnly ( |
Creates a read-only wrapper for a
|
|
Remove ( Vector3 item ) : void |
Removes the first occurrence of a specific Vector3 from the
|
|
RemoveAt ( int index ) : void |
Removes the element at the specified index of the
|
|
Synchronized ( |
Creates a synchronized (thread-safe) wrapper for a
|
|
TrimToSize ( ) : void |
Sets the capacity to the actual number of elements.
|
|
Vector3List ( ) : System |
Initializes a new instance of the
|
|
Vector3List ( Vector3 a ) : System |
Initializes a new instance of the
|
|
Vector3List ( |
Initializes a new instance of the
|
|
Vector3List ( int capacity ) : System |
Initializes a new instance of the
|
|
this ( int index ) : Vector3 |
Gets or sets the Vector3 at the specified index.
|
|
this ( int i ) : objectIList.System |
Method | Description | |
---|---|---|
Vector3List ( Tag t ) : System |
Method | Description | |
---|---|---|
EnsureCapacity ( int min ) : void | ||
IEnumerable ( ) : IEnumerator | ||
IList ( object x ) : bool | ||
IList ( object x ) : int | ||
ValidateIndex ( int i ) : void | ||
ValidateIndex ( int i, bool allowEqualEnd ) : void |
public Add ( Vector3 item ) : int | ||
item | Vector3 | The |
return | int |
public AddRange ( Vector3 x ) : int | ||
x | Vector3 | The |
return | int |
public AddRange ( |
||
x | The |
|
return | int |
public Contains ( Vector3 item ) : bool | ||
item | Vector3 | The |
return | bool |
public CopyTo ( Vector3 array ) : void | ||
array | Vector3 | The one-dimensional |
return | void |
public CopyTo ( Vector3 array, int start ) : void | ||
array | Vector3 | The one-dimensional |
start | int | The zero-based index in |
return | void |
public GetEnumerator ( ) : IVector3ListEnumerator | ||
return | IVector3ListEnumerator |
public ICollection ( |
||
array | ||
start | int | |
return | void |
public IndexOf ( Vector3 item ) : int | ||
item | Vector3 | The |
return | int |
public Insert ( int index, Vector3 item ) : void | ||
index | int | The zero-based index at which |
item | Vector3 | The |
return | void |
public static ReadOnly ( |
||
list | ||
return |
public Remove ( Vector3 item ) : void | ||
item | Vector3 | The |
return | void |
public RemoveAt ( int index ) : void | ||
index | int | The zero-based index of the element to remove. |
return | void |
public static Synchronized ( |
||
list | ||
return |
public Vector3List ( Vector3 a ) : System | ||
a | Vector3 | The |
return | System |
public Vector3List ( |
||
c | The |
|
return | System |
public Vector3List ( int capacity ) : System | ||
capacity | int |
/// The number of elements that the new |
return | System |
public this ( int index ) : Vector3 | ||
index | int | The zero-based index of the element to get or set. |
return | Vector3 |