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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkSingleVTPExporter.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 vtkSingleVTPExporter
* @brief export a scene into a single vtp file and png texture
*
* vtkSingleVTPExporter is a concrete subclass of vtkExporter that writes
* a .vtp file and a .png file containing the polydata and texture
* elements of the scene.
*
* If ActiveRenderer is specified then it exports contents of
* ActiveRenderer. Otherwise it exports contents of all renderers.
*
* @sa
* vtkExporter
*/
#ifndef vtkSingleVTPExporter_h
#define vtkSingleVTPExporter_h
#include "vtkExporter.h"
#include "vtkIOExportModule.h" // For export macro
#include <vector> // for method args
VTK_ABI_NAMESPACE_BEGIN
class vtkActor;
class vtkPolyData;
class vtkTexture;
class VTKIOEXPORT_EXPORT vtkSingleVTPExporter : public vtkExporter
{
public:
static vtkSingleVTPExporter* New();
vtkTypeMacro(vtkSingleVTPExporter, vtkExporter);
void PrintSelf(ostream& os, vtkIndent indent) override;
///@{
/**
* Specify the prefix of the files to write out. The resulting filenames
* will have .vtp and .png appended to them.
*/
vtkSetFilePathMacro(FilePrefix);
vtkGetFilePathMacro(FilePrefix);
///@}
// computes the file prefix from a filename by removing
// the .vtp extension if present. Useful for APIs that
// are filename centric.
void SetFileName(VTK_FILEPATH const char*);
protected:
vtkSingleVTPExporter();
~vtkSingleVTPExporter() override;
void WriteData() override;
class actorData
{
public:
vtkActor* Actor = nullptr;
vtkTexture* Texture = nullptr;
int ImagePosition[2];
double URange[2];
double VRange[2];
bool HaveRepeatingTexture = false;
};
int TextureSize[2];
void WriteTexture(std::vector<actorData>& actors);
void WriteVTP(std::vector<actorData>& actors);
char* FilePrefix;
// handle repeating textures by subdividing triangles
// so that they do not span mode than 0.0-1.5 of texture
// range.
vtkPolyData* FixTextureCoordinates(vtkPolyData*);
// recursive method that handles one triangle
void ProcessTriangle(const vtkIdType* pts, vtkPolyData* out);
private:
vtkSingleVTPExporter(const vtkSingleVTPExporter&) = delete;
void operator=(const vtkSingleVTPExporter&) = delete;
};
VTK_ABI_NAMESPACE_END
#endif
|