Perspective vs Orthographic
What are the two main camera types and which one should I use?
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.

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.

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.

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.
Last updated
Was this helpful?