CustomCamera QML Type

Defines a Custom Camera for viewing the content of a 3D scene. 更多...

导入语句: import QtQuick3D 1.15
继承:

Camera

特性

详细描述

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.

If you need full-control over how the projection matrix is created, this is the camera to use.

另请参阅 PerspectiveCamera , OrthographicCamera ,和 FrustumCamera .

特性文档编制

projection : matrix4x4

This property defines a custom projection matrix.