VTK  9.2.6
vtkMCubesReader.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkMCubesReader.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=========================================================================*/
65#ifndef vtkMCubesReader_h
66#define vtkMCubesReader_h
67
68#include "vtkIOGeometryModule.h" // For export macro
70
71#define VTK_FILE_BYTE_ORDER_BIG_ENDIAN 0
72#define VTK_FILE_BYTE_ORDER_LITTLE_ENDIAN 1
73
75
76class VTKIOGEOMETRY_EXPORT vtkMCubesReader : public vtkPolyDataAlgorithm
77{
78public:
80 void PrintSelf(ostream& os, vtkIndent indent) override;
81
86
88
94
96
99 vtkSetFilePathMacro(LimitsFileName);
100 vtkGetFilePathMacro(LimitsFileName);
102
104
107 vtkSetClampMacro(HeaderSize, int, 0, VTK_INT_MAX);
108 vtkGetMacro(HeaderSize, int);
110
112
118 vtkSetMacro(FlipNormals, vtkTypeBool);
119 vtkGetMacro(FlipNormals, vtkTypeBool);
120 vtkBooleanMacro(FlipNormals, vtkTypeBool);
122
124
127 vtkSetMacro(Normals, vtkTypeBool);
128 vtkGetMacro(Normals, vtkTypeBool);
129 vtkBooleanMacro(Normals, vtkTypeBool);
131
133
152
154
157 vtkSetMacro(SwapBytes, vtkTypeBool);
158 vtkGetMacro(SwapBytes, vtkTypeBool);
159 vtkBooleanMacro(SwapBytes, vtkTypeBool);
161
163
168 vtkGetObjectMacro(Locator, vtkIncrementalPointLocator);
170
175
180
181protected:
184
186
187 char* FileName;
194
195private:
196 vtkMCubesReader(const vtkMCubesReader&) = delete;
197 void operator=(const vtkMCubesReader&) = delete;
198};
199
200#endif
Abstract class in support of both point location and point insertion.
a simple class to control print indentation
Definition vtkIndent.h:49
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
read binary marching cubes file
vtkMTimeType GetMTime() override
Return the mtime also considering the locator.
vtkGetFilePathMacro(FileName)
Specify file name of marching cubes file.
void CreateDefaultLocator()
Create default locator.
vtkIncrementalPointLocator * Locator
const char * GetDataByteOrderAsString()
These methods should be used instead of the SwapBytes methods.
int GetDataByteOrder()
These methods should be used instead of the SwapBytes methods.
static vtkMCubesReader * New()
Construct object with FlipNormals turned off and Normals set to true.
void SetDataByteOrder(int)
These methods should be used instead of the SwapBytes methods.
void SetDataByteOrderToLittleEndian()
These methods should be used instead of the SwapBytes methods.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkTypeBool SwapBytes
vtkGetFilePathMacro(LimitsFileName)
Set / get the file name of the marching cubes limits file.
vtkTypeBool FlipNormals
~vtkMCubesReader() override
vtkTypeBool Normals
vtkSetFilePathMacro(LimitsFileName)
Set / get the file name of the marching cubes limits file.
void SetLocator(vtkIncrementalPointLocator *locator)
Set / get a spatial locator for merging points.
void SetDataByteOrderToBigEndian()
These methods should be used instead of the SwapBytes methods.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSetFilePathMacro(FileName)
Specify file name of marching cubes file.
Superclass for algorithms that produce only polydata as output.
int vtkTypeBool
Definition vtkABI.h:69
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:287
#define VTK_INT_MAX
Definition vtkType.h:155