VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Rendering
vtkPOVExporter.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkPOVExporter.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
=========================================================================*/
15
/*=========================================================================
16
17
Program: VTK/ParaView Los Alamos National Laboratory Modules (PVLANL)
18
Module: vtkPOVExporter.h
19
20
Copyright (c) 2007, Los Alamos National Security, LLC
21
22
All rights reserved.
23
24
Copyright 2007. Los Alamos National Security, LLC.
25
This software was produced under U.S. Government contract DE-AC52-06NA25396
26
for Los Alamos National Laboratory (LANL), which is operated by
27
Los Alamos National Security, LLC for the U.S. Department of Energy.
28
The U.S. Government has rights to use, reproduce, and distribute this software.
29
NEITHER THE GOVERNMENT NOR LOS ALAMOS NATIONAL SECURITY, LLC MAKES ANY WARRANTY,
30
EXPRESS OR IMPLIED, OR ASSUMES ANY LIABILITY FOR THE USE OF THIS SOFTWARE.
31
If software is modified to produce derivative works, such modified software
32
should be clearly marked, so as not to confuse it with the version available
33
from LANL.
34
35
Additionally, redistribution and use in source and binary forms, with or
36
without modification, are permitted provided that the following conditions
37
are met:
38
- Redistributions of source code must retain the above copyright notice,
39
this list of conditions and the following disclaimer.
40
- Redistributions in binary form must reproduce the above copyright notice,
41
this list of conditions and the following disclaimer in the documentation
42
and/or other materials provided with the distribution.
43
- Neither the name of Los Alamos National Security, LLC, Los Alamos National
44
Laboratory, LANL, the U.S. Government, nor the names of its contributors
45
may be used to endorse or promote products derived from this software
46
without specific prior written permission.
47
48
THIS SOFTWARE IS PROVIDED BY LOS ALAMOS NATIONAL SECURITY, LLC AND CONTRIBUTORS
49
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
50
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51
ARE DISCLAIMED. IN NO EVENT SHALL LOS ALAMOS NATIONAL SECURITY, LLC OR
52
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
53
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
54
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
55
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
56
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
57
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
58
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
59
60
=========================================================================*/
61
78
#ifndef __vtkPOVExporter_h
79
#define __vtkPOVExporter_h
80
81
#include "
vtkExporter.h
"
82
83
class
vtkRenderer
;
84
class
vtkActor
;
85
class
vtkCamera
;
86
class
vtkLight
;
87
class
vtkPolyData
;
88
class
vtkProperty
;
89
class
vtkTexture
;
90
class
vtkPOVInternals;
91
92
class
VTK_RENDERING_EXPORT
vtkPOVExporter
:
public
vtkExporter
93
{
94
public
:
95
static
vtkPOVExporter
*
New
();
96
vtkTypeMacro(
vtkPOVExporter
,
vtkExporter
);
97
void
PrintSelf
(ostream& os,
vtkIndent
indent);
98
100
101
vtkSetStringMacro(FileName);
102
vtkGetStringMacro(FileName);
104
105
protected
:
106
vtkPOVExporter
();
107
~
vtkPOVExporter
();
108
109
void
WriteData
();
110
virtual
void
WriteHeader(
vtkRenderer
*renderer);
111
void
WriteCamera(
vtkCamera
*camera);
112
void
WriteLight(
vtkLight
*light);
113
void
WriteProperty(
vtkProperty
*property);
114
void
WritePolygons(
vtkPolyData
*polydata,
bool
scalar_visible);
115
void
WriteTriangleStrips(
vtkPolyData
*strip,
bool
scalar_visible);
116
117
virtual
void
WriteActor(
vtkActor
*actor);
118
119
char
*
FileName
;
120
FILE *
FilePtr
;
121
122
private
:
123
vtkPOVExporter
(
const
vtkPOVExporter
&);
// Not implemented.
124
void
operator=(
const
vtkPOVExporter
&);
// Not implemented.
125
126
vtkPOVInternals *Internals;
127
};
128
129
#endif
Generated on Sun Sep 9 2012 13:03:45 for VTK by
1.8.1.2