[Paraview] Log messages from a custom filter

2011-08-18 Thread Federico Milano
Hi. Is there any way to log messages into the Paraview window that opens when an error occurs and then inspect this log if something went wrong in the filter execution? I'm printing to the command line, but I would like a nicer solution. thanks a lot, Federico

[Paraview] Returning a point cloud

2011-08-18 Thread Federico Milano
Hi. I want to show a colored point cloud (vtkPointSet) returning from a custom filter. In my custom filter, I prepare the pointCloud in this way: vtkSmartPointer pointCloud = vtkSmartPointer::New(); pointCloud->SetPoints(points); pointCloud->GetPointData()->SetScalars(distances); pointClo

Re: [Paraview] Using implicit plane widget in a plugin, like in the Clip built-in filter.

2011-05-12 Thread Federico Milano
t; /path-to-paraview/Severs/ServerManager/Resources/filters.xml. > > pratik > > On Thursday 12 May 2011 11:24 PM, Federico Milano wrote: > > Hi, > > I would need to include an implicit plane widget as an input to my plugin, > and I have googled for it (or for any other widget), an

[Paraview] Using implicit plane widget in a plugin, like in the Clip built-in filter.

2011-05-12 Thread Federico Milano
Hi, I would need to include an implicit plane widget as an input to my plugin, and I have googled for it (or for any other widget), and I have found almost no info. I've been reading the paraview source code for hours, but these built in filters XMLs and code are really different from what I usual