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
ee901dee
Commit
ee901dee
authored
Nov 11, 2011
by
Sankhesh Jhaveri
💬
Browse files
FIX: vtkPolyDataSource is yanked. Removed access methods
Change-Id: I625c54900735cd41cec7166845b62e572568ee64
parent
9433a204
Changes
3
Hide whitespace changes
Inline
Side-by-side
Rendering/CMakeLists.txt
View file @
ee901dee
...
...
@@ -328,9 +328,6 @@ SET_SOURCE_FILES_PROPERTIES(
vtkLightingHelper
vtkRenderState
vtkOpenGLState
vtkShader2
vtkShader2Collection
vtkShaderProgram2
vtkTextureUnitManager
vtkTestingInteractor
vtkTestingObjectFactory
...
...
Widgets/vtkPolyDataSourceWidget.cxx
View file @
ee901dee
...
...
@@ -56,12 +56,6 @@ void vtkPolyDataSourceWidget::PlaceWidget()
this
->
PlaceWidget
(
bounds
);
}
vtkPolyDataSource
*
vtkPolyDataSourceWidget
::
GetPolyDataSource
()
{
vtkErrorMacro
(
"Use GetPolyDataAlgorithm instead."
);
return
NULL
;
}
void
vtkPolyDataSourceWidget
::
PrintSelf
(
ostream
&
os
,
vtkIndent
indent
)
{
this
->
Superclass
::
PrintSelf
(
os
,
indent
);
...
...
Widgets/vtkPolyDataSourceWidget.h
View file @
ee901dee
...
...
@@ -37,7 +37,6 @@
#include "vtk3DWidget.h"
class
vtkPolyDataAlgorithm
;
class
vtkPolyDataSource
;
class
VTK_WIDGETS_EXPORT
vtkPolyDataSourceWidget
:
public
vtk3DWidget
{
...
...
@@ -64,12 +63,11 @@ class VTK_WIDGETS_EXPORT vtkPolyDataSourceWidget : public vtk3DWidget
{
this
->
Superclass
::
PlaceWidget
(
xmin
,
xmax
,
ymin
,
ymax
,
zmin
,
zmax
);}
// Description:
// Returns underlying vtkPolyData
Source
that determines geometry. This
// Returns underlying vtkPolyData
Algorithm
that determines geometry. This
// can be modified after which PlaceWidget() or UpdatePlacement() can be
// called. UpdatePlacement() will always update the planewidget according
// to the geometry of the underlying PolyData
Source
. PlaceWidget() will
// to the geometry of the underlying PolyData
Algorithm
. PlaceWidget() will
// only make use of this geometry if there is no Input and no Prop3D set.
virtual
vtkPolyDataSource
*
GetPolyDataSource
();
virtual
vtkPolyDataAlgorithm
*
GetPolyDataAlgorithm
()
=
0
;
// Description:
...
...
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