# Vector3

> Struct

Inherited Members

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

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

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

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

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

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

***

Namespace: UnityEngine.Pixyz.Geom

```csharp
[Serializable]
public struct Vector3
```

## Constructors

### Vector3(Point3)

```csharp
public Vector3(Point3 value)
```

Parameters

| Type                    | Name  | Description |
| ----------------------- | ----- | ----------- |
| [Point3](./geom_point3) | value |             |

## Fields

### \_base

```csharp
public Point3 _base
```

Returns

| Type                    | Description |
| ----------------------- | ----------- |
| [Point3](./geom_point3) |             |

## Operators

### implicit operator Point3(Vector3)

```csharp
public static implicit operator Point3(Vector3 v)
```

Parameters

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

Returns

| Type                    | Description |
| ----------------------- | ----------- |
| [Point3](./geom_point3) |             |

### implicit operator Vector3(Point3)

```csharp
public static implicit operator Vector3(Point3 v)
```

Parameters

| Type                    | Name | Description |
| ----------------------- | ---- | ----------- |
| [Point3](./geom_point3) | v    |             |

Returns

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