VTK  9.3.20240329
vtkOSPRayWindowNode.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
13 #ifndef vtkOSPRayWindowNode_h
14 #define vtkOSPRayWindowNode_h
15 
16 #include "vtkRenderingRayTracingModule.h" // For export macro
17 #include "vtkWindowNode.h"
18 
19 VTK_ABI_NAMESPACE_BEGIN
20 class VTKRENDERINGRAYTRACING_EXPORT vtkOSPRayWindowNode : public vtkWindowNode
21 {
22 public:
25  void PrintSelf(ostream& os, vtkIndent indent) override;
26 
30  void Render(bool prepass) override;
31 
32 protected:
35 
36 private:
38  void operator=(const vtkOSPRayWindowNode&) = delete;
39 };
40 
41 VTK_ABI_NAMESPACE_END
42 #endif
a simple class to control print indentation
Definition: vtkIndent.h:108
links vtkRendererWindows to OSPRay
void Render(bool prepass) override
Make ospray calls to render me.
static vtkOSPRayWindowNode * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkOSPRayWindowNode() override
vtkViewNode specialized for vtkRenderWindows
Definition: vtkWindowNode.h:24