# Vector3List

> Class

Inheritance

* [object](https://learn.microsoft.com/dotnet/api/system.object)
* Vector3List

***

Inherited Members

* [Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\))

* [Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\))

* [GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode)

* [GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype)

* [MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

* [ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals)

* [ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring)

***

Namespace: UnityEngine.Pixyz.Geom

```csharp
[Serializable]
public class Vector3List
```

## Constructors

### Vector3List(Vector3\[])

```csharp
public Vector3List(Vector3[] tab)
```

Parameters

| Type                          | Name | Description |
| ----------------------------- | ---- | ----------- |
| [Vector3\[\]](./geom_vector3) | tab  |             |

### Vector3List(int)

```csharp
public Vector3List(int size)
```

Parameters

| Type                                                       | Name | Description |
| ---------------------------------------------------------- | ---- | ----------- |
| [int](https://learn.microsoft.com/dotnet/api/system.int32) | size |             |

## Fields

### length

```csharp
public int length { get; }
```

Returns

| Type                                                       | Description |
| ---------------------------------------------------------- | ----------- |
| [int](https://learn.microsoft.com/dotnet/api/system.int32) |             |

### this\[int]

```csharp
public Vector3 this[int index] { get; set; }
```

Returns

| Type                      | Description |
| ------------------------- | ----------- |
| [Vector3](./geom_vector3) |             |

### list

```csharp
public Vector3[] list
```

Returns

| Type                          | Description |
| ----------------------------- | ----------- |
| [Vector3\[\]](./geom_vector3) |             |

## Operators

### implicit operator Vector3\[]\(Vector3List)

```csharp
public static implicit operator Vector3[](Vector3List o)
```

Parameters

| Type                              | Name | Description |
| --------------------------------- | ---- | ----------- |
| [Vector3List](./geom_vector3list) | o    |             |

Returns

| Type                          | Description |
| ----------------------------- | ----------- |
| [Vector3\[\]](./geom_vector3) |             |
