Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Thomas Pitiot
CGoGN
Commits
29f14458
Commit
29f14458
authored
Mar 16, 2012
by
Sylvain Thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor bug in MC
parent
bfceabf5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
include/Algo/MC/marchingcube.hpp
include/Algo/MC/marchingcube.hpp
+3
-3
No files found.
include/Algo/MC/marchingcube.hpp
View file @
29f14458
...
...
@@ -1192,11 +1192,11 @@ void MarchingCube<DataType, Windowing, PFP>::removeFacesOfBoundary(AttributeHand
{
float
xmin
=
frameWidth
;
float
xmax
=
m_Image
->
getWidthX
()
-
frameWidth
;
float
xmax
=
m_Image
->
getWidthX
()
-
frameWidth
-
1
;
float
ymin
=
frameWidth
;
float
ymax
=
m_Image
->
getWidthY
()
-
frameWidth
;
float
ymax
=
m_Image
->
getWidthY
()
-
frameWidth
-
1
;
float
zmin
=
frameWidth
;
float
zmax
=
m_Image
->
getWidthZ
()
-
frameWidth
;
float
zmax
=
m_Image
->
getWidthZ
()
-
frameWidth
-
1
;
// traverse position and create bound attrib
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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