Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Simox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Leander Singer
Simox
Commits
ae31e4ff
Commit
ae31e4ff
authored
6 years ago
by
Simon Ottenhaus
Browse files
Options
Downloads
Patches
Plain Diff
LimitVectorLength
parent
4c51c4ad
No related branches found
Branches containing commit
Tags
v2.3.48
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
VirtualRobot/math/Helpers.cpp
+18
-0
18 additions, 0 deletions
VirtualRobot/math/Helpers.cpp
VirtualRobot/math/Helpers.h
+1
-0
1 addition, 0 deletions
VirtualRobot/math/Helpers.h
with
19 additions
and
0 deletions
VirtualRobot/math/Helpers.cpp
+
18
−
0
View file @
ae31e4ff
...
...
@@ -270,3 +270,21 @@ Eigen::Matrix3f Helpers::GetOrientation(const Eigen::Matrix4f& pose)
return
pose
.
block
<
3
,
3
>
(
0
,
0
);
}
Eigen
::
VectorXf
Helpers
::
LimitVectorLength
(
const
Eigen
::
VectorXf
&
vec
,
const
Eigen
::
VectorXf
&
maxLen
)
{
if
(
maxLen
.
rows
()
!=
1
&&
maxLen
.
rows
()
!=
vec
.
rows
())
{
throw
std
::
invalid_argument
(
"maxLen.rows != 1 and != maxLen.rows"
);
}
float
scale
=
1
;
for
(
int
i
=
0
;
i
<
vec
.
rows
();
i
++
)
{
int
j
=
maxLen
.
rows
()
==
1
?
0
:
i
;
if
(
std
::
abs
(
vec
(
i
))
>
maxLen
(
j
)
&&
maxLen
(
j
)
>=
0
)
{
scale
=
std
::
min
(
scale
,
maxLen
(
j
)
/
std
::
abs
(
vec
(
i
)));
}
}
return
vec
/
scale
;
}
This diff is collapsed.
Click to expand it.
VirtualRobot/math/Helpers.h
+
1
−
0
View file @
ae31e4ff
...
...
@@ -65,6 +65,7 @@ namespace math
static
float
Distance
(
const
Eigen
::
Matrix4f
&
a
,
const
Eigen
::
Matrix4f
&
b
,
float
rad2mmFactor
);
static
Eigen
::
Vector3f
GetPosition
(
const
Eigen
::
Matrix4f
&
pose
);
static
Eigen
::
Matrix3f
GetOrientation
(
const
Eigen
::
Matrix4f
&
pose
);
static
Eigen
::
VectorXf
LimitVectorLength
(
const
Eigen
::
VectorXf
&
vec
,
const
Eigen
::
VectorXf
&
maxLen
);
private:
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment