# Perspective vs Orthographic

Perspective and Orthographic are two camera types that define the perspective of objects within the frame.

**TLDR: Use perspective for all isometric renders, use orthographic for orthographically positioned renders.**

![Switching between orthographic and perspective in the scene settings tab](/files/-MXi8yzfNuD06JDYr3s6)

{% tabs %}
{% tab title="Perspective" %}
Perspective view displays object with realistic depth, making closer objects appear larger, and farther away objects appear smaller. While this gives the correct depth perception of the objects, it strips away any geometric squareness and scaling.

![A perspective render, scaling objects based on depth](/files/-MXiEwcJES9z_jXOJ0sJ)
{% endtab %}

{% tab title="Orthographic" %}
Orthographic preserves 2D geometric properties, keeping angles and relative dimensions instead of distorting parts of the model based on depth. While these is highly undesired for isometric renders of the robot, for orthographic renders of the robot such as the one below, keeping the squares of the robot makes it easier to see the powertrain and odometry in the drivetrain.

![An orthographic render of the robot, preserving 90 degree angles](/files/-MXiFVibinlM6qS4oLLj)
{% endtab %}
{% endtabs %}

Lastly, *Perspective with Ortho Faces* is a combination of the two; most of the camera angles will result in perspective renders. When the camera is pointed directly at a face (e.g. front and top), it becomes orthographic.&#x20;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://renders360.gitbook.io/ftc-rendering-in-fusion-360/scene-settings/perspective-vs-orthographic.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
