> For the complete documentation index, see [llms.txt](https://docs.anvil.team/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.anvil.team/types/refdef.md).

# refDef

Nobody knows what it stands for.

{% hint style="info" %}
To see the type of an individual property, please look at the struct [here](/types/refdef.md#find-the-type-of-properties-here).
{% endhint %}

### Available Properties

* <mark style="color:purple;">`x`</mark>
* <mark style="color:purple;">`y`</mark>
* <mark style="color:purple;">`width`</mark>
* <mark style="color:purple;">`height`</mark>
* <mark style="color:purple;">`fov_x`</mark>
* <mark style="color:purple;">`fov_y`</mark>

### Find the type of properties here

```cpp
struct refdef_t
{
    int x;
    int y;
    int width; //0x0008  
    int height; //0x000C  
    float fov_x; //0x0010  
    float fov_y; //0x0014  
    Vec3 vieworg; //0x0018
    Vec3 viewaxis[3]; //0x0024  
    char szUnknown1[16200]; //0x0048  
    Vec3 rdViewAngle; //0x3F90
};
```
