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
!456
Resolve "Migrate from StateBlock to StateDerived"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Migrate from StateBlock to StateDerived"
465-migrate-from-stateblock-to-statederived
into
devel
Overview
0
Commits
19
Pipelines
18
Changes
1
Merged
Joan Solà Ortega
requested to merge
465-migrate-from-stateblock-to-statederived
into
devel
2 years ago
Overview
0
Commits
19
Pipelines
18
Changes
1
Expand
Closes
#465 (closed)
Edited
2 years ago
by
Joan Solà Ortega
0
0
Merge request reports
Viewing commit
78d9b8da
Prev
Next
Show latest version
1 file
+
6
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
78d9b8da
Add setTransformable() and variants
· 78d9b8da
Joan Solà Ortega
authored
2 years ago
include/core/state_block/state_block.h
+
6
−
2
Options
@@ -182,9 +182,13 @@ public:
bool
isTransformable
()
const
{
return
transformable_
;
}
;
}
virtual
void
transform
(
const
VectorComposite
&
_transformation
)
{
};
void
setTransformable
(
bool
_trf
=
true
)
{
transformable_
=
_trf
;}
void
setNonTransformable
()
{
transformable_
=
false
;}
virtual
void
transform
(
const
VectorComposite
&
_transformation
)
{};
void
plus
(
const
Eigen
::
VectorXd
&
_dv
);
Loading