io.qt.sensors.QRotationReading Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-sensors Show documentation
Show all versions of qtjambi-sensors Show documentation
Provides access to sensor hardware and motion gesture recognition.
package io.qt.sensors;
import io.qt.*;
/**
* Represents one reading from the rotation sensor
* Java wrapper for Qt class QRotationReading
*/
public class QRotationReading extends io.qt.sensors.QSensorReading
{
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QRotationReading.class);
/**
* See QRotationReading:: QRotationReading(QObject*)
*/
public QRotationReading(io.qt.core.@Nullable QObject parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QRotationReading instance, io.qt.core.QObject parent);
/**
* Sets the rotation from three euler angles
* See QRotationReading:: setFromEuler(qreal, qreal, qreal)
*/
@QtUninvokable
public final void setFromEuler(double x, double y, double z){
setFromEuler_native_qreal_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), x, y, z);
}
@QtUninvokable
private native void setFromEuler_native_qreal_qreal_qreal(long __this__nativeId, double x, double y, double z);
/**
* See QRotationReading:: x()const
*/
@QtPropertyReader(name="x")
@QtUninvokable
public final double x(){
return x_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native double x_native_constfct(long __this__nativeId);
/**
* See QRotationReading:: y()const
*/
@QtPropertyReader(name="y")
@QtUninvokable
public final double y(){
return y_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native double y_native_constfct(long __this__nativeId);
/**
* See QRotationReading:: z()const
*/
@QtPropertyReader(name="z")
@QtUninvokable
public final double z(){
return z_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native double z_native_constfct(long __this__nativeId);
/**
* See QSensorReading:: copyValuesFrom(QSensorReading*)
*/
@QtUninvokable
@Override
protected void copyValuesFrom(io.qt.sensors.@Nullable QSensorReading other){
copyValuesFrom_native_QSensorReading_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other));
}
@QtUninvokable
private native void copyValuesFrom_native_QSensorReading_ptr(long __this__nativeId, long other);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QRotationReading(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QRotationReading(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QRotationReading instance, QDeclarativeConstructor constructor);
/**
* Overloaded constructor for {@link #QRotationReading(io.qt.core.QObject)}
* with parent = null
.
*/
public QRotationReading() {
this((io.qt.core.QObject)null);
}
/**
* @hidden
* Kotlin property getter. In Java use {@link #x()} instead.
*/
@QtPropertyReader(enabled=false)
@QtUninvokable
public final double getX() {
return x();
}
/**
* @hidden
* Kotlin property getter. In Java use {@link #y()} instead.
*/
@QtPropertyReader(enabled=false)
@QtUninvokable
public final double getY() {
return y();
}
/**
* @hidden
* Kotlin property getter. In Java use {@link #z()} instead.
*/
@QtPropertyReader(enabled=false)
@QtUninvokable
public final double getZ() {
return z();
}
}