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
6dd223b5
Commit
6dd223b5
authored
5 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Refactored/modernzed RuntimeEnvironment::toVector3f
parent
b4581311
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
VirtualRobot/RuntimeEnvironment.cpp
+32
-35
32 additions, 35 deletions
VirtualRobot/RuntimeEnvironment.cpp
with
32 additions
and
35 deletions
VirtualRobot/RuntimeEnvironment.cpp
+
32
−
35
View file @
6dd223b5
...
...
@@ -456,58 +456,55 @@ namespace VirtualRobot
return
std
::
stoi
(
s
);
}
bool
RuntimeEnvironment
::
toVector3f
(
const
std
::
string
&
s
,
Eigen
::
Vector3f
&
storeResult
)
bool
RuntimeEnvironment
::
toVector3f
(
const
std
::
string
&
s
tring
,
Eigen
::
Vector3f
&
storeResult
)
{
if
(
s
.
length
()
<
3
)
if
(
s
tring
.
length
()
<
3
)
{
return
false
;
}
if
(
s
[
0
]
!=
'('
||
s
[
s
.
length
()
-
1
]
!=
')'
)
if
(
s
tring
[
0
]
!=
'('
||
s
tring
[
string
.
length
()
-
1
]
!=
')'
)
{
VR_WARNING
<<
"Expecting string to start and end with brackets (): "
<<
s
<<
endl
;
VR_WARNING
<<
"Expecting string to start and end with brackets (): "
<<
s
tring
<<
endl
;
return
false
;
}
std
::
string
s2
=
s
;
s2
.
erase
(
s2
.
begin
(),
s2
.
begin
()
+
1
);
s2
.
erase
(
s2
.
end
()
-
1
,
s2
.
end
());
std
::
vector
<
std
::
string
>
strs
;
std
::
string
del
(
","
);
const
std
::
string
stringTrimmed
=
string
.
substr
(
1
,
string
.
size
()
-
1
);
const
std
::
string
delimiter
=
","
;
boost
::
split
(
strs
,
s2
,
boost
::
is_any_of
(
del
));
std
::
vector
<
std
::
string
>
stringSplit
;
boost
::
split
(
stringSplit
,
stringTrimmed
,
boost
::
is_any_of
(
delimiter
));
if
(
str
s
.
size
()
!=
3
)
if
(
str
ingSplit
.
size
()
!=
3
)
{
VR_WARNING
<<
"Expecting values of string to be separated with a ',': "
<<
s
<<
endl
;
VR_WARNING
<<
"Expecting values of string to be separated with a ',': "
<<
s
tring
<<
endl
;
return
false
;
}
float
a
=
(
float
)
atof
(
strs
[
0
].
c_str
());
float
b
=
(
float
)
atof
(
strs
[
1
].
c_str
());
float
c
=
(
float
)
atof
(
strs
[
2
].
c_str
());
if
(
boost
::
math
::
isinf
(
a
)
||
boost
::
math
::
isinf
(
-
a
)
||
boost
::
math
::
isnan
(
a
))
{
VR_WARNING
<<
"Could not convert "
<<
strs
[
0
]
<<
" to a number"
<<
endl
;
return
false
;
}
if
(
boost
::
math
::
isinf
(
b
)
||
boost
::
math
::
isinf
(
-
b
)
||
boost
::
math
::
isnan
(
b
))
{
VR_WARNING
<<
"Could not convert "
<<
strs
[
1
]
<<
" to a number"
<<
endl
;
return
false
;
}
if
(
boost
::
math
::
isinf
(
c
)
||
boost
::
math
::
isinf
(
-
c
)
||
boost
::
math
::
isnan
(
c
))
Eigen
::
Vector3f
result
;
for
(
int
i
=
0
;
i
<
result
.
SizeAtCompileTime
;
++
i
)
{
VR_WARNING
<<
"Could not convert "
<<
strs
[
2
]
<<
" to a number"
<<
endl
;
return
false
;
const
std
::
string
&
string
=
stringSplit
[
static_cast
<
std
::
size_t
>
(
i
)];
bool
error
=
false
;
float
a
;
try
{
a
=
std
::
stof
(
string
);
}
catch
(
const
std
::
invalid_argument
&
)
{
error
=
true
;
}
if
(
error
||
boost
::
math
::
isinf
(
a
)
||
boost
::
math
::
isinf
(
-
a
)
||
boost
::
math
::
isnan
(
a
))
{
VR_WARNING
<<
"Could not convert '"
<<
string
<<
"' to a number."
<<
endl
;
return
false
;
}
result
(
i
)
=
a
;
}
storeResult
(
0
)
=
a
;
storeResult
(
1
)
=
b
;
storeResult
(
2
)
=
c
;
storeResult
=
result
;
return
true
;
}
...
...
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