-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathvtkOFFWriter.h
38 lines (28 loc) · 956 Bytes
/
vtkOFFWriter.h
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
/*=========================================================================
Program: Mailleur 3D multi-résolution (Creatis 2000 ~ nowadays)
Module: vtkOFFWriter.cxx
Language: C++
Date: 2003/05
Auteurs: Alexandre Gouaillard
=========================================================================*/
// .NAME vtkOFFWriter - write stereo lithography files
// .SECTION Description
// vtkOFFWriter writes OFF files (.off) files.
#ifndef __vtkOFFWriter_h
#define __vtkOFFWriter_h
#include <vtkPolyDataWriter.h>
class VTK_EXPORT vtkOFFWriter : public vtkPolyDataWriter
{
public:
static vtkOFFWriter *New();
vtkTypeMacro(vtkOFFWriter,vtkPolyDataWriter);
//virtual void PrintSelf(ostream& os, vtkIndent indent);
protected:
vtkOFFWriter() {};
~vtkOFFWriter() {};
void WriteData();
private:
vtkOFFWriter(const vtkOFFWriter&); // Not implemented.
void operator=(const vtkOFFWriter&); // Not implemented.
};
#endif