Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
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
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
Lennard Hofmann
RobotAPI
Commits
11efc553
Commit
11efc553
authored
5 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Fix GlasbeyLUT::at() for negative numbers
parent
8771e137
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
source/RobotAPI/libraries/core/visualization/GlasbeyLUT.h
+23
-4
23 additions, 4 deletions
source/RobotAPI/libraries/core/visualization/GlasbeyLUT.h
with
23 additions
and
4 deletions
source/RobotAPI/libraries/core/visualization/GlasbeyLUT.h
+
23
−
4
View file @
11efc553
#pragma once
#include
<cmath>
#include
<type_traits>
#include
<vector>
#include
<RobotAPI/interface/visualization/DebugDrawerInterface.h>
...
...
@@ -30,15 +31,21 @@ namespace armarx
* The ID is automaticall wrapped if greater than `size()`.
* If `id` is negative, its absolute value is used.
*/
template
<
typename
IntT
>
template
<
typename
UIntT
,
std
::
enable_if_t
<
std
::
is_unsigned
<
UIntT
>
::
value
,
int
>
=
0
>
static
DrawColor
at
(
UIntT
id
,
float
alpha
=
1.
f
);
// If `id` is negative, its absolute value is used.
template
<
typename
IntT
,
std
::
enable_if_t
<
std
::
is_signed
<
IntT
>
::
value
,
int
>
=
0
>
static
DrawColor
at
(
IntT
id
,
float
alpha
=
1.
f
);
static
DrawColor
at
(
std
::
size_t
id
,
float
alpha
=
1.
f
);
/**
* @brief Get a color from the lookup table with given ID (with integer values).
* The ID is automaticall wrapped if greater than `size()`.
* If `id` is negative, its absolute value is used.
*/
template
<
typename
IntT
>
template
<
typename
UIntT
,
std
::
enable_if_t
<
std
::
is_unsigned
<
UIntT
>
::
value
,
int
>
=
0
>
static
DrawColor24Bit
atByte
(
UIntT
id
);
template
<
typename
IntT
,
std
::
enable_if_t
<
std
::
is_signed
<
IntT
>
::
value
,
int
>
=
0
>
static
DrawColor24Bit
atByte
(
IntT
id
);
static
DrawColor24Bit
atByte
(
std
::
size_t
id
);
...
...
@@ -57,13 +64,25 @@ namespace armarx
};
template
<
typename
IntT
>
template
<
typename
UIntT
,
std
::
enable_if_t
<
std
::
is_unsigned
<
UIntT
>
::
value
,
int
>>
DrawColor
GlasbeyLUT
::
at
(
UIntT
id
,
float
alpha
)
{
return
at
(
static_cast
<
std
::
size_t
>
(
id
),
alpha
);
}
template
<
typename
IntT
,
std
::
enable_if_t
<
std
::
is_signed
<
IntT
>
::
value
,
int
>>
DrawColor
GlasbeyLUT
::
at
(
IntT
id
,
float
alpha
)
{
return
at
(
static_cast
<
std
::
size_t
>
(
id
>=
0
?
id
:
std
::
abs
(
id
)),
alpha
);
}
template
<
typename
IntT
>
template
<
typename
UIntT
,
std
::
enable_if_t
<
std
::
is_unsigned
<
UIntT
>
::
value
,
int
>>
DrawColor24Bit
GlasbeyLUT
::
atByte
(
UIntT
id
)
{
return
atByte
(
static_cast
<
std
::
size_t
>
(
id
));
}
template
<
typename
IntT
,
std
::
enable_if_t
<
std
::
is_signed
<
IntT
>
::
value
,
int
>>
DrawColor24Bit
GlasbeyLUT
::
atByte
(
IntT
id
)
{
return
atByte
(
static_cast
<
std
::
size_t
>
(
id
>=
0
?
id
:
std
::
abs
(
id
)));
...
...
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