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
Christian Butz
VTK
Commits
969532d8
Commit
969532d8
authored
Nov 29, 2011
by
Jeff Baumes
Browse files
BUG: testEmptyInput requires filter to work with null points
Change-Id: Id0192a8e8ce4f30bda470688fba95fd33d124c47
parent
4be693d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Infovis/vtkConvexHull2D.cxx
View file @
969532d8
...
...
@@ -238,6 +238,11 @@ int vtkConvexHull2D::RequestData(vtkInformation *vtkNotUsed(request),
vtkPolyData
*
input
=
vtkPolyData
::
SafeDownCast
(
inInfo
->
Get
(
vtkDataObject
::
DATA_OBJECT
()));
vtkPoints
*
inputPoints
=
input
->
GetPoints
();
if
(
!
inputPoints
)
{
vtkErrorMacro
(
"Input points needed"
);
return
0
;
}
vtkInformation
*
outInfo0
=
outputVector
->
GetInformationObject
(
0
);
vtkInformation
*
outInfo1
=
outputVector
->
GetInformationObject
(
1
);
...
...
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