Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
wolf
Merge requests
!187
Sensors api
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Sensors api
sensors_api
into
master
Overview
0
Commits
5
Pipelines
1
Changes
9
Merged
Joan Solà Ortega
requested to merge
sensors_api
into
master
7 years ago
Overview
0
Commits
5
Pipelines
1
Changes
9
Expand
0
0
Merge request reports
Viewing commit
df2bf5aa
Prev
Next
Show latest version
9 files
+
24
−
51
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
df2bf5aa
Remove Intrinsics constructors. Add virtual destructors.
· df2bf5aa
Joan Solà Ortega
authored
7 years ago
src/sensors/sensor_diff_drive.h
+
2
−
24
Options
@@ -16,30 +16,6 @@ namespace wolf {
struct
IntrinsicsDiffDrive
:
public
IntrinsicsBase
{
IntrinsicsDiffDrive
()
=
default
;
IntrinsicsDiffDrive
(
const
Scalar
_left_radius
,
const
Scalar
_right_radius
,
const
Scalar
_separation
,
const
DiffDriveModel
_model
,
const
Eigen
::
VectorXs
&
_factors
,
const
Scalar
_left_resolution
,
const
Scalar
_right_resolution
,
const
Scalar
_left_gain
,
const
Scalar
_right_gain
)
:
left_radius_
(
_left_radius
),
right_radius_
(
_right_radius
),
separation_
(
_separation
),
model_
(
_model
),
factors_
(
_factors
),
left_resolution_
(
_left_resolution
),
right_resolution_
(
_right_resolution
),
left_gain_
(
_left_gain
),
right_gain_
(
_right_gain
)
{
//
}
Scalar
left_radius_
;
Scalar
right_radius_
;
Scalar
separation_
;
@@ -53,6 +29,8 @@ struct IntrinsicsDiffDrive : public IntrinsicsBase
Scalar
left_gain_
=
0.01
;
Scalar
right_gain_
=
0.01
;
virtual
~
IntrinsicsDiffDrive
()
=
default
;
};
typedef
std
::
shared_ptr
<
IntrinsicsDiffDrive
>
IntrinsicsDiffDrivePtr
;
Loading