Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91498205
OncillaL4.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
Mon, Nov 11, 16:47
Size
574 B
Mime Type
text/x-c
Expires
Wed, Nov 13, 16:47 (2 d)
Engine
blob
Format
Raw Data
Handle
22269478
Attached To
R6622 liboncilla
OncillaL4.cpp
View Options
#include "OncillaL4.h"
using namespace std;
namespace rci {
namespace oncilla {
OncillaL4::OncillaL4(const std::string & name)
: rci::ResourceNode(name)
, rci::Sensing()
, rci::ForceSensing() {
this->_dimension = 1;
}
ForcesPtr OncillaL4::getForces() const {
throw std::runtime_error("Not yet implemented.");
}
OncillaL4::~OncillaL4() {
}
std::string OncillaL4::print() const {
ostringstream outstream(ostringstream::out);
outstream.precision(3); // Precision when printing double values
outstream << "<Oncilla Foot>" << endl;
return outstream.str();
}
}
}
Event Timeline
Log In to Comment