VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Filters
Parallel
vtkPOutlineCornerFilter.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkPOutlineCornerFilter.h
5
6
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7
All rights reserved.
8
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10
This software is distributed WITHOUT ANY WARRANTY; without even
11
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12
PURPOSE. See the above copyright notice for more information.
13
14
=========================================================================*/
24
#ifndef __vtkPOutlineCornerFilter_h
25
#define __vtkPOutlineCornerFilter_h
26
27
#include "vtkFiltersParallelModule.h"
// For export macro
28
#include "
vtkPolyDataAlgorithm.h
"
29
class
vtkOutlineCornerSource
;
30
class
vtkMultiProcessController
;
31
32
class
VTKFILTERSPARALLEL_EXPORT
vtkPOutlineCornerFilter
:
public
vtkPolyDataAlgorithm
33
{
34
public
:
35
vtkTypeMacro(
vtkPOutlineCornerFilter
,
vtkPolyDataAlgorithm
);
36
void
PrintSelf
(ostream& os,
vtkIndent
indent);
37
39
static
vtkPOutlineCornerFilter
*
New
();
40
42
44
vtkSetClampMacro(CornerFactor,
double
, 0.001, 0.5);
45
vtkGetMacro(CornerFactor,
double
);
47
49
50
virtual
void
SetController(
vtkMultiProcessController
*);
51
vtkGetObjectMacro(Controller,
vtkMultiProcessController
);
53
54
protected
:
55
vtkPOutlineCornerFilter
();
56
~
vtkPOutlineCornerFilter
();
57
58
vtkMultiProcessController
*
Controller
;
59
vtkOutlineCornerSource
*
OutlineCornerSource
;
60
virtual
int
RequestData
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
61
virtual
int
RequestInformation
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
62
virtual
int
FillInputPortInformation
(
int
port
,
vtkInformation
*
info
);
63
64
double
CornerFactor
;
65
private
:
66
vtkPOutlineCornerFilter
(
const
vtkPOutlineCornerFilter
&);
// Not implemented.
67
void
operator=(
const
vtkPOutlineCornerFilter
&);
// Not implemented.
68
};
69
70
#endif
Generated on Thu May 24 2012 22:22:22 for VTK by
1.8.1