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.

66 lines
2.0 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkVtkJSViewNodeFactory.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 vtkVtkJSViewNodeFactory
* @brief Constructs view nodes for traversing a scene for vtk-js
*
* vtkVtkJSViewNodeFactory constructs view nodes that are subsequently executed
* as a scene graph is traversed. The generated view nodes inherit from
* vtkViewNode and augment the synchronize and render traversal steps to
* construct Json representations of the scene elements and to update the
* pipelines associated with the datasets to render, respectively.
*
*
* @sa
* vtkVtkJSSceneGraphSerializer
*/
#ifndef vtkVtkJSViewNodeFactory_h
#define vtkVtkJSViewNodeFactory_h
#include "vtkRenderingVtkJSModule.h" // For export macro
#include "vtkViewNodeFactory.h"
class vtkVtkJSSceneGraphSerializer;
class VTKRENDERINGVTKJS_EXPORT vtkVtkJSViewNodeFactory : public vtkViewNodeFactory
{
public:
static vtkVtkJSViewNodeFactory* New();
vtkTypeMacro(vtkVtkJSViewNodeFactory, vtkViewNodeFactory);
void PrintSelf(ostream& os, vtkIndent indent) override;
//@{
/**
* Specify the Serializer object
*/
void SetSerializer(vtkVtkJSSceneGraphSerializer*);
vtkGetObjectMacro(Serializer, vtkVtkJSSceneGraphSerializer);
//@}
protected:
vtkVtkJSViewNodeFactory();
~vtkVtkJSViewNodeFactory() override;
vtkVtkJSSceneGraphSerializer* Serializer;
private:
vtkVtkJSViewNodeFactory(const vtkVtkJSViewNodeFactory&) = delete;
void operator=(const vtkVtkJSViewNodeFactory&) = delete;
};
#endif