OrthographicCamera QML Type

Defines a Orthographic Camera for viewing the content of a 3D scene. More...

Import Statement: import QtQuick3D 1.15
Inherits:

Camera

Properties

Detailed Description

A Camera is always necessary to view the content of a 3D scene. A camera defines how to project the content of a 3D scene into a 2D coordinate space, which can then be used on a 2D surface. When a camera is present in the scene it can be used to direct what is displayed in a View3D.

To determine the projection of this camera a high level API is provided. First it is possible to position this Camera like any other spatial Node in the scene. This determines where the Camera is in the scene, and what direction it is facing. The default direction of the camera is such that the forward vector is looking up the +Z axis, and the up direction vector is up the +Y axis. With this in mind any transformation applied to the camera as well as the transformations inherited from it's parent Nodes you can define exactly where and in what direction your camera is facing.

Orthographic camera implements parallel projection that does not have perspective scaling. As such, it can also be called a 2D camera.

See also PerspectiveCamera, FrustumCamera, and CustomCamera.

Property Documentation

clipFar : real

This property holds the far value of the camara's view frustum. This value determines what the furthest distance to the camera that items will be shown.


clipNear : real

This property holds the near value of the camara's view frustum. This value determines what the closest distance to the camera that items will be shown.


© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.