wbc
src
types
Contact.hpp
Go to the documentation of this file.
1
#ifndef WBC_TYPES_CONTACT_HPP
2
#define WBC_TYPES_CONTACT_HPP
3
4
#include <string>
5
6
namespace
wbc
{
namespace
types
{
7
11
class
Contact
{
12
public
:
13
Contact
(){
14
15
}
16
Contact
(std::string
frame_id
,
int
active
,
double
mu
) :
frame_id
(
frame_id
),
active
(
active
),
mu
(
mu
){
17
18
}
19
Contact
(std::string
frame_id
,
int
active
,
double
mu
,
double
wx
,
double
wy
) :
frame_id
(
frame_id
),
active
(
active
),
mu
(
mu
),
wx
(
wx
),
wy
(
wy
){
20
21
}
22
std::string
frame_id
;
23
int
active
;
24
double
mu
;
25
double
wx
;
26
double
wy
;
27
};
28
}
29
}
30
#endif
wbc::types::Contact::active
int active
Definition
Contact.hpp:23
wbc::types::Contact::wy
double wy
Definition
Contact.hpp:26
wbc::types::Contact::Contact
Contact(std::string frame_id, int active, double mu, double wx, double wy)
Definition
Contact.hpp:19
wbc::types::Contact::mu
double mu
Definition
Contact.hpp:24
wbc::types::Contact::Contact
Contact(std::string frame_id, int active, double mu)
Definition
Contact.hpp:16
wbc::types::Contact::Contact
Contact()
Definition
Contact.hpp:13
wbc::types::Contact::frame_id
std::string frame_id
Definition
Contact.hpp:22
wbc::types::Contact::wx
double wx
Definition
Contact.hpp:25
wbc::types
Definition
Contact.hpp:6
wbc
Definition
ContactsAccelerationConstraint.cpp:3
Generated by
1.13.2