//===== // 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) //===== #include "bbcreaVtkPlanes_ImplicitFunction.h" #include "bbcreaVtkPackage.h" #include namespace bbcreaVtk { BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,Planes_ImplicitFunction) BBTK_BLACK_BOX_IMPLEMENTATION(Planes_ImplicitFunction,bbtk::AtomicBlackBox); //===== // 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 Planes_ImplicitFunction::Process() { // THE MAIN PROCESSING METHOD BODY // Here we simply set the input 'In' value to the output 'Out' // And print out the output value // INPUT/OUTPUT ACCESSORS ARE OF THE FORM : // void bbSet{Input|Output}NAME(const TYPE&) // const TYPE& bbGet{Input|Output}NAME() const // Where : // * NAME is the name of the input/output // (the one provided in the attribute 'name' of the tag 'input') // * TYPE is the C++ type of the input/output // (the one provided in the attribute 'type' of the tag 'input') // bbSetOutputOut( bbGetInputType() ); // std::cout << "Output value = " < lstPoints; std::vector lstNormals; size = bbGetInputPlanes()->GetNumberOfPlanes(); if (bbGetInputType()==1) { std::vector points = bbGetInputPointsIn(); std::vector normals = bbGetInputNormalsIn(); printf("EED Planes_ImplicitFunction::Process size %d size %d \n",points.size() , normals.size() ); if ((points.size() % 3==0) && (normals.size() % 3==0)) { for (i=0;iGetPlane(i); tmpDouble[0] = points[i*3+0] ; tmpDouble[1] = points[i*3+1] ; tmpDouble[2] = points[i*3+2] ; p->SetOrigin(tmpDouble); tmpDouble[0] = normals[i*3+0] ; tmpDouble[1] = normals[i*3+1] ; tmpDouble[2] = normals[i*3+2] ; p->SetNormal(tmpDouble); p->Modified(); printf("EED Planes_ImplicitFunction::Process normals %f %f %f \n", tmpDouble[0], tmpDouble[1], tmpDouble[2]); } // for i } } // Type ==1 if (bbGetInputType()==2) { for (i=0;iGetPlane(i); lstPoints.push_back( p->GetOrigin()[0] ); lstPoints.push_back( p->GetOrigin()[1] ); lstPoints.push_back( p->GetOrigin()[2] ); lstNormals.push_back( p->GetNormal()[0] ); lstNormals.push_back( p->GetNormal()[1] ); lstNormals.push_back( p->GetNormal()[2] ); } // for i bbSetOutputPointsOut(lstPoints); bbSetOutputNormalsOut(lstNormals); } // Type ==2 }// Planes printf("EED Planes_ImplicitFunction::Process End \n"); } //===== // 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 Planes_ImplicitFunction::bbUserSetDefaultValues() { // SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX // Here we initialize the input 'In' to 0 bbSetInputType(0); bbSetInputPlanes(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 Planes_ImplicitFunction::bbUserInitializeProcessing() { // THE INITIALIZATION METHOD BODY : // Here does nothing // but this is where you should allocate the internal/output pointers // 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 Planes_ImplicitFunction::bbUserFinalizeProcessing() { // THE FINALIZATION METHOD BODY : // Here does nothing // but this is where you should desallocate the internal/output pointers // if any } } // EO namespace bbcreaVtk