rotation_property.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016, Bielefeld University, CITEC
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Willow Garage, Inc. nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27  * POSSIBILITY OF SUCH DAMAGE.
28  *
29  * Author: Robert Haschke <rhaschke@techfak.uni-bielefeld.de>
30  */
31 
32 #ifndef ROTATION_PROPERTY_H
33 #define ROTATION_PROPERTY_H
34 
35 #include <Eigen/Geometry>
36 #include <stdexcept>
37 
40 #include "euler_property.h"
41 
42 namespace agni_tf_tools
43 {
44 
46 {
47 Q_OBJECT
48 public:
49  RotationProperty(Property* parent = 0,
50  const QString& name = QString(),
51  const Eigen::Quaterniond& value = Eigen::Quaterniond::Identity(),
52  const char *changed_slot = 0,
53  QObject* receiver = 0);
54 
55  Eigen::Quaterniond getQuaternion() const;
56  virtual bool setValue(const QVariant& value);
57 
59  virtual void load(const rviz::Config& config);
60  virtual void save(rviz::Config config) const;
61 
63  virtual void setReadOnly(bool read_only);
64 
65 public Q_SLOTS:
66  void setQuaternion(const Eigen::Quaterniond &q);
67  void setEulerAngles(double euler[3], bool normalize);
68  void setEulerAngles(double e1, double e2, double e3, bool normalize);
69  void setEulerAxes(const QString &axes);
70 
71 private Q_SLOTS:
72  void updateFromEuler();
73  void updateFromQuaternion();
74 
75 Q_SIGNALS:
77  void quaternionChanged(Eigen::Quaterniond q);
79  void statusUpdate(int, const QString&, const QString&);
80 
81 private:
82  void updateString();
83 
88 };
89 
90 } // end namespace agni_tf_tools
91 
92 #endif // ROTATION_PROPERTY_H
void statusUpdate(int, const QString &, const QString &)
config
void quaternionChanged(Eigen::Quaterniond q)
rviz::EulerProperty * euler_property_
virtual void save(rviz::Config config) const
virtual bool setValue(const QVariant &value)
rviz::QuaternionProperty * quaternion_property_
Eigen::Quaterniond getQuaternion() const
void setQuaternion(const Eigen::Quaterniond &q)
RotationProperty(Property *parent=0, const QString &name=QString(), const Eigen::Quaterniond &value=Eigen::Quaterniond::Identity(), const char *changed_slot=0, QObject *receiver=0)
TFSIMD_FORCE_INLINE Vector3 & normalize()
Property(const QString &name=QString(), const QVariant default_value=QVariant(), const QString &description=QString(), Property *parent=0, const char *changed_slot=0, QObject *receiver=0)
virtual void setReadOnly(bool read_only)
Overridden from Property to propagate read-only-ness to children.
void setEulerAxes(const QString &axes)
void setEulerAngles(double euler[3], bool normalize)
virtual void load(const rviz::Config &config)
Load the value of this property and/or its children from the given Config node.


agni_tf_tools
Author(s): Robert Haschke
autogenerated on Fri Jun 7 2019 22:04:59