// bbSetOutputOut( bbGetInputIn() );
// std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
- if ((bbGetInputInA()!=NULL) && (bbGetInputInB()!=NULL) )
+ if ( (bbGetInputActive()==true) && (bbGetInputInA()!=NULL) && (bbGetInputInB()!=NULL) )
{
vtkHausdorffDistancePointSetFilter *hausdorff = vtkHausdorffDistancePointSetFilter::New();
hausdorff->SetInputData(0, bbGetInputInA() );
bbSetOutputHausdorffDistance( hd );
bbSetOutputOutA( (vtkPolyData*) (hausdorff->GetOutput(0)) );
bbSetOutputOutB( (vtkPolyData*) (hausdorff->GetOutput(1)) );
- } // if
+ } else {
+ bbSetOutputOutA( bbGetInputInA() );
+ bbSetOutputOutB( bbGetInputInB() );
+ }// if Type InA InB
}
-//=====
+
+//=====
// 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)
//=====
void HausdorffDistancePointSetFilter::bbUserSetDefaultValues()
// SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX
// Here we initialize the input 'In' to 0
- bbSetInputInA(NULL);
- bbSetInputInB(NULL);
-
+ bbSetInputActive(true);
+ bbSetInputInA(NULL);
+ bbSetInputInB(NULL);
}
-//=====
+
+//=====
// 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)
//=====
void HausdorffDistancePointSetFilter::bbUserInitializeProcessing()
{
-
// THE INITIALIZATION METHOD BODY :
// Here does nothing
// but this is where you should allocate the internal/output pointers
-// if any
-
-
+// if any
}
-//=====
+
+//=====
// 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)
//=====
void HausdorffDistancePointSetFilter::bbUserFinalizeProcessing()
{
-
// THE FINALIZATION METHOD BODY :
// Here does nothing
// but this is where you should desallocate the internal/output pointers
// if any
-
-}
}
-// EO namespace bbcreaVtk
+
+}// EO namespace bbcreaVtk
//=====
// 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)
//=====
+ BBTK_DECLARE_INPUT(Active,bool);
BBTK_DECLARE_INPUT(InA,vtkPolyData*);
BBTK_DECLARE_INPUT(InB,vtkPolyData*);
BBTK_DESCRIPTION("(C++,Python) Output Mesh with HausdorffDistance and RelativeDistance vector information ");
BBTK_CATEGORY("empty");
+ BBTK_INPUT(HausdorffDistancePointSetFilter,Active,"(default true) True/False",bool,"");
BBTK_INPUT(HausdorffDistancePointSetFilter,InA,"Mesh A",vtkPolyData*,"");
BBTK_INPUT(HausdorffDistancePointSetFilter,InB,"Mesh B",vtkPolyData*,"");