]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Just code layouting improvement
authorapo <apo@opencascade.com>
Fri, 23 May 2008 07:29:08 +0000 (07:29 +0000)
committerapo <apo@opencascade.com>
Fri, 23 May 2008 07:29:08 +0000 (07:29 +0000)
src/PIPELINE/VISU_Extractor.cxx

index e44145e30dccbdaaa385401558b0beab5ad32c2a..eb078e3a5705a8580994fca872f9880c15e4985a 100644 (file)
@@ -168,27 +168,27 @@ VISU_Extractor
              vtkInformationVector **theInputVector,
              vtkInformationVector *theOutputVector)
 {
-  vtkDataSet *anInput = VISU::GetInput(theInputVector, 0);
-  vtkDataSet *anOutput = VISU::GetOutput(theOutputVector);
+  vtkDataSet *anInput = VISU::GetInput( theInputVector, 0 );
+  vtkDataSet *anOutput = VISU::GetOutput( theOutputVector );
 
-  anOutput->CopyStructure(anInput);
+  anOutput->CopyStructure( anInput );
 
   vtkPointData *anInputPointData = anInput->GetPointData();
   vtkPointData *anOutputPointData = anOutput->GetPointData();
-  anOutputPointData->PassData(anInputPointData); 
-  if(VISU::IsDataOnPoints(anInput)){
+  anOutputPointData->PassData( anInputPointData ); 
+  if ( VISU::IsDataOnPoints( anInput ) ) {
     int aNbElems = anInput->GetNumberOfPoints();
-    if(anInputPointData->GetAttribute(vtkDataSetAttributes::VECTORS))
-      ExecuteScalars(aNbElems, myScalarMode, anInputPointData, anOutputPointData);
+    if ( anInputPointData->GetAttribute( vtkDataSetAttributes::VECTORS ) )
+      ExecuteScalars( aNbElems, myScalarMode, anInputPointData, anOutputPointData );
   }
   
   vtkCellData *anInputCellData = anInput->GetCellData();
   vtkCellData *anOutputCellData = anOutput->GetCellData();
-  anOutputCellData->PassData(anInputCellData); 
-  if(VISU::IsDataOnCells(anInput)){
+  anOutputCellData->PassData( anInputCellData ); 
+  if ( VISU::IsDataOnCells( anInput ) ) {
     int aNbElems = anInput->GetNumberOfCells();
-    if(anInputCellData->GetAttribute(vtkDataSetAttributes::VECTORS))
-      ExecuteScalars(aNbElems, myScalarMode, anInputCellData, anOutputCellData);
+    if ( anInputCellData->GetAttribute( vtkDataSetAttributes::VECTORS ) )
+      ExecuteScalars( aNbElems, myScalarMode, anInputCellData, anOutputCellData );
   }
 
   return 1;