# Harvestable.transformLocalPoint

Transform a local point to world space.

**Kind:** Function

**Environments:** Game

## Game

``` { .lua .api-signature }
harvestable:transformLocalPoint( vector )
```

[Open the full Game reference](../Game-Script-Environment/Userdata/Harvestable.md#transformlocalpoint)

```lua
local worldPos = self.harvestable:transformLocalPoint( localPos )
```

**Parameters:**

| Name | Type | Description |
| --- | --- | --- |
| `harvetable` | [Harvestable](../Game-Script-Environment/Userdata/Harvestable.md) | The harvestable. |
| `vector` | [Vec3](../Game-Script-Environment/Userdata/Vec3.md) | The local point. |

**Returns:**

| Type | Description |
| --- | --- |
| [Vec3](../Game-Script-Environment/Userdata/Vec3.md) | The world point. |
