Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
1844ce5a
Commit
1844ce5a
authored
May 16, 2018
by
Mark OLESEN
Browse files
BUG: wrong sizing index for VTK legacy polyhedrals (closes
#829
)
parent
c18a2a63
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/conversion/vtk/part/foamVtuSizingTemplates.C
View file @
1844ce5a
...
...
@@ -574,7 +574,8 @@ void Foam::vtk::vtuSizing::populateArrays
if
(
output
==
contentType
::
LEGACY
)
{
// Update size for legacy face stream
faceOutput
[
startLabel
]
=
(
faceIndexer
-
startLabel
);
// (subtract 1 to avoid counting the storage location)
faceOutput
[
startLabel
]
=
(
faceIndexer
-
1
-
startLabel
);
}
else
{
...
...
Write
Preview
Supports
Markdown
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