1#ifndef IRBCAMINTERFACEPUBLIC_H
2#define IRBCAMINTERFACEPUBLIC_H
5#include "irbcaminterface.h"
8#include "targetproxymodel.h"
30 Q_PROPERTY(
bool irbcamForWeb READ IrbcamForWeb CONSTANT)
32 Q_PROPERTY(QString pluginUrl READ getPluginUrl CONSTANT)
46 Q_PROPERTY(QString
pluginName READ getPluginName CONSTANT)
136 Xyz = int(Hokarob::RotationSequence::xyz),
138 Xzy = int(Hokarob::RotationSequence::xzy),
140 Yxz = int(Hokarob::RotationSequence::yxz),
142 Yzx = int(Hokarob::RotationSequence::yzx),
144 Zxy = int(Hokarob::RotationSequence::zxy),
146 Zyx = int(Hokarob::RotationSequence::zyx),
148 Zyz = int(Hokarob::RotationSequence::zyz)
460 static
bool IrbcamForWeb();
Public Interface for Extending IRBCAM using QML Plugins.
Definition irbcaminterfacepublic.h:26
void mainWindowChanged()
Signal emitted when the main window size has changed.
TargetProxyModel * pathModel
Access the Cartesian path in the station.
Definition irbcaminterfacepublic.h:92
QRect mainWindow
Q_PROPERTY for accessing the main window's geometry as a QRect.
Definition irbcaminterfacepublic.h:110
CoordinateFrame
Enum representing different coordinate frames.
Definition irbcaminterfacepublic.h:315
@ RobotBaseFrame
Robot base frame transformation.
Definition irbcaminterfacepublic.h:325
@ LinearTrackBaseFrame
Linear track base frame transformation.
Definition irbcaminterfacepublic.h:329
@ ObjectFrame
Object frame transformation.
Definition irbcaminterfacepublic.h:319
@ TooltipFrame
Tool tip (TCP) frame transformation.
Definition irbcaminterfacepublic.h:321
@ UserFrame
User frame transformation.
Definition irbcaminterfacepublic.h:317
@ StationaryToolBaseFrame
Stationary tool base frame transformation.
Definition irbcaminterfacepublic.h:323
@ RotaryTableBaseFrame
Rotary table base frame transformation.
Definition irbcaminterfacepublic.h:327
SpeedMode
Target speed mode.
Definition irbcaminterfacepublic.h:381
@ SpeedModeRapid
Rapid move speed. Usually a special type of move speed configured by the controller.
Definition irbcaminterfacepublic.h:385
@ SpeedModeInput
Manual input.
Definition irbcaminterfacepublic.h:383
@ SpeedModeCutting
Cutting move speed. Usually a special type of move speed configured by the controller.
Definition irbcaminterfacepublic.h:387
Q_INVOKABLE void setCoordinateFrame(CoordinateFrame frame, QVector3D position, QQuaternion quat)
Sets position and orientation of a given coordinate frame.
KinSolution
Solution status.
Definition irbcaminterfacepublic.h:422
@ Solved
The target /path was solved successfully.
Definition irbcaminterfacepublic.h:428
@ NotSolved
The target/path is not solved and an attempt to solve it has not been made.
Definition irbcaminterfacepublic.h:424
@ Failed
An attempt to solve the target/path was made, but it failed.
Definition irbcaminterfacepublic.h:426
MotionType
Type of move operation.
Definition irbcaminterfacepublic.h:348
@ MotionTypeRotaryLiftPoint2
Rotary table lift point. Exported as a linear move.
Definition irbcaminterfacepublic.h:358
@ MotionTypeRotaryLiftPoint1
Rotary table lift point. Exported as a linear move.
Definition irbcaminterfacepublic.h:356
@ MotionTypeArcMidpoint
Arc move. Corresponds to moveC.
Definition irbcaminterfacepublic.h:352
@ MotionTypeRotaryLiftPoint4
Rotary table lift point. Exported as a linear move.
Definition irbcaminterfacepublic.h:362
@ MotionTypeLinear
Linear move. Corresponds to moveL.
Definition irbcaminterfacepublic.h:350
@ MotionTypeRotaryLiftPoint3
Rotary table lift point. Exported as a linear move.
Definition irbcaminterfacepublic.h:360
@ MotionTypeLinearLiftPoint
Linear lift point. Exported as a linear move.
Definition irbcaminterfacepublic.h:354
QString pluginName
Q_PROPERTY for accessing the name of the plugin.
Definition irbcaminterfacepublic.h:46
Q_INVOKABLE double radToDeg(double val)
Converts an angle from radians to degrees.
Q_INVOKABLE QMatrix4x4 quaternionToMatrix(QQuaternion quat)
Converts quaternion to transformation matrix.
RotationSequence
Enum representing different rotation sequences.
Definition irbcaminterfacepublic.h:134
@ Xzy
Rotation in sequence: X > Z > Y.
Definition irbcaminterfacepublic.h:138
@ Xyz
Rotation in sequence: X > Y > Z.
Definition irbcaminterfacepublic.h:136
@ Yxz
Rotation in sequence: Y > X > Z.
Definition irbcaminterfacepublic.h:140
@ Zxy
Rotation in sequence: Z > X > Y.
Definition irbcaminterfacepublic.h:144
@ Zyx
Rotation in sequence: Z > Y > X.
Definition irbcaminterfacepublic.h:146
@ Zyz
Rotation in sequence: Z > Y > Z.
Definition irbcaminterfacepublic.h:148
@ Yzx
Rotation in sequence: Y > Z > X.
Definition irbcaminterfacepublic.h:142
Q_INVOKABLE QQuaternion eulerToQuaternion(double rx, double ry, double rz, RotationSequence seq)
Converts Euler angles to a Quaternion using the specified rotation sequence.
Q_INVOKABLE QQuaternion matrixToQuaternion(QMatrix4x4 mat)
Converts transformation matrix to a quaternion.
Q_INVOKABLE QVector3D quaternionToEuler(QQuaternion quat, RotationSequence seq)
Converts a Quaternion to Euler angles using the specified rotation sequence.
Q_INVOKABLE QVector3D quaternionToRpy(QQuaternion quat)
Converts a quaternion to Roll Pitch Yaw (RPY) angles. This function converts a rotation expressed in ...
Q_INVOKABLE double degToRad(double val)
Converts an angle from degrees to radians.