Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
VTK
VTK
Commits
f85f38c3
Commit
f85f38c3
authored
Jul 11, 1994
by
Will Schroeder
Browse files
Initial revision
parent
e517a992
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/SPt2Poly.hh
0 → 100644
View file @
f85f38c3
/*=========================================================================
Program: Visualization Library
Module: SPt2Poly.hh
Language: C++
Date: $Date$
Version: $Revision$
Description:
---------------------------------------------------------------------------
This file is part of the Visualization Library. No part of this file
or its contents may be copied, reproduced or altered in any way
without the express written consent of the authors.
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 1993, 1994
=========================================================================*/
//
// StructuredPointsToPolyDataFilter are filters that take
// StructuredPoints as input and generate PolyData data as output
//
#ifndef __vlStructuredPointsToPolyDataFilter_h
#define __vlStructuredPointsToPolyDataFilter_h
#include
"StrPtsF.hh"
#include
"PolyData.hh"
class
vlStructuredPointsToPolyDataFilter
:
public
vlPolyData
,
public
vlStructuredPointsFilter
{
public:
void
Update
();
char
*
GetClassName
()
{
return
"vlDataSetToPolyDataFilter"
;};
void
PrintSelf
(
ostream
&
os
,
vlIndent
indent
);
};
#endif
src/SPt2Poly.cc
0 → 100644
View file @
f85f38c3
/*=========================================================================
Program: Visualization Library
Module: SPt2Poly.cc
Language: C++
Date: $Date$
Version: $Revision$
Description:
---------------------------------------------------------------------------
This file is part of the Visualization Library. No part of this file
or its contents may be copied, reproduced or altered in any way
without the express written consent of the authors.
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 1993, 1994
=========================================================================*/
#include
"SPt2Poly.hh"
void
vlStructuredPointsToPolyDataFilter
::
Update
()
{
vlStructuredPointsFilter
::
Update
();
}
void
vlStructuredPointsToPolyDataFilter
::
PrintSelf
(
ostream
&
os
,
vlIndent
indent
)
{
if
(
this
->
ShouldIPrint
(
vlStructuredPointsToPolyDataFilter
::
GetClassName
()))
{
this
->
PrintWatchOn
();
// watch for multiple inheritance
vlPolyData
::
PrintSelf
(
os
,
indent
);
vlStructuredPointsFilter
::
PrintSelf
(
os
,
indent
);
this
->
PrintWatchOff
();
// stop worrying about it now
}
}
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