QGeometryRenderer¶

PyQt5.Qt3DRender.QGeometryRenderer

Inherits from QComponent.

Inherited by QConeMesh, QCuboidMesh, QCylinderMesh, QExtrudedTextMesh, QMesh, QPlaneMesh, QSphereMesh, QTorusMesh.

Description¶

Encapsulates geometry rendering.

A QGeometryRenderer holds all the information necessary to draw a QGeometry. A QGeometry holds the coordinates of the geometry data - QGeometryRenderer specifies how to interpret that data.

Enums¶

PrimitiveType

The type of the primitive.

Member

Value

Description

LineLoop

0x0002

Connected group of lines connected at ends forming a loop

Lines

0x0001

List of lines

LinesAdjacency

0x000A

Allows geometry shader to access adjacent lines in a line list

LineStrip

0x0003

Connected group of lines

LineStripAdjacency

0x000B

Allows geometry shader to access adjacent lines in a line strip

Patches

0x000E

Only primitive type accepted by tesselation shader where a patch consists of arbitrary number of vertices

Points

0x0000

List of points

TriangleFan

0x0006

List of connected triagles where all triangles share the first vertex

Triangles

0x0004

List of triangles

TrianglesAdjacency

0x000C

Allows geometry shader to access adjacent triangles in a triangle list

TriangleStrip

0x0005

List of connected triangles

TriangleStripAdjacency

0x000D

Allows geometry shader to access adjacent triangles in a triangle strip

Methods¶

__init__(parent: QNode = None)

Constructs a new QGeometryRenderer with parent.


firstInstance() → int

See also

setFirstInstance().


firstVertex() → int

See also

setFirstVertex().


geometry() → QGeometry

See also

setGeometry().


geometryFactory() → QGeometryFactory

Returns the geometry functor.


indexBufferByteOffset() → int

indexOffset() → int

See also

setIndexOffset().


instanceCount() → int

See also

setInstanceCount().


primitiveRestartEnabled() → bool

primitiveType() → PrimitiveType

See also

setPrimitiveType().


restartIndexValue() → int

sceneChangeEvent(QSceneChange)

TODO


setFirstInstance(int)

See also

firstInstance().


setFirstVertex(int)

See also

firstVertex().


setGeometry(QGeometry)

See also

geometry().


setGeometryFactory(QGeometryFactory)

Sets the geometry factory.

See also

geometryFactory().


setIndexBufferByteOffset(int)

setIndexOffset(int)

See also

indexOffset().


setInstanceCount(int)

See also

instanceCount().


setPrimitiveRestartEnabled(bool)

setPrimitiveType(PrimitiveType)

See also

primitiveType().


setRestartIndexValue(int)

setVertexCount(int)

See also

vertexCount().


setVerticesPerPatch(int)

See also

verticesPerPatch().


vertexCount() → int

See also

setVertexCount().


verticesPerPatch() → int

Signals¶

firstInstanceChanged(int)

TODO


firstVertexChanged(int)

TODO


geometryChanged(QGeometry)

TODO


indexBufferByteOffsetChanged(int)

TODO


indexOffsetChanged(int)

TODO


instanceCountChanged(int)

TODO


primitiveRestartEnabledChanged(bool)

TODO


primitiveTypeChanged(PrimitiveType)

TODO


restartIndexValueChanged(int)

TODO


vertexCountChanged(int)

TODO


verticesPerPatchChanged(int)

TODO