00001 /*========================================================================= 00002 00003 Program: ParaView 00004 Module: $RCSfile: vtkCutPlane.h,v $ 00005 Language: C++ 00006 00007 Copyright (c) 2000-2001 Kitware Inc. 469 Clifton Corporate Parkway, 00008 Clifton Park, NY, 12065, USA. 00009 All rights reserved. 00010 00011 Redistribution and use in source and binary forms, with or without 00012 modification, are permitted provided that the following conditions are met: 00013 00014 * Redistributions of source code must retain the above copyright notice, 00015 this list of conditions and the following disclaimer. 00016 00017 * Redistributions in binary form must reproduce the above copyright notice, 00018 this list of conditions and the following disclaimer in the documentation 00019 and/or other materials provided with the distribution. 00020 00021 * Neither the name of Kitware nor the names of any contributors may be used 00022 to endorse or promote products derived from this software without specific 00023 prior written permission. 00024 00025 * Modified source versions must be plainly marked as such, and must not be 00026 misrepresented as being the original software. 00027 00028 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' 00029 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00030 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00031 ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR 00032 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00033 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 00034 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00035 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 00036 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 00037 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00038 00039 =========================================================================*/ 00050 #ifndef __vtkCutPlane_h 00051 #define __vtkCutPlane_h 00052 00053 #include "vtkCutter.h" 00054 #include "vtkPlane.h" 00055 00056 00057 class VTK_PARALLEL_EXPORT vtkCutPlane : public vtkCutter 00058 { 00059 public: 00060 void PrintSelf(ostream& os, vtkIndent indent); 00061 vtkTypeMacro(vtkCutPlane,vtkCutter); 00062 static vtkCutPlane *New(); 00063 00065 00066 vtkSetVector3Macro(Origin, float); 00067 vtkGetVector3Macro(Origin, float); 00068 vtkSetVector3Macro(Normal, float); 00069 vtkGetVector3Macro(Normal, float); 00071 00073 00074 vtkSetMacro(Offset, float); 00075 vtkGetMacro(Offset, float); 00077 00078 protected: 00079 vtkCutPlane(); 00080 ~vtkCutPlane(); 00081 vtkCutPlane(const vtkCutPlane&) {}; 00082 void operator=(const vtkCutPlane&) {}; 00083 00084 void Execute(); //generate output data 00085 00086 float Normal[3]; 00087 float Origin[3]; 00088 float Offset; 00089 00090 vtkPlane *PlaneFunction; 00091 00092 }; 00093 00094 #endif 00095 00096