You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.6 KiB
60 lines
1.6 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkOOGLExporter.h,v $
|
|
|
|
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.
|
|
|
|
=========================================================================*/
|
|
|
|
// .NAME vtkOOGLExporter - export a scene into Geomview OOGL format.
|
|
// .SECTION Description
|
|
// vtkOOGLExporter is a concrete subclass of vtkExporter that writes
|
|
// Geomview OOGL files.
|
|
//
|
|
// .SECTION See Also
|
|
// vtkExporter
|
|
|
|
|
|
#ifndef __vtkOOGLExporter_h
|
|
#define __vtkOOGLExporter_h
|
|
|
|
#include "vtkExporter.h"
|
|
|
|
class vtkLight;
|
|
class vtkActor;
|
|
|
|
class VTK_RENDERING_EXPORT vtkOOGLExporter : public vtkExporter
|
|
{
|
|
public:
|
|
static vtkOOGLExporter *New();
|
|
vtkTypeRevisionMacro(vtkOOGLExporter,vtkExporter);
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
|
|
|
// Description:
|
|
// 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&); // Not implemented
|
|
void operator=(const vtkOOGLExporter&); // Not implemented
|
|
};
|
|
|
|
#endif
|
|
|
|
|