Hi,<br>I have a vtk filter (vtkMassProperties) that calculates scalar values for surfaceArea and Volume. <br>I would like to display these values on Paraview's parameters widget after running the filter on a data set.<br><br>
the
clip and integrate attribute filters produce a similar desired displayalong with many other filters. I believe the output is automatically written when the PrintSelf method is called within the vtk class.<br><br>the filter is available in the menu, and appears to process the data set (as it requires time to execute) although no scalar output is displayed
<br><br>i have included my server manager and xml files for reference<br>any sugggentions are appreciated<br>shawn<br><br>MassProperties.xml<br>------------------------------<div>--------<br><ModuleInterfaces><br> <ServerManagerFile name="
MassProperties.pvsm"/><br> <Module name="MassProperties"
<br> root_name="MassProp"<br> replace_input="0"<br> menu_name="Mass Properties"<br> module_type="Filter"<br> long_help="MassProperties"
<br> short_help="MassProperties"><br> <Filter class="vtkMassProperties"><br> <Input name="Input"<br> class="vtkDataSet"><br> </Input>
<br> </Filter><br> <InputMenu trace_name="Input" property="Input"<br> id="im"<br> label="Input"<br> help="Set the triangulated input to analyzie."
<br> input_name="Input"/><br> <Documentation><br> SurfaceReconstruction<br> </Documentation><br> </Module><br></ModuleInterfaces><br><br><br>MassProperties.pvsm
<br>--------------------------------------------<br><ServerManagerConfiguration><br> <ProxyGroup name="filters"><br> <SourceProxy name="MassProperties"<br> class="vtkMassProperties">
<br> <InputProperty name="Input" command="SetInput"><br> <ProxyGroupDomain name="groups"><br> <Group name="sources"/>
<br> <Group name="filters"/><br> </ProxyGroupDomain><br> <DataTypeDomain name="input_type">
<br> <DataType value="vtkDataSet"/><br> </DataTypeDomain><br> </InputProperty><br> <DoubleVectorProperty name="SurfaceArea"
<br> command="GetSurfaceArea"<br> information_only="1"<br> </DoubleVectorProperty><br> <DoubleVectorProperty name="Volume"
<br> command="GetVolume"<br> information_only="1"<br> </DoubleVectorProperty><br> </SourceProxy><br> </ProxyGroup>
<br></ServerManagerConfiguration></div>