//---------------------------------------------------
void PlotterView::Process()
{
+
+ double lim=1;
+
if (bbGetInputInX().size()==bbGetInputInY().size() )
{
pGraphicalFunction *pGF = mwxwidget->getFunction(0);
mwxwidget->deleteFunction(pGF2);
pGF2=NULL;
}
-
if ( (bbGetInputInY().size()!=0) && (pGF==NULL) )
{
// avoid 'taking address of temporary '
int i, size = inY.size();
for ( i=0 ; i<size ; i++ )
{
- if (inY[i]!=0) {ok=true;}
+ if ((inY[i]>-lim) && (inY[i]<lim)) { inY[i]=0; }
+ if ((inY[i]<-lim) || (inY[i]>lim)) {ok=true;}
}// for
if (ok==true)
{
pGF = mwxwidget->getFunctionForVectors( &inX, &inY );
mwxwidget->addFunction(pGF);
+ } else {
+ printf("EED Warnning!! PlotterView::Process function y with CEROS ????..... \n");
} // if ok
} // if bbGetInputInY
int i, size = inY2.size();
for ( i=0 ; i<size ; i++ )
{
- if (inY2[i]!=0) {ok2=true;}
+ if ((inY2[i]>-lim) && (inY2[i]<lim)) { inY2[i]=0; }
+ if ((inY2[i]<-lim) || (inY2[i]>lim)) {ok2=true;}
}// for
if (ok2==true)
{
pGF2 = mwxwidget->getFunctionForVectors( &inX2, &inY2 );
mwxwidget->addFunction(pGF2);
- } // if ok
+ } else {
+ printf("EED Warnning!! PlotterView::Process function y2 with CEROS ????..... \n");
+ } // if ok2
} // if bbGetInputInY
} else {
printf("EED Warnning... PlotterView::Process() Size of vecto X and Y is not coherent.\n");
} // InX.size InY.size
-
}
spc[1] = 0;
spc[2] = 0;
}
-
// GetVtkMPR3DDataViewer()->Configure();
-
//double nx=1,ny=0,nz=0; // JPRx
Refresh();
double x = GetVtkMPR3DDataViewer()->GetVtkMPRBaseData()->GetX();
_planeWidgetZ->GetTexture()->SetInterpolate( _vtkmpr3Ddataviewer->GetVtkMPRBaseData()->GetInterpolate() );
}
- x=x*spc[0];
- y=y*spc[1];
- z=z*spc[2];
+ SetWindowColorLevel(_vtkmpr3Ddataviewer->GetVtkMPRBaseData()->GetColorWindow() , _vtkmpr3Ddataviewer->GetVtkMPRBaseData()->GetColorLevel() );
+ x = x*spc[0];
+ y = y*spc[1];
+ z = z*spc[2];
if(_pointWidget)
{
//EED 2017-01-01 Migration VTK7
// This works in ViewerNV with nTymeView=6
// Because the others modules (5) generate also more actors with an OutLineFilter -> Actor
//showOutlineActor(false);
-
// step 1, step 2
vtkActorCollection *tmpCollection = vtkActorCollection::New();
vtkActorCollection *collectionActors = _wxvtk3Dbaseview->GetRenderer()->GetActors();
tmpCollection->AddItem ( (vtkActor*)collectionActors->GetItemAsObject(0) );
_wxvtk3Dbaseview->GetRenderer()->RemoveActor( (vtkProp*)tmpCollection->GetItemAsObject(i) );
} // for
-
// step 3
_wxvtk3Dbaseview->GetRenderer()->AddActor( _vtkmpr3Ddataviewer->GetImageActor(idPosition) );
-
// step 4
for (i=0; i<size; i++)
{
_wxvtk3Dbaseview->GetRenderer()->AddActor( (vtkProp*)tmpCollection->GetItemAsObject(i) );
} // for
tmpCollection->Delete();
-
// step 5 Refresh
_wxvtk3Dbaseview->GetRenderer()->GetRenderWindow()->Render();
-
} // if visible
_vtkmpr3Ddataviewer->SetVisiblePosition(idPosition,visible);
} // if visible
{
_planeWidget->On();
_contourPlaneActor->VisibilityOn();
-
} else {
_planeWidget->Off();
_contourPlaneActor->VisibilityOff();