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
- firstVertex() → int
See also
- geometry() → QGeometry
See also
- geometryFactory() → QGeometryFactory
Returns the geometry functor.
See also
- indexBufferByteOffset() → int
See also
- indexOffset() → int
See also
- instanceCount() → int
See also
- primitiveRestartEnabled() → bool
See also
- primitiveType() → PrimitiveType
See also
- restartIndexValue() → int
See also
- sceneChangeEvent(QSceneChange)
TODO
- setFirstInstance(int)
See also
- setFirstVertex(int)
See also
- setGeometry(QGeometry)
See also
- setGeometryFactory(QGeometryFactory)
Sets the geometry factory.
See also
- setIndexBufferByteOffset(int)
See also
- setIndexOffset(int)
See also
- setInstanceCount(int)
See also
- setPrimitiveRestartEnabled(bool)
See also
- setPrimitiveType(PrimitiveType)
See also
- setRestartIndexValue(int)
See also
- setVertexCount(int)
See also
- setVerticesPerPatch(int)
See also
- vertexCount() → int
See also
- verticesPerPatch() → int
See also
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