Salome HOME
Porting to VTK 6.
[modules/visu.git] / src / PIPELINE / VISU_DataSetMapperHolder.cxx
index 88dccf477b1c53a40d1e0ab874cf449834ccf4e0..cc2a7613a977e0def542a5d111d2065d7d4013b5 100644 (file)
@@ -1,24 +1,25 @@
-//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
-//  This library is free software; you can redistribute it and/or
-//  modify it under the terms of the GNU Lesser General Public
-//  License as published by the Free Software Foundation; either
-//  version 2.1 of the License.
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
 //
-//  This library is distributed in the hope that it will be useful,
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-//  Lesser General Public License for more details.
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 //  VISU OBJECT : interactive object for VISU entities implementation
 // File:    VISU_DataSetMapperHolder.cxx
 // Author:  Alexey PETROV
@@ -87,15 +88,15 @@ VISU_DataSetMapperHolder
 void 
 VISU_DataSetMapperHolder
 ::ShallowCopy(VISU_MapperHolder *theMapperHolder,
-             bool theIsCopyInput)
+              bool theIsCopyInput)
 {
   if(VISU_DataSetMapperHolder* aMapperHolder = dynamic_cast<VISU_DataSetMapperHolder*>(theMapperHolder)){
     if(theIsCopyInput)
       SetUnstructuredGridIDMapper(aMapperHolder->GetUnstructuredGridIDMapper());
     
     VISU::CopyDataSetMapper(GetDataSetMapper(), 
-                           aMapperHolder->GetDataSetMapper(), 
-                           theIsCopyInput);
+                            aMapperHolder->GetDataSetMapper(), 
+                            theIsCopyInput);
     myExtractGeometry->SetImplicitFunction(aMapperHolder->GetImplicitFunction());
   }
 }
@@ -106,7 +107,7 @@ void
 VISU_DataSetMapperHolder
 ::SetElnoDisassembleState( bool theIsShrunk )
 {
-  vtkFloatingPointType aShrinkFactor = std::abs( myElnoDisassembleFilter->GetShrinkFactor() );
+  double aShrinkFactor = std::abs( myElnoDisassembleFilter->GetShrinkFactor() );
   if ( theIsShrunk )
     myElnoDisassembleFilter->SetShrinkFactor( aShrinkFactor );
   else
@@ -134,8 +135,8 @@ void
 VISU_DataSetMapperHolder
 ::SetUnstructuredGridIDMapper(const VISU::PUnstructuredGridIDMapper& theIDMapper)
 {
-  myElnoDisassembleFilter->SetInput( theIDMapper->GetUnstructuredGridOutput() );
-  myExtractGeometry->SetInput( myElnoDisassembleFilter->GetOutput() );
+  myElnoDisassembleFilter->SetInputConnection( theIDMapper->GetOutputPort() );
+  myExtractGeometry->SetInputConnection( myElnoDisassembleFilter->GetOutputPort() );
   myUnstructuredGridIDMapper = theIDMapper;
   SetIDMapper( theIDMapper );
 }
@@ -172,6 +173,14 @@ VISU_DataSetMapperHolder
   return myExtractGeometry->GetOutput();
 }
 
+//----------------------------------------------------------------------------
+vtkAlgorithmOutput* 
+VISU_DataSetMapperHolder
+::GetClippedInputPort()
+{
+  return myExtractGeometry->GetOutputPort();
+}
+
 
 //----------------------------------------------------------------------------
 void
@@ -232,7 +241,7 @@ VISU_DataSetMapperHolder
 }
 
 //----------------------------------------------------------------------------
-vtkFloatingPointType* 
+double* 
 VISU_DataSetMapperHolder
 ::GetNodeCoord(vtkIdType theObjID)
 {
@@ -339,7 +348,7 @@ VISU_DataSetMapperHolder
       vtkImplicitFunction* aFun = NULL;
       aFunction->InitTraversal();
       for(vtkIdType anID = 0; anID <= theID; anID++)
-       aFun = aFunction->GetNextItem();
+        aFun = aFunction->GetNextItem();
       aPlane = dynamic_cast<vtkPlane*>(aFun);
     }
   }