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

# Coordinates

Represents a point with x and y coordinates.
Typically used for screen coordinates in pixels.

## Definition

```graphql theme={null}
object Coordinates {
  x: Float
  y: Float
}
```

## Fields

### `x`

[Float](/reference/graphql/scalars/float)

The x-coordinate of the point.

### `y`

[Float](/reference/graphql/scalars/float)

The y-coordinate of the point.
