00001 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE 00002 // 00003 // This library is free software; you can redistribute it and/or 00004 // modify it under the terms of the GNU Lesser General Public 00005 // License as published by the Free Software Foundation; either 00006 // version 2.1 of the License. 00007 // 00008 // This library is distributed in the hope that it will be useful, 00009 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 // Lesser General Public License for more details. 00012 // 00013 // You should have received a copy of the GNU Lesser General Public 00014 // License along with this library; if not, write to the Free Software 00015 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00016 // 00017 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com 00018 // 00019 00020 // File: VISU_CutLinesBasePL.hxx 00021 // Author: Oleg UVAROV 00022 // Module : VISU 00023 // 00024 #ifndef VISU_CutLinesBasePL_HeaderFile 00025 #define VISU_CutLinesBasePL_HeaderFile 00026 00027 #include "VISUPipeline.hxx" 00028 #include "VISU_CutPlanesPL.hxx" 00029 00030 //---------------------------------------------------------------------------- 00031 class VISU_PIPELINE_EXPORT VISU_CutLinesBasePL : public VISU_CutPlanesPL 00032 { 00033 public: 00034 vtkTypeMacro(VISU_CutLinesBasePL,VISU_CutPlanesPL); 00035 00036 static 00037 VISU_CutLinesBasePL* 00038 New(); 00039 00040 public: 00042 const vtkFloatingPointType* 00043 GetRealDirLn() 00044 { 00045 return myRealDirLn; 00046 } 00047 00052 const vtkFloatingPointType* 00053 GetDirLn() 00054 { 00055 return myDirLn; 00056 } 00057 00063 const vtkFloatingPointType* 00064 GetBasePnt() 00065 { 00066 return myBasePnt; 00067 } 00068 00076 const vtkFloatingPointType* 00077 GetBoundPrjLn() 00078 { 00079 return myBoundPrjLn; 00080 } 00081 00082 protected: 00083 VISU_CutLinesBasePL(); 00084 00085 vtkFloatingPointType myDirLn[3]; 00086 vtkFloatingPointType myRealDirLn[3]; 00087 vtkFloatingPointType myBoundPrjLn[3]; 00088 vtkFloatingPointType myBasePnt[3]; 00089 00090 private: 00091 VISU_CutLinesBasePL(const VISU_CutLinesBasePL&); // Not implemented. 00092 void operator=(const VISU_CutLinesBasePL&); // Not implemented. 00093 }; 00094 00095 00096 #endif