VTK  9.0.3
vtkMNIObjectWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMNIObjectWriter.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 Copyright (c) 2006 Atamai, Inc.
18 
19 Use, modification and redistribution of the software, in source or
20 binary forms, are permitted provided that the following terms and
21 conditions are met:
22 
23 1) Redistribution of the source code, in verbatim or modified
24  form, must retain the above copyright notice, this license,
25  the following disclaimer, and any notices that refer to this
26  license and/or the following disclaimer.
27 
28 2) Redistribution in binary form must include the above copyright
29  notice, a copy of this license and the following disclaimer
30  in the documentation or with other materials provided with the
31  distribution.
32 
33 3) Modified copies of the source code must be clearly marked as such,
34  and must not be misrepresented as verbatim copies of the source code.
35 
36 THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS"
37 WITHOUT EXPRESSED OR IMPLIED WARRANTY INCLUDING, BUT NOT LIMITED TO,
38 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39 PURPOSE. IN NO EVENT SHALL ANY COPYRIGHT HOLDER OR OTHER PARTY WHO MAY
40 MODIFY AND/OR REDISTRIBUTE THE SOFTWARE UNDER THE TERMS OF THIS LICENSE
41 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES
42 (INCLUDING, BUT NOT LIMITED TO, LOSS OF DATA OR DATA BECOMING INACCURATE
43 OR LOSS OF PROFIT OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF
44 THE USE OR INABILITY TO USE THE SOFTWARE, EVEN IF ADVISED OF THE
45 POSSIBILITY OF SUCH DAMAGES.
46 
47 =========================================================================*/
65 #ifndef vtkMNIObjectWriter_h
66 #define vtkMNIObjectWriter_h
67 
68 #include "vtkIOMINCModule.h" // For export macro
69 #include "vtkWriter.h"
70 
71 class vtkMapper;
72 class vtkProperty;
73 class vtkLookupTable;
74 class vtkPolyData;
75 class vtkFloatArray;
76 class vtkIntArray;
77 class vtkPoints;
78 
79 class VTKIOMINC_EXPORT vtkMNIObjectWriter : public vtkWriter
80 {
81 public:
82  vtkTypeMacro(vtkMNIObjectWriter, vtkWriter);
83 
85  void PrintSelf(ostream& os, vtkIndent indent) override;
86 
90  virtual const char* GetFileExtensions() { return ".obj"; }
91 
95  virtual const char* GetDescriptiveName() { return "MNI object"; }
96 
98 
102  virtual void SetProperty(vtkProperty* property);
103  virtual vtkProperty* GetProperty() { return this->Property; }
105 
107 
112  virtual void SetMapper(vtkMapper* mapper);
113  virtual vtkMapper* GetMapper() { return this->Mapper; }
115 
117 
121  virtual void SetLookupTable(vtkLookupTable* table);
122  virtual vtkLookupTable* GetLookupTable() { return this->LookupTable; }
124 
126 
132 
134 
137  vtkSetStringMacro(FileName);
138  vtkGetStringMacro(FileName);
140 
142 
145  vtkSetClampMacro(FileType, int, VTK_ASCII, VTK_BINARY);
146  vtkGetMacro(FileType, int);
147  void SetFileTypeToASCII() { this->SetFileType(VTK_ASCII); }
148  void SetFileTypeToBinary() { this->SetFileType(VTK_BINARY); }
150 
151 protected:
154 
158 
159  ostream* OutputStream;
160 
161  int WriteObjectType(int objType);
165 
166  int WriteProperty(vtkProperty* property);
168  int WritePoints(vtkPolyData* polyData);
169  int WriteNormals(vtkPolyData* polyData);
170  int WriteColors(vtkProperty* property, vtkMapper* mapper, vtkPolyData* data);
171  int WriteCells(vtkPolyData* data, int cellType);
172 
175 
176  void WriteData() override;
177 
178  char* FileName;
179 
180  int FileType;
181 
183 
184  ostream* OpenFile();
185  void CloseFile(ostream* fp);
186 
187 private:
188  vtkMNIObjectWriter(const vtkMNIObjectWriter&) = delete;
189  void operator=(const vtkMNIObjectWriter&) = delete;
190 };
191 
192 #endif
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:50
dynamic, self-adjusting array of float
Definition: vtkFloatArray.h:36
a simple class to control print indentation
Definition: vtkIndent.h:34
Store vtkAlgorithm input/output information.
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:40
map scalar values into colors via a lookup table
A writer for MNI surface mesh files.
vtkPolyData * GetInput(int port)
virtual void SetMapper(vtkMapper *mapper)
Set the mapper associated with the object.
int WriteLineObject(vtkPolyData *output)
int WritePolygonObject(vtkPolyData *output)
int WriteObjectType(int objType)
int WriteNormals(vtkPolyData *polyData)
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
virtual vtkMapper * GetMapper()
ostream * OpenFile()
int WriteProperty(vtkProperty *property)
virtual vtkLookupTable * GetLookupTable()
virtual void SetProperty(vtkProperty *property)
Set the property associated with the object.
virtual void SetLookupTable(vtkLookupTable *table)
Set the lookup table associated with the object.
~vtkMNIObjectWriter() override
int WritePoints(vtkPolyData *polyData)
void WriteData() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkMNIObjectWriter * New()
vtkPolyData * GetInput()
Get the input to this writer.
int WriteValues(vtkDataArray *array)
virtual const char * GetDescriptiveName()
Get the name of this file format.
int WriteIdValue(vtkIdType value)
int WriteLineThickness(vtkProperty *property)
void CloseFile(ostream *fp)
virtual vtkProperty * GetProperty()
int WriteCells(vtkPolyData *data, int cellType)
virtual const char * GetFileExtensions()
Get the extension for this file format.
int WriteColors(vtkProperty *property, vtkMapper *mapper, vtkPolyData *data)
vtkLookupTable * LookupTable
abstract class specifies interface to map data to graphics primitives
Definition: vtkMapper.h:81
represent and manipulate 3D points
Definition: vtkPoints.h:34
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
represent surface properties of a geometric object
Definition: vtkProperty.h:62
abstract class to write data to file(s)
Definition: vtkWriter.h:43
@ info
Definition: vtkX3D.h:382
@ value
Definition: vtkX3D.h:226
@ port
Definition: vtkX3D.h:453
@ data
Definition: vtkX3D.h:321
int vtkIdType
Definition: vtkType.h:338
#define VTK_BINARY
Definition: vtkWriter.h:40
#define VTK_ASCII
Definition: vtkWriter.h:39