Loading [MathJax]/extensions/tex2jax.js
iCub-main
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Functions
a
c
d
e
f
g
i
l
m
n
o
p
q
r
s
t
u
v
w
y
Variables
a
b
c
d
e
h
i
j
l
m
n
p
r
s
t
w
z
Typedefs
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
w
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerations
a
b
c
e
g
i
l
n
p
r
s
t
u
Enumerator
a
b
c
d
e
f
g
i
l
m
p
r
s
t
u
Properties
Related Symbols
a
b
c
g
i
l
o
q
r
s
t
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
x
y
z
Typedefs
Enumerations
Enumerator
_
a
c
d
e
g
j
m
n
p
s
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
icub-main
src
libraries
skinDynLib
src
dynContactList.cpp
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2010-2011 RobotCub Consortium
3
* Author: Andrea Del Prete
4
* CopyPolicy: Released under the terms of the GNU GPL v2.0.
5
*
6
*/
7
8
#include <iostream>
9
#include <sstream>
10
#include <iomanip>
11
#include <string>
12
13
#include <yarp/os/ConnectionReader.h>
14
#include <yarp/os/ConnectionWriter.h>
15
#include "
iCub/skinDynLib/dynContactList.h
"
16
#include <
iCub/ctrl/math.h
>
17
18
using namespace
std;
19
using namespace
yarp::os;
20
using namespace
iCub::skinDynLib
;
21
22
23
dynContactList::dynContactList
()
24
:vector<
dynContact
>(){}
23
dynContactList::dynContactList
() {
…
}
25
26
dynContactList::dynContactList
(
const
size_type &
n
,
const
dynContact
& value)
27
:vector<
dynContact
>(
n
, value){}
26
dynContactList::dynContactList
(
const
size_type &
n
,
const
dynContact
& value) {
…
}
28
29
30
//~~~~~~~~~~~~~~~~~~~~~~~~~~
31
// SERIALIZATION methods
32
//~~~~~~~~~~~~~~~~~~~~~~~~~~
33
bool
dynContactList::read
(ConnectionReader& connection)
34
{
35
// A dynContactList is represented as a list of list
36
// where each list is a skinContact
37
if
(connection.expectInt32()!=BOTTLE_TAG_LIST)
38
return
false
;
39
40
int
listLength = connection.expectInt32();
41
if
(listLength<0)
42
return
false
;
43
if
(listLength!=size())
44
resize(listLength);
45
46
for
(iterator it=begin(); it!=end(); it++)
47
if
(!it->read(connection))
48
return
false
;
49
50
return
!connection.isError();
51
}
33
bool
dynContactList::read
(ConnectionReader& connection) {
…
}
52
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
53
bool
dynContactList::write
(ConnectionWriter& connection)
const
54
{
55
// A dynContactList is represented as a list of list
56
// where each list is a skinContact
57
connection.appendInt32(BOTTLE_TAG_LIST);
58
connection.appendInt32(size());
59
60
for
(
auto
it=begin(); it!=end(); it++)
61
if
(!it->write(connection))
62
return
false
;
63
64
return
!connection.isError();
65
}
53
bool
dynContactList::write
(ConnectionWriter& connection)
const
{
…
}
66
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
67
string
dynContactList::toString
(
const
int
&precision)
const
{
68
stringstream ss;
69
for
(const_iterator it=begin();it!=end();it++)
70
ss<<
"- "
<<it->toString(precision)<<
";\n"
;
71
return
ss.str();
72
}
67
string
dynContactList::toString
(
const
int
&precision)
const
{
…
}
73
iCub::skinDynLib::dynContactList::toString
virtual std::string toString(const int &precision=-1) const
Useful to print some information.
Definition
dynContactList.cpp:67
iCub::skinDynLib::dynContactList::write
virtual bool write(yarp::os::ConnectionWriter &connection) const
Write dynContactList to a connection.
Definition
dynContactList.cpp:53
iCub::skinDynLib::dynContactList::read
virtual bool read(yarp::os::ConnectionReader &connection)
Definition
dynContactList.cpp:33
iCub::skinDynLib::dynContactList::dynContactList
dynContactList()
Definition
dynContactList.cpp:23
iCub::skinDynLib::dynContact
Class representing an external contact acting on a link of the robot body.
Definition
dynContact.h:52
n
int n
Definition
debugFunctions.cpp:58
dynContactList.h
math.h
iCub::skinDynLib
Definition
common.h:36
Generated on Sat Mar 1 2025 16:29:28 for iCub-main by
1.9.8