JointAngles.h

Go to the documentation of this file.
00001 /* ============================================================
00002  *
00003  * This file is a part of RCI project
00004  *
00005  * Copyright (C) 2011 by Arne Nordmann <anordman at cor-lab dot uni-bielefeld dot de>
00006  *
00007  * This file may be licensed under the terms of the
00008  * GNU Lesser General Public License Version 3 (the ``LGPL''),
00009  * or (at your option) any later version.
00010  *
00011  * Software distributed under the License is distributed
00012  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
00013  * express or implied. See the LGPL for the specific language
00014  * governing rights and limitations.
00015  *
00016  * You should have received a copy of the LGPL along with this
00017  * program. If not, go to http://www.gnu.org/licenses/lgpl.html
00018  * or write to the Free Software Foundation, Inc.,
00019  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
00020  *
00021  * The development of this software was supported by:
00022  *   CoR-Lab, Research Institute for Cognition and Robotics
00023  *     Bielefeld University
00024  *
00025  * ============================================================ */
00026 
00027 #pragma once
00028 
00029 #include <iostream>
00030 #include <sstream>
00031 #include <math.h>
00032 #include <boost/shared_ptr.hpp>
00033 
00034 #include <nemo/Mapping.h>
00035 
00036 #include <rsc/math/MathUtils.h>
00037 
00038 #include "rci/dto/JointValues.h"
00039 
00040 namespace rci {
00041 
00042 class JointAngles;
00043 typedef boost::shared_ptr<JointAngles> JointAnglesPtr;
00044 
00052 class JointAngles: public JointValues {
00053 
00054 public:
00055     JointAngles();
00056     JointAngles(double value);
00057     JointAngles(const nemo::RealVector& values);
00058     JointAngles(const JointAngles&);
00059 
00060     JointAnglesPtr operator[](unsigned int index) {
00061         return JointAnglesPtr(new JointAngles(this->rad(index)));
00062     }
00063 
00073     virtual double asDouble(unsigned int index, bool norm = false) const;
00074 
00084     virtual double rad(unsigned int index = 0, bool norm = false) const;
00085 
00093     virtual nemo::RealVector radVector(bool norm = false) const;
00094 
00104     virtual double deg(unsigned int index = 0, bool norm = false) const;
00105 
00113     virtual nemo::RealVector degVector(bool norm = false) const;
00114 
00124     virtual nemo::RealVector asDoubleVector(bool norm = false) const;
00125 
00132     virtual void setFromRad(unsigned int index, double value);
00133     virtual void setFromRad(const nemo::RealVector& values);
00134 
00141     virtual void setFromDeg(unsigned int index, double value);
00142     virtual void setFromDeg(const nemo::RealVector& values);
00143 
00154     static JointAnglesPtr create(unsigned int dimension, double value = 0.0);
00155 
00161     static JointAnglesPtr copy(const JointAngles&);
00162 
00169     static JointAnglesPtr fromRad(const nemo::RealVector& values);
00170     static JointAnglesPtr fromRad(double value);
00171 
00178     static JointAnglesPtr fromDeg(const nemo::RealVector& values);
00179     static JointAnglesPtr fromDeg(double value);
00180 
00184     void normalize();
00185 
00189     static JointAnglesPtr fromValue(double value);
00190 
00194     virtual std::string print() const;
00195 };
00196 
00197 }
Generated on Thu Aug 2 14:02:49 2012 for RCI by  doxygen 1.6.3