Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90780260
OncillaFoot.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 4, 16:48
Size
822 B
Mime Type
text/x-c++
Expires
Wed, Nov 6, 16:48 (1 d, 17 h)
Engine
blob
Format
Raw Data
Handle
22131910
Attached To
R6622 liboncilla
OncillaFoot.h
View Options
#pragma once
#include <iostream>
#include <boost/shared_ptr.hpp>
#include <rci/nodes/ResourceNode.h>
#include <rci/nodes/Controlled.h>
#include <rci/nodes/Configurable.h>
#include <rci/nodes/Sensing.h>
#include <rci/dto/JointAngles.h>
namespace
cca
{
namespace
rci
{
namespace
driver
{
class
OncillaFoot
;
typedef
boost
::
shared_ptr
<
OncillaFoot
>
OncillaFootPtr
;
/**
* Node class, representing the foot of the quadruped robot. Not actuated,
* but force sensing.
*/
class
OncillaFoot
:
public
rci
::
ResourceNode
,
public
rci
::
Sensing
,
public
rci
::
ForceSensing
{
public:
OncillaFoot
(
std
::
string
name
=
"Oncilla Foot"
);
virtual
~
OncillaFoot
();
/**
* Returns contact forces
*/
ForcesPtr
getForces
()
const
;
/**
* Print
*/
std
::
string
print
()
const
;
};
}
}
}
Event Timeline
Log In to Comment