<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [server](./server.md) &gt; [Matrix3](./server.matrix3.md) &gt; [transformVector](./server.matrix3.transformvector.md)

## Matrix3.transformVector() method

Multiplies the provided vector3 by this matrix. This modifies the vector in-place, but also returns the transformed vector.

**Signature:**

```typescript
transformVector(vector: Vector3): Vector3;
```

## Parameters

<table><thead><tr><th>

Parameter


</th><th>

Type


</th><th>

Description


</th></tr></thead>
<tbody><tr><td>

vector


</td><td>

[Vector3](./server.vector3.md)


</td><td>

The vector to multiply by this.


</td></tr>
</tbody></table>
**Returns:**

[Vector3](./server.vector3.md)

The transformed vector.

