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=========================================================================*/
53#ifndef vtkMCubesReader_h
54#define vtkMCubesReader_h
55
56#include "vtkIOGeometryModule.h" // For export macro
58
59#define VTK_FILE_BYTE_ORDER_BIG_ENDIAN 0
60#define VTK_FILE_BYTE_ORDER_LITTLE_ENDIAN 1
61
63
64class VTKIOGEOMETRY_EXPORT vtkMCubesReader : public vtkPolyDataAlgorithm
65{
66public:
68 void PrintSelf(ostream& os, vtkIndent indent) override;
69
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
140
142
145 vtkSetMacro(SwapBytes, vtkTypeBool);
146 vtkGetMacro(SwapBytes, vtkTypeBool);
147 vtkBooleanMacro(SwapBytes, vtkTypeBool);
149
151
156 vtkGetObjectMacro(Locator, vtkIncrementalPointLocator);
158
163
168
169protected:
172
174
175 char* FileName;
182
183private:
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.
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