/usr/include/vtk-5.10/vtkMNIObjectWriter.h is in libvtk5-dev 5.10.1+dfsg-2.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkMNIObjectWriter.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*=========================================================================
Copyright (c) 2006 Atamai, Inc.
Use, modification and redistribution of the software, in source or
binary forms, are permitted provided that the following terms and
conditions are met:
1) Redistribution of the source code, in verbatim or modified
form, must retain the above copyright notice, this license,
the following disclaimer, and any notices that refer to this
license and/or the following disclaimer.
2) Redistribution in binary form must include the above copyright
notice, a copy of this license and the following disclaimer
in the documentation or with other materials provided with the
distribution.
3) Modified copies of the source code must be clearly marked as such,
and must not be misrepresented as verbatim copies of the source code.
THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS"
WITHOUT EXPRESSED OR IMPLIED WARRANTY INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. IN NO EVENT SHALL ANY COPYRIGHT HOLDER OR OTHER PARTY WHO MAY
MODIFY AND/OR REDISTRIBUTE THE SOFTWARE UNDER THE TERMS OF THIS LICENSE
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, LOSS OF DATA OR DATA BECOMING INACCURATE
OR LOSS OF PROFIT OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF
THE USE OR INABILITY TO USE THE SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
=========================================================================*/
// .NAME vtkMNIObjectWriter - A writer for MNI surface mesh files.
// .SECTION Description
// The MNI .obj file format is used to store geometrical data. This
// file format was developed at the McConnell Brain Imaging Centre at
// the Montreal Neurological Institute and is used by their software.
// Only polygon and line files are supported by this writer. For these
// formats, all data elements are written including normals, colors,
// and surface properties. ASCII and binary file types are supported.
// .SECTION See Also
// vtkMINCImageReader vtkMNIObjectReader vtkMNITransformReader
// .SECTION Thanks
// Thanks to David Gobbi for writing this class and Atamai Inc. for
// contributing it to VTK.
#ifndef __vtkMNIObjectWriter_h
#define __vtkMNIObjectWriter_h
#include "vtkPolyDataWriter.h"
class vtkMapper;
class vtkProperty;
class vtkLookupTable;
class vtkPolyData;
class vtkFloatArray;
class vtkIntArray;
class vtkPoints;
class VTK_HYBRID_EXPORT vtkMNIObjectWriter : public vtkPolyDataWriter
{
public:
vtkTypeMacro(vtkMNIObjectWriter,vtkPolyDataWriter);
static vtkMNIObjectWriter *New();
virtual void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Get the entension for this file format.
virtual const char* GetFileExtensions() {
return ".obj"; }
// Description:
// Get the name of this file format.
virtual const char* GetDescriptiveName() {
return "MNI object"; }
// Description:
// Set the property associated with the object. Optional.
// This is useful for exporting an actor.
virtual void SetProperty(vtkProperty *property);
virtual vtkProperty *GetProperty() { return this->Property; };
// Description:
// Set the mapper associated with the object. Optional.
// This is useful for exporting an actor with the same colors
// that are used to display the actor within VTK.
virtual void SetMapper(vtkMapper *mapper);
virtual vtkMapper *GetMapper() { return this->Mapper; };
// Description:
// Set the lookup table associated with the object. This will be
// used to convert scalar values to colors, if a mapper is not set.
virtual void SetLookupTable(vtkLookupTable *table);
virtual vtkLookupTable *GetLookupTable() { return this->LookupTable; };
protected:
vtkMNIObjectWriter();
~vtkMNIObjectWriter();
vtkProperty *Property;
vtkMapper *Mapper;
vtkLookupTable *LookupTable;
ostream *OutputStream;
int WriteObjectType(int objType);
int WriteValues(vtkDataArray *array);
int WriteIdValue(vtkIdType value);
int WriteNewline();
int WriteProperty(vtkProperty *property);
int WriteLineThickness(vtkProperty *property);
int WritePoints(vtkPolyData *polyData);
int WriteNormals(vtkPolyData *polyData);
int WriteColors(vtkProperty *property, vtkMapper *mapper, vtkPolyData *data);
int WriteCells(vtkPolyData *data, int cellType);
int WritePolygonObject(vtkPolyData *output);
int WriteLineObject(vtkPolyData *output);
void WriteData();
private:
vtkMNIObjectWriter(const vtkMNIObjectWriter&); // Not implemented
void operator=(const vtkMNIObjectWriter&); // Not implemented
};
#endif
|