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
Ben Boeckel
Xdmf
Commits
c40ed037
Commit
c40ed037
authored
Feb 09, 2010
by
Jerry Clarke
Browse files
fix for z-dim = 1 (for Ian Curington)
parent
790266b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
vtk/vtkXdmfReader.cxx
View file @
c40ed037
...
...
@@ -91,7 +91,7 @@
//----------------------------------------------------------------------------
vtkStandardNewMacro
(
vtkXdmfReader
);
vtkCxxRevisionMacro
(
vtkXdmfReader
,
"1.7
1
"
);
vtkCxxRevisionMacro
(
vtkXdmfReader
,
"1.7
2
"
);
//----------------------------------------------------------------------------
vtkCxxSetObjectMacro
(
vtkXdmfReader
,
Controller
,
vtkMultiProcessController
);
...
...
@@ -3024,9 +3024,9 @@ int vtkXdmfReaderInternal::RequestGridData(
if
(
SetType
==
XDMF_SET_TYPE_NODE
)
{
// Point count is 1 + cell extent
realcount
[
0
]
++
;
realcount
[
1
]
++
;
realcount
[
2
]
++
;
if
(
upext
[
5
]
-
upext
[
4
]
>
0
)
realcount
[
0
]
++
;
if
(
upext
[
3
]
-
upext
[
2
]
>
0
)
realcount
[
1
]
++
;
if
(
upext
[
1
]
-
upext
[
0
]
>
0
)
realcount
[
2
]
++
;
}
/*
XdmfArray *values = this->FormatMulti->ElementToArray(
...
...
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