VTK  9.1.0
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 =========================================================================*/
53 #ifndef vtkMCubesReader_h
54 #define vtkMCubesReader_h
55 
56 #include "vtkIOGeometryModule.h" // For export macro
57 #include "vtkPolyDataAlgorithm.h"
58 
59 #define VTK_FILE_BYTE_ORDER_BIG_ENDIAN 0
60 #define VTK_FILE_BYTE_ORDER_LITTLE_ENDIAN 1
61 
63 
64 class VTKIOGEOMETRY_EXPORT vtkMCubesReader : public vtkPolyDataAlgorithm
65 {
66 public:
68  void PrintSelf(ostream& os, vtkIndent indent) override;
69 
73  static vtkMCubesReader* New();
74 
76 
82 
84 
87  vtkSetFilePathMacro(LimitsFileName);
88  vtkGetFilePathMacro(LimitsFileName);
90 
92 
95  vtkSetClampMacro(HeaderSize, int, 0, VTK_INT_MAX);
96  vtkGetMacro(HeaderSize, int);
98 
100 
106  vtkSetMacro(FlipNormals, vtkTypeBool);
107  vtkGetMacro(FlipNormals, vtkTypeBool);
108  vtkBooleanMacro(FlipNormals, vtkTypeBool);
110 
112 
115  vtkSetMacro(Normals, vtkTypeBool);
116  vtkGetMacro(Normals, vtkTypeBool);
117  vtkBooleanMacro(Normals, vtkTypeBool);
119 
121 
137  void SetDataByteOrder(int);
140 
142 
145  vtkSetMacro(SwapBytes, vtkTypeBool);
146  vtkGetMacro(SwapBytes, vtkTypeBool);
147  vtkBooleanMacro(SwapBytes, vtkTypeBool);
149 
151 
156  vtkGetObjectMacro(Locator, vtkIncrementalPointLocator);
158 
163 
167  vtkMTimeType GetMTime() override;
168 
169 protected:
171  ~vtkMCubesReader() override;
172 
174 
175  char* FileName;
182 
183 private:
184  vtkMCubesReader(const vtkMCubesReader&) = delete;
185  void operator=(const vtkMCubesReader&) = delete;
186 };
187 
188 #endif
Abstract class in support of both point location and point insertion.
a simple class to control print indentation
Definition: vtkIndent.h:34
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.
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.
static vtkMCubesReader * New()
Construct object with FlipNormals turned off and Normals set to true.
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