Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Etienne Schmitt
CGoGN
Commits
a4e5f521
Commit
a4e5f521
authored
May 05, 2014
by
untereiner
Browse files
bug fix : myMap.isVolumeIncidentToBoundary in volumeExplorer App
parent
982a728e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Apps/Examples/volumeExplorer.cpp
View file @
a4e5f521
...
...
@@ -176,7 +176,7 @@ void MyQT::cb_Open()
// if (v>maxV)
// maxV=v;
if
(
myMap
.
is
BoundaryAdjacentVolume
(
d
))
if
(
myMap
.
is
VolumeIncidentToBoundary
(
d
))
color
[
d
]
=
PFP
::
VEC3
(
0
,
0
,
0
);
}
// for (unsigned int i = color.begin(); i != color.end(); color.next(i))
...
...
@@ -421,7 +421,7 @@ int main(int argc, char **argv)
// if (v>maxV)
// maxV=v;
if
(
myMap
.
is
BoundaryAdjacentVolume
(
d
))
if
(
myMap
.
is
VolumeIncidentToBoundary
(
d
))
color
[
d
]
=
PFP
::
VEC3
(
0
,
0
,
0
);
else
color
[
d
]
=
PFP
::
VEC3
(
v
,
0
,
0
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment