QClipPlane

PyQt5.Qt3DRender.QClipPlane

Inherits from QRenderState.

Description

Enables an additional OpenGL clipping plane that can be in shaders using gl_ClipDistance.

By default, OpenGL supports up to 8 additional clipping planes. Qt3DCore::QClipPlane allows to enable one of these additional planes. These planes can then be manipulated in the shaders using gl_ClipDistance[i] where i varies between 0 and 7. The underlying implementation may support more than 8 clip planes, but it is not guaranteed.

Methods

__init__(parent: QNode = None)

TODO


distance() → float

See also

setDistance().


normal() → QVector3D

See also

setNormal().


planeIndex() → int

See also

setPlaneIndex().


setDistance(float)

See also

distance().


setNormal(QVector3D)

See also

normal().


setPlaneIndex(int)

See also

planeIndex().

Signals

distanceChanged(float)

TODO


normalChanged(QVector3D)

TODO


planeIndexChanged(int)

TODO