00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkTreeCompositer.h,v $ 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00015 00016 // This software and ancillary information known as vtk_ext (and 00017 // herein called "SOFTWARE") is made available under the terms 00018 // described below. The SOFTWARE has been approved for release with 00019 // associated LA_CC Number 99-44, granted by Los Alamos National 00020 // Laboratory in July 1999. 00021 // 00022 // Unless otherwise indicated, this SOFTWARE has been authored by an 00023 // employee or employees of the University of California, operator of 00024 // the Los Alamos National Laboratory under Contract No. W-7405-ENG-36 00025 // with the United States Department of Energy. 00026 // 00027 // The United States Government has rights to use, reproduce, and 00028 // distribute this SOFTWARE. The public may copy, distribute, prepare 00029 // derivative works and publicly display this SOFTWARE without charge, 00030 // provided that this Notice and any statement of authorship are 00031 // reproduced on all copies. 00032 // 00033 // Neither the U. S. Government, the University of California, nor the 00034 // Advanced Computing Laboratory makes any warranty, either express or 00035 // implied, nor assumes any liability or responsibility for the use of 00036 // this SOFTWARE. 00037 // 00038 // If SOFTWARE is modified to produce derivative works, such modified 00039 // SOFTWARE should be clearly marked, so as not to confuse it with the 00040 // version available from Los Alamos National Laboratory. 00041 00042 00056 #ifndef __vtkTreeCompositer_h 00057 #define __vtkTreeCompositer_h 00058 00059 #include "vtkCompositer.h" 00060 00061 00062 class VTK_PARALLEL_EXPORT vtkTreeCompositer : public vtkCompositer 00063 { 00064 public: 00065 static vtkTreeCompositer *New(); 00066 vtkTypeRevisionMacro(vtkTreeCompositer,vtkCompositer); 00067 void PrintSelf(ostream& os, vtkIndent indent); 00068 00069 virtual void CompositeBuffer(vtkDataArray *pBuf, vtkFloatArray *zBuf, 00070 vtkDataArray *pTmp, vtkFloatArray *zTmp); 00071 00072 protected: 00073 vtkTreeCompositer(); 00074 ~vtkTreeCompositer(); 00075 00076 private: 00077 vtkTreeCompositer(const vtkTreeCompositer&); // Not implemented 00078 void operator=(const vtkTreeCompositer&); // Not implemented 00079 }; 00080 00081 #endif