Man Page for vtkSTLWriter
Table of Contents

NAME

vtkSTLWriter - write stereo lithography files

SYNOPSIS


#include "/opt/vtk-c++/graphics/vtkSTLWriter.h"

class VTK_EXPORT vtkSTLWriter : public vtkPolyDataWriter

vtkSTLWriter();
~vtkSTLWriter();
static vtkSTLWriter *New() {return new vtkSTLWriter;};
const char *GetClassName() {return "vtkSTLWriter";};
void PrintSelf(ostream& os, vtkIndent indent);
void SetFileName(char *);
char *GetFileName();
void SetFileType(int);
int GetFileType();

DESCRIPTION

vtkSTLWriter writes stereo lithography (.stl) files in either ASCII or binary form.

CAVEATS

Binary files written on one system may not be readable on other systems. vtkSTLWriter uses VAX or PC byte ordering and swaps bytes on other systems.

SUMMARY

void SetFileName(char *)
Specify the name of the file to write.

void SetFileType(int)
Specify type of file to write (ascii or binary).


Table of Contents