BoundingVolume QML Type

can be used to override an entity's bounding volume. 更多...

导入语句: import Qt3D.Core 2.2
实例化: QBoundingVolume
继承者: GeometryRenderer

特性

方法

详细描述

An entity's bounding volume is used for many operations such as picking or view frustum culling. It is normally computed by traversing the rendered geometry.

BoundingVolume can be used when the extent of the geometry is known to the application so that Qt 3D does not have to compute it.

A bounding volume can be provided either as minimum and maximum extent coordinates, or a separate, usually simpler, geometry that approximates the rendered mesh.

When using minimum and maximum extents, these are considered to be the opposite corners of an axis aligned bounding box, in the geometry's local coordinate system.

BoundingVolume can also be used to query the computed bounding volume of a GeometryView implicitMinPoint and implicitMaxPoint properties will be updated if the geometry changes. Note that this is done asynchronously on a background thread so you should check the value of implicitPointsValid before reading them.

You can force the implicit extents to be updated by calling updateImplicitBounds . This will block on the calling thread until the results are available.

注意: GeometryRenderer inherits BoundingVolume and thus supports reading implicit bounds or setting explicit bounds also.

特性文档编制

implicitMaxPoint : vector3d

* * * Holds maximum extent of the bounding volume computed from the specified view.

implicitMinPoint : vector3d

* * * Holds minimum extent of the bounding volume computed from the specified view.

implicitPointsValid : bool

* * * True if a view has been assigned and the implicit extent properties are up to date. * *

另请参阅 updateImplicitBounds .

maxPoint : vector3d

* * * User specified maximum extent of the bounding volume. When set (along with minimum * extent), this will be used internally to avoid computing the volume from the * geometry.

minPoint : vector3d

* * * User specified minimum extent of the bounding volume. When set (along with maximum * extent), this will be used internally to avoid computing the volume from the * geometry.

view : GeometryView

* * * Holds a pointer to the instance of QGeometryView which will be used, if set, * to compute the bounding volume.


方法文档编制

bool updateImplicitBounds ()

* * * Updates the implicit bounds of the specified view. Returns * true if the computation succeeded and false otherwise. * *

注意: The calculations are done in the call thread, this * could take significant time for large meshes.