QPickTriangleEvent#
The QPickTriangleEvent
class holds information when a triangle is picked. More…
Synopsis#
Properties#
Functions#
def
triangleIndex
()def
uvw
()def
vertex1Index
()def
vertex2Index
()def
vertex3Index
()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
When QPickingSettings::pickMode() is set to TrianglePicking
, the signals on QObjectPicker
will carry an instance of QPickTriangleEvent
.
This contains the details of the triangle that was picked.
Note
In the case of indexed rendering, the point indices are relative to the array of coordinates, not the array of indices.
See also
QPickingSettings
QPickEvent
QObjectPicker
- class PySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent#
PySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent(position, worldIntersection, localIntersection, distance, triangleIndex, vertex1Index, vertex2Index, vertex3Index)
PySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent(position, worldIntersection, localIntersection, distance, triangleIndex, vertex1Index, vertex2Index, vertex3Index, button, buttons, modifiers, uvw)
- Parameters:
vertex2Index –
uint
position –
PySide6.QtCore.QPointF
uvw –
PySide6.QtGui.QVector3D
vertex1Index –
uint
triangleIndex –
uint
buttons – int
distance – float
button –
Buttons
worldIntersection –
PySide6.QtGui.QVector3D
modifiers – int
localIntersection –
PySide6.QtGui.QVector3D
vertex3Index –
uint
Constructs a new QPickEvent
.
*
QPickTriangleEvent
Constructs a new QPickEvent
with the given parameters * position
, * worldIntersection
, * localIntersection
, * distance
, * triangleIndex
, * vertex1Index
, * vertex2Index
and * vertex3Index
Note
Properties can be used directly when from __feature__ import true_property
is used or via accessor functions otherwise.
- property PᅟySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent.triangleIndex: uint#
Specifies the triangle index of the event
- Access functions:
- property PᅟySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent.uvw: PySide6.QtGui.QVector3D#
- Access functions:
uvw
()
- property PᅟySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent.vertex1Index: uint#
Specifies the index of the first vertex in the triangle
- Access functions:
vertex1Index
()
- property PᅟySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent.vertex2Index: uint#
Specifies the index of the second vertex in the triangle
- Access functions:
vertex2Index
()
- property PᅟySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent.vertex3Index: uint#
Specifies the index of the third vertex in the triangle
- Access functions:
vertex3Index
()
- PySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent.triangleIndex()#
- Return type:
uint
QPickTriangleEvent::triangleIndex Returns the index of the picked triangle
Getter of property triangleIndex
.
- PySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent.uvw()#
- Return type:
Returns the 3D coordinates u,v, and w.
Getter of property uvw
.
- PySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent.vertex1Index()#
- Return type:
uint
QPickTriangleEvent::vertex1Index Returns the index of the first point of the picked triangle
Getter of property vertex1Index
.
- PySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent.vertex2Index()#
- Return type:
uint
QPickTriangleEvent::vertex2Index Returns the index of the second point of the picked triangle
Getter of property vertex2Index
.
- PySide6.Qt3DRender.Qt3DRender.QPickTriangleEvent.vertex3Index()#
- Return type:
uint
QPickTriangleEvent::vertex3Index Returns index of third point of picked triangle
Getter of property vertex3Index
.