QRotationSensor#
The QRotationSensor
class is a convenience wrapper around QSensor
. More…
Synopsis#
Functions#
Signals#
def
hasZChanged
(hasZ)
Detailed Description#
The only behavioural difference is that this class sets the type properly.
This class also features a reading()
function that returns a QRotationReading
instead of a QSensorReading
.
For details about how the sensor works, see QRotationReading
.
See also
- class PySide6.QtSensors.QRotationSensor([parent=None])#
- Parameters
parent –
PySide6.QtCore.QObject
Construct the sensor as a child of parent
.
- PySide6.QtSensors.QRotationSensor.sensorType#
- PySide6.QtSensors.QRotationSensor.hasZ()#
- Return type
bool
This property holds a value indicating if the z angle is available..
Returns true if z is available. Returns false if z is not available.
- PySide6.QtSensors.QRotationSensor.hasZChanged(hasZ)#
- Parameters
hasZ – bool
- PySide6.QtSensors.QRotationSensor.setHasZ(hasZ)#
- Parameters
hasZ – bool
Sets whether the z angle is available to hasZ
. This is to be called from the backend. By default the hasZ
property is true, so a backend only has to call this if its rotation sensor can not report z angles.
See also