> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hyperwisor.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 3D Vector Plotter

> Plot 3D vectors in an interactive scene.

<Info>
  **Category:** Display · **Reads data:** yes (vectors) · **Sends commands:** no
</Info>

## Mental model

A **3D Vector Plotter is a physics whiteboard.** It draws vectors in 3D space —
forces, velocities, fields — for visualizing directional/magnitude data.

## When to use it

* Force / velocity / field vectors
* Any 3D directional data

## Settings

### Style / Scene

* **Display mode** · **color mode**
* **Decimal precision** — value formatting
* **Field of view** · **axes size** · **grid cell color**
* **Ambient / directional intensity**

## Script API example

The same interactions from a [dashboard script](/script/overview):

```js theme={null}
// Desktop-only visual
if (!context.device.isDesktop) widget.hide('vectors');
```

<Card title="3D Virtual Twin" icon="cubes" href="/dashboard/widgets/virtual-twin">
  For 3D models instead of vectors.
</Card>
