You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWTAI-Platform/3rd/VTK7.1/include/vtkOOGLExporter.h

67 lines
1.6 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkOOGLExporter.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkOOGLExporter
* @brief export a scene into Geomview OOGL format.
*
* vtkOOGLExporter is a concrete subclass of vtkExporter that writes
* Geomview OOGL files.
*
* @sa
* vtkExporter
*/
#ifndef vtkOOGLExporter_h
#define vtkOOGLExporter_h
#include "vtkIOExportModule.h" // For export macro
#include "vtkExporter.h"
class vtkLight;
class vtkActor;
class VTKIOEXPORT_EXPORT vtkOOGLExporter : public vtkExporter
{
public:
static vtkOOGLExporter *New();
vtkTypeMacro(vtkOOGLExporter,vtkExporter);
void PrintSelf(ostream& os, vtkIndent indent);
//@{
/**
* Specify the name of the Geomview file to write.
*/
vtkSetStringMacro(FileName);
vtkGetStringMacro(FileName);
//@}
protected:
vtkOOGLExporter();
~vtkOOGLExporter();
void WriteData();
void WriteALight(vtkLight *aLight, FILE *fp);
void WriteAnActor(vtkActor *anActor, FILE *fp, int count);
char *FileName;
private:
vtkOOGLExporter(const vtkOOGLExporter&) VTK_DELETE_FUNCTION;
void operator=(const vtkOOGLExporter&) VTK_DELETE_FUNCTION;
};
#endif