Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RBComb Sample Visualizer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Pascal Engeler
RBComb Sample Visualizer
Commits
1958283f
Commit
1958283f
authored
1 year ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Added visibility manager for opacity and enable tracking
parent
618f6800
Branches
master
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gui/include/visibility_manager.hpp
+20
-0
20 additions, 0 deletions
gui/include/visibility_manager.hpp
gui/src/visibility_manager.cpp
+14
-0
14 additions, 0 deletions
gui/src/visibility_manager.cpp
with
34 additions
and
0 deletions
gui/include/visibility_manager.hpp
0 → 100644
+
20
−
0
View file @
1958283f
#pragma once
struct
VisibilityManager
{
static
bool
enableTop
;
static
bool
enableBottom
;
static
float
opacityMixer
;
static
float
topOpacity
();
static
float
bottomOpacity
();
/*
Opacity Mixer:
0.f - top transparent
1.f - bottom transparent
0.5f - nothing transparent
alphaTop = std::max( 2.f * opacityMixer, 1.f );
alphaBottom = std::max( 2.f * ( 1.f - opacityMixer ) );
*/
};
\ No newline at end of file
This diff is collapsed.
Click to expand it.
gui/src/visibility_manager.cpp
0 → 100644
+
14
−
0
View file @
1958283f
#include
<visibility_manager.hpp>
#include
<algorithm>
bool
VisibilityManager
::
enableTop
=
true
;
bool
VisibilityManager
::
enableBottom
=
true
;
float
VisibilityManager
::
opacityMixer
=
0.5
;
float
VisibilityManager
::
topOpacity
()
{
return
std
::
min
(
2.
f
*
opacityMixer
,
1.
f
);
}
float
VisibilityManager
::
bottomOpacity
()
{
return
std
::
min
(
2.
f
*
(
1.
f
-
opacityMixer
),
1.
f
);
}
\ No newline at end of file
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