FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
VTKMeshFileExporter.hpp
Go to the documentation of this file.
1 #ifndef VTK_MESH_FILE_EXPORTER_HPP
2 #define VTK_MESH_FILE_EXPORTER_HPP
3 
5 
6 namespace fast {
7 
8 class FAST_EXPORT VTKMeshFileExporter : public FileExporter {
10  public:
11  void setWriteNormals(bool writeNormals);
12  void setWriteColors(bool writeColors);
13  private:
15  void execute();
16 
17  bool mWriteNormals;
18  bool mWriteColors;
19 };
20 
21 }
22 
23 #endif
fast
Definition: AffineTransformation.hpp:7
fast::VTKMeshFileExporter
Definition: VTKMeshFileExporter.hpp:8
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
FileExporter.hpp
fast::FileExporter
Definition: FileExporter.hpp:10