CartesianImpedance.cpp

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 #include "CartesianImpedance.h"
00028 
00029 using namespace nemo;
00030 
00031 namespace rci {
00032 
00033 TranslationalImpedance::TranslationalImpedance() :
00034         CartesianTranslational() {
00035 }
00036 
00037 TranslationalImpedance::TranslationalImpedance(double valx, double valy,
00038         double valz) :
00039         CartesianTranslational(valx, valy, valz) {
00040 }
00041 
00042 TranslationalImpedance::TranslationalImpedance(
00043         const TranslationalImpedance& impedance) :
00044         CartesianTranslational() {
00045     this->_values = RealVector(dim(3));
00046     this->_values[0] = impedance.asDouble(0);
00047     this->_values[1] = impedance.asDouble(1);
00048     this->_values[2] = impedance.asDouble(2);
00049 }
00050 
00051 TranslationalImpedance::TranslationalImpedance(nemo::RealVector values) :
00052         CartesianTranslational(values) {
00053 }
00054 
00055 RotationalImpedance::RotationalImpedance() :
00056         CartesianRotational() {
00057 }
00058 
00059 RotationalImpedance::RotationalImpedance(double vala, double valb, double valc,
00060         double vald) :
00061         CartesianRotational(vala, valb, valc, vald) {
00062 }
00063 
00064 RotationalImpedance::RotationalImpedance(nemo::RealVector values) :
00065         CartesianRotational(values) {
00066 }
00067 
00068 RotationalImpedance::RotationalImpedance(const RotationalImpedance& impedance) :
00069         CartesianRotational() {
00070     this->_values = RealVector(impedance.asDouble(0), impedance.asDouble(1),
00071             impedance.asDouble(2));
00072 }
00073 
00074 CartesianImpedance::CartesianImpedance() :
00075         CartesianValue() {
00076 }
00077 
00078 CartesianImpedance::CartesianImpedance(double valx, double valy, double valz,
00079         double vala, double valb, double valc, double vald) :
00080         CartesianValue(valx, valy, valz, vala, valb, valc, vald) {
00081 }
00082 
00083 CartesianImpedance::CartesianImpedance(const CartesianImpedance& impedance) :
00084         CartesianValue(impedance) {
00085 }
00086 
00087 CartesianImpedance::CartesianImpedance(nemo::RealVector values) :
00088         CartesianValue(values) {
00089     this->_transl = TranslationalImpedance(values[0], values[1], values[2]);
00090     this->_rot = RotationalImpedance(values[3], values[4], values[5],
00091             values[6]);
00092 }
00093 
00094 }
Generated on Thu Aug 2 14:02:47 2012 for RCI by  doxygen 1.6.3