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
a6bc0543
Commit
a6bc0543
authored
Nov 21, 2005
by
Karthik Krishnan
Browse files
BUG: Polydata is const not the pointer
parent
ac22943f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Widgets/vtkContourRepresentation.h
View file @
a6bc0543
...
...
@@ -146,7 +146,7 @@ public:
// Description:
// Get the points in this contour as a vtkPolyData.
//BTX
virtual
vtkPolyData
*
const
GetContourRepresentationAsPolyData
()
const
=
0
;
virtual
const
vtkPolyData
*
GetContourRepresentationAsPolyData
()
const
=
0
;
//ETX
// Description:
...
...
Widgets/vtkOrientedGlyphContourRepresentation.cxx
View file @
a6bc0543
...
...
@@ -40,7 +40,7 @@
#include "vtkFocalPlanePointPlacer.h"
#include "vtkBezierContourLineInterpolator.h"
vtkCxxRevisionMacro
(
vtkOrientedGlyphContourRepresentation
,
"1.
4
"
);
vtkCxxRevisionMacro
(
vtkOrientedGlyphContourRepresentation
,
"1.
5
"
);
vtkStandardNewMacro
(
vtkOrientedGlyphContourRepresentation
);
//----------------------------------------------------------------------
...
...
@@ -494,7 +494,7 @@ void vtkOrientedGlyphContourRepresentation::BuildLines()
}
//----------------------------------------------------------------------
vtkPolyData
*
const
const
vtkPolyData
*
vtkOrientedGlyphContourRepresentation
::
GetContourRepresentationAsPolyData
()
const
{
// Get the points in this contour as a vtkPolyData.
...
...
Widgets/vtkOrientedGlyphContourRepresentation.h
View file @
a6bc0543
...
...
@@ -105,7 +105,7 @@ public:
// Description:
// Get the points in this contour as a vtkPolyData.
virtual
vtkPolyData
*
const
GetContourRepresentationAsPolyData
()
const
;
virtual
const
vtkPolyData
*
GetContourRepresentationAsPolyData
()
const
;
protected:
vtkOrientedGlyphContourRepresentation
();
...
...
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