YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
IJacobianCoupling.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2023 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6#ifndef YARP_DEV_IJACOBIANCOUPLING_H
7#define YARP_DEV_IJACOBIANCOUPLING_H
8
9#include <yarp/dev/api.h>
10#include <yarp/os/Vocab.h>
11#include <yarp/sig/Vector.h>
12#include <yarp/sig/Matrix.h>
13
14namespace yarp::dev {
15class IJacobianCoupling;
16}
60class YARP_dev_API yarp::dev::IJacobianCoupling
61{
62public:
66 virtual ~IJacobianCoupling() {}
67
82 virtual bool evaluateJacobianFromActuatedAxesToPhysicalJointsVel(const yarp::sig::Vector& actAxesPos, yarp::sig::Matrix& actAxesToPhysJointsVelJacobian)=0;
83
98 virtual bool evaluateJacobianFromPhysicalJointsToActuatedAxeseVel(const yarp::sig::Vector& physJointsPos, yarp::sig::Matrix& physJointsToActAxesVelJacobian)=0;
99};
100
101#endif // YARP_DEV_IJACOBIANCOUPLING_H
contains the definition of a Matrix type
contains the definition of a Vector type
A class for a Matrix.
Definition Matrix.h:39
For streams capable of holding different kinds of content, check what they actually have.
The main, catch-all namespace for YARP.
Definition dirs.h:16
#define YARP_dev_API
Definition api.h:18