# Translate

> Moves the plane in space by the translation vector.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine](/engine/6000.0/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

## Translate(Vector3)

Moves the plane in space by the translation vector.

```csharp
public void Translate(Vector3 translation)
```

### Parameters

**** (\[Vector3]\(/engine/6000.0/script-reference/unityengine/vector3)): The offset in space to move the plane with.

## Translate(Plane, Vector3)

Returns a copy of the given plane that is moved in space by the given translation.

```csharp
public static Plane Translate(Plane plane, Vector3 translation)
```

### Parameters

**** (\[Plane]\(/engine/6000.0/script-reference/unityengine/plane)): The plane to move in space.**** (\[Vector3]\(/engine/6000.0/script-reference/unityengine/vector3)): The offset in space to move the plane with.

### Returns

| Type                                                          | Description           |
| ------------------------------------------------------------- | --------------------- |
| [Plane](/engine/6000.0/script-reference/unityengine/plane.md) | The translated plane. |
