// std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
- printf("EED ApplyTransformToPoint3D::Process Start\n ");
-
if ((bbGetInputPoint().size()==3) && (bbGetInputDirectionInPoint().size()==3) )
{
double point[3] , newPoint[3];
} else {
printf("EED Warning! ApplyTransformToPoint3D::Process Incoherent sizes Point(3)=%d DirectionInPoint(3)=%d\n", bbGetInputPoint().size(),bbGetInputDirectionInPoint().size() );
}// if Point size
- printf("EED ApplyTransformToPoint3D::Process End\n ");
-
}
//=====
// bbSetOutputOut( bbGetInputIn() );
// std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
- printf("EED Plane::Process Start\n ");
vtkPlane *plane = NULL;
if ( (bbGetInputOrigin().size()==3) && (bbGetInputNormal().size()==3) )
{
plane = vtkPlane::New();
plane->SetOrigin( bbGetInputOrigin()[0],bbGetInputOrigin()[1],bbGetInputOrigin()[2] );
plane->SetNormal( bbGetInputNormal()[0], bbGetInputNormal()[1], bbGetInputNormal()[2] );
- printf("EED Plane::Process Origin = %f %f %f\n",bbGetInputOrigin()[0],bbGetInputOrigin()[1],bbGetInputOrigin()[2] );
- printf("EED Plane::Process Normal = %f %f %f\n",bbGetInputNormal()[0],bbGetInputNormal()[1],bbGetInputNormal()[2] );
}
bbSetOutputOut( plane );
- printf("EED Plane::Process End\n ");
}
//=====