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.
81 lines
2.5 KiB
C
81 lines
2.5 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkXMLStructuredGridWriter.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 vtkXMLStructuredGridWriter
|
||
|
* @brief Write VTK XML StructuredGrid files.
|
||
|
*
|
||
|
* vtkXMLStructuredGridWriter writes the VTK XML StructuredGrid file
|
||
|
* format. One structured grid input can be written into one file in
|
||
|
* any number of streamed pieces. The standard extension for this
|
||
|
* writer's file format is "vts". This writer is also used to write a
|
||
|
* single piece of the parallel file format.
|
||
|
*
|
||
|
* @sa
|
||
|
* vtkXMLPStructuredGridWriter
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkXMLStructuredGridWriter_h
|
||
|
#define vtkXMLStructuredGridWriter_h
|
||
|
|
||
|
#include "vtkIOXMLModule.h" // For export macro
|
||
|
#include "vtkXMLStructuredDataWriter.h"
|
||
|
|
||
|
class vtkStructuredGrid;
|
||
|
|
||
|
class VTKIOXML_EXPORT vtkXMLStructuredGridWriter : public vtkXMLStructuredDataWriter
|
||
|
{
|
||
|
public:
|
||
|
static vtkXMLStructuredGridWriter* New();
|
||
|
vtkTypeMacro(vtkXMLStructuredGridWriter, vtkXMLStructuredDataWriter);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
||
|
/**
|
||
|
* Get/Set the writer's input.
|
||
|
*/
|
||
|
vtkStructuredGrid* GetInput();
|
||
|
|
||
|
/**
|
||
|
* Get the default file extension for files written by this writer.
|
||
|
*/
|
||
|
const char* GetDefaultFileExtension() override;
|
||
|
|
||
|
protected:
|
||
|
vtkXMLStructuredGridWriter();
|
||
|
~vtkXMLStructuredGridWriter() override;
|
||
|
|
||
|
// see algorithm for more info
|
||
|
int FillInputPortInformation(int port, vtkInformation* info) override;
|
||
|
|
||
|
void WriteAppendedPiece(int index, vtkIndent indent) override;
|
||
|
void WriteAppendedPieceData(int index) override;
|
||
|
void WriteInlinePiece(vtkIndent indent) override;
|
||
|
void GetInputExtent(int* extent) override;
|
||
|
const char* GetDataSetName() override;
|
||
|
void CalculateSuperclassFraction(float* fractions);
|
||
|
|
||
|
// The position of the appended data offset attribute for the points
|
||
|
// array.
|
||
|
OffsetsManagerGroup* PointsOM; // one per piece
|
||
|
|
||
|
void AllocatePositionArrays() override;
|
||
|
void DeletePositionArrays() override;
|
||
|
|
||
|
private:
|
||
|
vtkXMLStructuredGridWriter(const vtkXMLStructuredGridWriter&) = delete;
|
||
|
void operator=(const vtkXMLStructuredGridWriter&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif
|