]> Creatis software - bbtk.git/blobdiff - packages/vtk/src/bbvtkPointsXYZtoVTKPoints.cxx
#3008 BBTK Feature New Normal - Active option in box vtk::IsoSurfaceExtractor
[bbtk.git] / packages / vtk / src / bbvtkPointsXYZtoVTKPoints.cxx
index f2a84952f828fbed74dcb9211926abc9793604ff..154d8fe511df470530c4afe0e552d6e4e944eae2 100644 (file)
@@ -13,13 +13,9 @@ BBTK_BLACK_BOX_IMPLEMENTATION(PointsXYZtoVTKPoints,bbtk::AtomicBlackBox);
 //===== 
 void PointsXYZtoVTKPoints::Process()
 {
-
-//std::cout << "RaC PointsXYZtoVTKPoints::Process START"<< std::endl;
        std::vector<int> lstPointsX = bbGetInputLstPointsX();
        std::vector<int> lstPointsY = bbGetInputLstPointsY();
        std::vector<int> lstPointsZ = bbGetInputLstPointsZ();
-
-
        if(_points==NULL)
        {
                _points=vtkPoints::New();
@@ -30,7 +26,6 @@ void PointsXYZtoVTKPoints::Process()
        point[0]=0;
        point[1]=0;
        point[2]=0;
-
        for (int i =0; i < lstPointsX.size(); ++i)
        {
                point[0]=lstPointsX[i];
@@ -39,9 +34,6 @@ void PointsXYZtoVTKPoints::Process()
                _points->InsertPoint(i,point);
        }
        bbSetOutputPoints(_points);
-
-std::cout << "RaC PointsXYZtoVTKPoints::Process END"<< std::endl;
-  
 }
 //===== 
 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)