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
1a937d94
Commit
1a937d94
authored
1 year ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Added mirror setting
parent
d902246e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gui/include/layer.hpp
+1
-0
1 addition, 0 deletions
gui/include/layer.hpp
gui/src/layer.cpp
+6
-0
6 additions, 0 deletions
gui/src/layer.cpp
with
7 additions
and
0 deletions
gui/include/layer.hpp
+
1
−
0
View file @
1a937d94
...
...
@@ -30,6 +30,7 @@ public:
void
setObjectState
(
int
objectIndex
,
int
state
);
bool
setAllObjectStates
(
std
::
vector
<
ObjectMetadata
>
data
);
void
setMirrorState
(
bool
mirror
);
std
::
string
name
()
const
;
int
numObjects
()
const
;
...
...
This diff is collapsed.
Click to expand it.
gui/src/layer.cpp
+
6
−
0
View file @
1a937d94
...
...
@@ -193,6 +193,12 @@ void Layer::setObjectState(int objectIndex, int state) {
glBindBuffer
(
GL_ARRAY_BUFFER
,
0
);
}
void
Layer
::
setMirrorState
(
bool
mirror
)
{
_shader
.
use
();
_shader
.
setBool
(
"mirror"
,
mirror
);
_shader
.
unuse
();
}
bool
Layer
::
setAllObjectStates
(
std
::
vector
<
ObjectMetadata
>
data
)
{
if
(
data
.
size
()
!=
numObjects
())
{
std
::
cerr
<<
"Size mismatch in Object States Update: Loaded "
<<
data
.
size
()
<<
", expected "
<<
numObjects
()
<<
std
::
endl
;
...
...
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