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