Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121718513
OncillaL3.cpp
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
Sun, Jul 13, 09:55
Size
623 B
Mime Type
text/x-c
Expires
Tue, Jul 15, 09:55 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27379515
Attached To
R6622 liboncilla
OncillaL3.cpp
View Options
#include "OncillaL3.h"
using
namespace
std
;
namespace
cca
{
namespace
rci
{
namespace
driver
{
OncillaL3
::
OncillaL3
(
const
std
::
string
&
name
)
:
rci
::
ResourceNode
(
name
),
rci
::
Sensing
(),
rci
::
PositionSensing
()
{
this
->
_dimension
=
1
;
}
JointAnglesPtr
OncillaL3
::
getJointPosition
()
const
{
throw
std
::
runtime_error
(
"Not yet implemented."
);
}
OncillaL3
::~
OncillaL3
()
{
}
std
::
string
OncillaL3
::
print
()
const
{
ostringstream
outstream
(
ostringstream
::
out
);
outstream
.
precision
(
3
);
// Precision when printing double values
outstream
<<
"<Oncilla Ankle>"
<<
endl
;
return
outstream
.
str
();
}
}
}
}
Event Timeline
Log In to Comment