Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ecpcitest
vtk-m
Commits
24ebec5b
Commit
24ebec5b
authored
Nov 29, 2017
by
Allison Vacanti
Committed by
David E. DeMarle
Dec 13, 2017
Browse files
Deprecate vtkHyperOctreeFractalSource.
As requested in paraview/paraview#17791. (cherry picked from commit
f4a51052
)
parent
1cae6ed4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Filters/HyperTree/Testing/Cxx/CMakeLists.txt
View file @
24ebec5b
vtk_add_test_cxx
(
${
vtk-module
}
CxxTests test
s
set
(
test_source
s
TestClipHyperOctree.cxx
TestHyperOctreeContourFilter.cxx
TestHyperOctreeCutter.cxx
TestHyperOctreeDual.cxx
TestHyperOctreeSurfaceFilter.cxx
TestHyperOctreeToUniformGrid.cxx
TestHyperTreeGridBinary2D.cxx
...
...
@@ -69,4 +68,13 @@ vtk_add_test_cxx(${vtk-module}CxxTests tests
TestHyperTreeGridTernarySphereMaterial.cxx
TestHyperTreeGridTernarySphereMaterialReflections.cxx
)
if
(
NOT VTK_LEGACY_REMOVE
)
list
(
APPEND test_sources
TestHyperOctreeDual.cxx
#deprecated due to vtkHyperOctreeFractalSource use
)
endif
()
vtk_add_test_cxx
(
${
vtk-module
}
CxxTests tests
${
test_sources
}
)
vtk_test_cxx_executable
(
${
vtk-module
}
CxxTests tests
)
Filters/Sources/CMakeLists.txt
View file @
24ebec5b
...
...
@@ -11,7 +11,6 @@ set(Module_SRCS
vtkEllipticalButtonSource.cxx
vtkFrustumSource.cxx
vtkGlyphSource2D.cxx
vtkHyperOctreeFractalSource.cxx
vtkHyperTreeGridSource.cxx
vtkLineSource.cxx
vtkOutlineCornerFilter.cxx
...
...
@@ -38,6 +37,12 @@ set(Module_SRCS
vtkDiagonalMatrixSource.cxx
)
if
(
NOT VTK_LEGACY_REMOVE
)
list
(
APPEND Module_SRCS
vtkHyperOctreeFractalSource.cxx
)
endif
()
set_source_files_properties
(
vtkButtonSource
ABSTRACT
...
...
Filters/Sources/vtkHyperOctreeFractalSource.cxx
View file @
24ebec5b
...
...
@@ -32,6 +32,8 @@ vtkStandardNewMacro(vtkHyperOctreeFractalSource);
//----------------------------------------------------------------------------
vtkHyperOctreeFractalSource
::
vtkHyperOctreeFractalSource
()
{
VTK_LEGACY_BODY
(
vtkHyperOctreeFractalSource
,
"VTK 8.2"
);
this
->
SetNumberOfInputPorts
(
0
);
this
->
SizeCX
[
0
]
=
2.5
;
...
...
Filters/Sources/vtkHyperOctreeFractalSource.h
View file @
24ebec5b
...
...
@@ -30,6 +30,7 @@
class
vtkImplicitFunction
;
#if !defined(VTK_LEGACY_REMOVE)
class
VTKFILTERSSOURCES_EXPORT
vtkHyperOctreeFractalSource
:
public
vtkHyperOctreeAlgorithm
{
public:
...
...
@@ -165,5 +166,6 @@ private:
vtkHyperOctreeFractalSource
(
const
vtkHyperOctreeFractalSource
&
)
=
delete
;
void
operator
=
(
const
vtkHyperOctreeFractalSource
&
)
=
delete
;
};
#endif //VTK_LEGACY_REMOVE
#endif
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