Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
7915505c
Commit
7915505c
authored
Jul 23, 2013
by
Robert Maynard
Committed by
Code Review
Jul 23, 2013
Browse files
Merge topic 'vtkFLUENTReader_array_indexing_12683' into master
0a2836c7
Fix off by one error in vtkFLUENTReader::GetCellsAscii().
parents
2193b802
0a2836c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
IO/Geometry/vtkFLUENTReader.cxx
View file @
7915505c
...
...
@@ -2666,7 +2666,7 @@ void vtkFLUENTReader::GetCellsAscii()
vtksys_ios
::
stringstream
pdatastream
(
pdata
);
for
(
int
i
=
firstIndex
;
i
<=
lastIndex
;
i
++
)
{
pdatastream
>>
this
->
Cells
->
value
[
i
].
type
;
pdatastream
>>
this
->
Cells
->
value
[
i
-
1
].
type
;
this
->
Cells
->
value
[
i
-
1
].
zone
=
zoneId
;
this
->
Cells
->
value
[
i
-
1
].
parent
=
0
;
this
->
Cells
->
value
[
i
-
1
].
child
=
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