<html>
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Dear Utkarsh,<br>
    <br>
    thanks a lot. I made a small mistake during cmake configuration. It
    works fine.<br>
    <br>
    Question: Where can I find the "keywords" for <br>
    <br>
    <span style=" color:#800080;">vtkSMPropertyHelper(...)<br>
    </span><br>
    <div class="moz-cite-prefix">For example you used:<br>
      <br>
       <span style=" color:#c0c0c0;"></span><span style="
        color:#008000;">vtkSMPropertyHelper(cylinder,</span><span
        style=" color:#c0c0c0;"> </span><span style=" color:#008000;">"Resolution").Set(18);</span><br>
      <br>
      <br>
      I would like to setup the glyph's settings in a similar fashion.
      For example:<br>
      <br>
      // your code<br>
      ...<span style=" color:#800080;"><br>
      </span><br>
      <span style=" color:#800080;"><span style=" color:#c0c0c0;"> </span><span
          style=" color:#008000;">//</span><span style=" color:#c0c0c0;">
        </span><span style=" color:#008000;">Create</span><span style="
          color:#c0c0c0;"> </span><span style=" color:#008000;">and</span><span
          style=" color:#c0c0c0;"> </span><span style=" color:#008000;">initialize</span><span
          style=" color:#c0c0c0;"> </span><span style=" color:#008000;">the</span><span
          style=" color:#c0c0c0;"> </span><span style=" color:#008000;">glyph</span><span
          style=" color:#c0c0c0;"> </span><span style=" color:#008000;">filter</span>
      </span>
      <pre style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#800080;">vtkSMSourceProxy</span><span style=" color:#000000;">*</span><span style=" color:#c0c0c0;"> </span><span style=" color:#000000;">glyph</span><span style=" color:#c0c0c0;"> </span><span style=" color:#000000;">=</span><span style=" color:#c0c0c0;"> </span><span style=" color:#800080;">vtkSMSourceProxy</span><span style=" color:#000000;">::</span><span style=" color:#000000;">SafeDownCast</span><span style=" color:#000000;">(</span><span style=" color:#000000;">pxm</span><span style=" color:#000000;">-></span><span style=" color:#000000;">NewProxy</span><span style=" color:#000000;">(</span><span style=" color:#008000;">"filters"</span><span style=" color:#000000;">,</span><span style=" color:#c0c0c0;"> </span><span style=" color:#008000;">"Glyph"</span><span style=" color:#000000;">));</span></pre>
      <span style=" color:#c0c0c0;"> </span><span style="
        color:#000000;">controller</span><span style=" color:#000000;">-></span><span
        style=" font-style:italic; color:#000000;">PreInitializeProxy</span><span
        style=" color:#000000;">(</span><span style=" color:#000000;">glyph</span><span
        style=" color:#000000;">);<br>
      </span><span style=" color:#800080;">vtkSMPropertyHelper</span><span
        style=" color:#000000;">(</span><span style=" color:#000000;">glyph</span><span
        style=" color:#000000;">,</span><span style=" color:#c0c0c0;"> </span><span
        style=" color:#008000;">"Input"</span><span style="
        color:#000000;">).</span><span style=" color:#000000;">Set</span><span
        style=" color:#000000;">(cylinder</span><span style="
        color:#000000;">);</span><span style=" color:#800080;"><br>
        vtkSMPropertyHelper</span><span style=" color:#000000;">(</span><span
        style=" color:#000000;">glyph</span><span style="
        color:#000000;">,</span><span style=" color:#c0c0c0;"> </span><span
        style=" color:#008000;">"Source"</span><span style="
        color:#000000;">).</span><span style=" color:#000000;">Set</span><span
        style=" color:#000000;">(</span><span style=" color:#000000;">getSphereSource</span><span
        style=" color:#000000;">(</span><span style=" color:#000000;">glyph</span><span
        style=" color:#000000;">));</span> <br>
      <br>
      <br>
      // what I would like to add to the glyph's settings<br>
      <span style=" color:#c0c0c0;"> </span><span style="
        color:#800080;">vtkSMPropertyHelper</span><span style="
        color:#000000;">(</span><span style=" color:#000000;">glyph</span><span
        style=" color:#000000;">,</span><span style=" color:#c0c0c0;"> </span><span
        style=" color:#008000;">"Scale Factor"</span><span style="
        color:#000000;">).</span><span style=" color:#000000;">Set</span><span
        style=" color:#000000;">(</span><span style=" color:#000080;">1.0</span><span
        style=" color:#000000;">);</span><br>
      <span style=" color:#800080;">vtkSMPropertyHelper</span><span
        style=" color:#000000;">(</span><span style=" color:#000000;">glyph</span><span
        style=" color:#000000;">,</span><span style=" color:#c0c0c0;"> </span><span
        style=" color:#008000;">"Scale Mode"</span><span style="
        color:#000000;">).</span><span style=" color:#000000;">Set</span><span
        style=" color:#000000;">(scalar</span><span style="
        color:#000080;"></span><span style=" color:#000000;">);</span><br>
      <span style=" color:#c0c0c0;"> </span><span style="
        color:#800080;">vtkSMPropertyHelper</span><span style="
        color:#000000;">(</span><span style=" color:#000000;">glyph</span><span
        style=" color:#000000;">,</span><span style=" color:#c0c0c0;"> </span><span
        style=" color:#008000;">"Masking"</span><span style="
        color:#000000;">).</span><span style=" color:#000000;">Set</span><span
        style=" color:#000000;">(All_points</span><span style="
        color:#000080;"></span><span style=" color:#000000;">);</span><br>
      ...<br>
      <br>
      <span style=" color:#c0c0c0;"> </span>cylinder<span style="
        color:#000000;">-></span>UpdateVTKObjects<span style="
        color:#000000;">();<br>
        ...<br>
        <br>
      </span><br>
      For example I tried "ScaleFactor" and "Scale Factor" but they do
      not seem to work.<br>
      <br>
      what are the data types for the .Set() functions ? For example in
      the case of Masking ? Where can I find the C++ masking options and
      its data type to be used with vtkSMPropertyHelper ? Or do you
      suggest another way of accessing these properties ?<br>
      <br>
      Thank you very much.<br>
      <br>
      Florian<br>
      <br>
      <br>
      <br>
      Am 16.09.2014 um 17:55 schrieb Utkarsh Ayachit:<br>
    </div>
    <blockquote
cite="mid:CADHSJjBpVYaDjvYtcpPzAJ1rQH82036Yd7m7CDSLXPFSc-L90A@mail.gmail.com"
      type="cite">
      <pre wrap="">Not entirely sure why. I just built that same with ParaVIew git/master
and it built fine for me. What OS is this? Can you attach
CMakeCache.txt from ParaView build as well as the plugin build?

Utkarsh

On Tue, Sep 16, 2014 at 11:26 AM, Florian Hoffmann
<a class="moz-txt-link-rfc2396E" href="mailto:florian.hoffmann@inutech.de"><florian.hoffmann@inutech.de></a> wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">I have the file there as well but nevertheless during compilation of the
Plugin it cannot be found.
Do you have any idea why this might be the case ?


Thanks.

Florian


Mit freundlichen Grüßen
--
Dr.-Ing. Florian Hoffmann
inuTech GmbH                   Phone    : +49-(0)911-323843-22
Fuerther Strasse 212         Fax        : +49-(0)911-323843-43
90429 Nuernberg               E-Mai l   : <a class="moz-txt-link-abbreviated" href="mailto:florian.hoffmann@inutech.de">florian.hoffmann@inutech.de</a>
Germany                            Internet  : <a class="moz-txt-link-freetext" href="http://www.inutech.de">http://www.inutech.de</a>

inuTech GmbH
Sitz / Registered Office: Nuernberg
Handelsregister / Companies' Register: AG Nürnberg HRB Nr. 19026
Geschäftsführer / Managing Director: Frank Vogel

*****************************************************************
DIFFPACK - THE NEW GENERATION OF SIMULATION-SOFTWARE!

Go to <a class="moz-txt-link-freetext" href="http://www.diffpack.com">http://www.diffpack.com</a> to read the details
*****************************************************************

Am 16.09.2014 um 14:43 schrieb Utkarsh Ayachit
<a class="moz-txt-link-rfc2396E" href="mailto:utkarsh.ayachit@kitware.com"><utkarsh.ayachit@kitware.com></a>:

It's under "ParaVIewCore/ServerManager/Rendering/" in the ParaVIew source[1]

Utkarsh

[1]
<a class="moz-txt-link-freetext" href="https://github.com/Kitware/ParaView/blob/master/ParaViewCore/ServerManager/Rendering/vtkSMParaViewPipelineControllerWithRendering.h">https://github.com/Kitware/ParaView/blob/master/ParaViewCore/ServerManager/Rendering/vtkSMParaViewPipelineControllerWithRendering.h</a>

On Tue, Sep 16, 2014 at 8:11 AM, Florian Hoffmann
<a class="moz-txt-link-rfc2396E" href="mailto:florian.hoffmann@inutech.de"><florian.hoffmann@inutech.de></a> wrote:

Dear Utkarsh,

thank you very much for your fast reply and the provided example.
I compiled PV4.2RC2 from source and just tried to compile your example.
Nevertheless I receive a compilation error complaining that the file

vtkSMParaViewPipelineControllerWithRendering.h

cannot be found.
Where is this file supposed to be residing ?

Thank you.

Best regards,

Florian



Am 15.09.2014 um 17:16 schrieb Utkarsh Ayachit
<a class="moz-txt-link-rfc2396E" href="mailto:utkarsh.ayachit@kitware.com"><utkarsh.ayachit@kitware.com></a>:

Attached is an example based on ParaView 4.2-RC1. As it shows, you
cannot directly use VTK objects to create visualization pipelines in
ParaView. While this can surely be done with 4.1 or earlier, I'd
suggest basing off 4.2, if possible since it simplified a lot of this
initialization.

Utkarsh

On Mon, Sep 15, 2014 at 10:23 AM, Florian Hoffmann
<a class="moz-txt-link-rfc2396E" href="mailto:florian.hoffmann@inutech.de"><florian.hoffmann@inutech.de></a> wrote:

I would like to automatically add a glyph filter and render the correctly
scaled spheres after the user has opened a file in my custom dock widget.
I created a DockWidget using the example in /examples/Plugins/DockWidget.
When pressing a button a specific file is being opened for the user by the
following calls:

void on_button_clicked()
{
      QString xdmfFile = "C:\\..\\unknown_case.xdmf";

  QStringList visuFiles;

  visuFiles.append(xdmfFile);

  pqPipelineSource* pqPlinesource =
pqLoadDataReaction::loadData(visuFiles);

  pqPlinesource->updatePipeline();

 // TODO:
 // add spherical glyph for loaded polyData
 // scale spherical glyphs by a scalar attribute/property
 // render glyphs

}

I would like to include that the code automatically adds spherical glyphs
and renders them for the data just loaded.

I tried the following code but I am not sure if it works

              vtkSMProxy *myProxy = pqPlinesource->getProxy();

      vtkObjectBase *myObject = myProxy->GetClientSideObject();

      vtkAlgorithm *myvtkAlgo = vtkAlgorithm::SafeDownCast(myObject);

      vtkGlyph3D *myspheres =  vtkGlyph3D::New();

      myspheres->SetSourceConnection(myvtkAlgo->GetOutputPort());



In case this is supposed to work, how can I now update the pipeline and
render the spheres using C++ PV core functionality ? (The user should also
see the result in the pipeline browser dock of the GUI).

In case my approach is totally wrong, what would be the right way of
handling this situation ?

Thank you.

Best regards,

Florian

_______________________________________________
Powered by <a class="moz-txt-link-abbreviated" href="http://www.kitware.com">www.kitware.com</a>

Visit other Kitware open-source projects at
<a class="moz-txt-link-freetext" href="http://www.kitware.com/opensource/opensource.html">http://www.kitware.com/opensource/opensource.html</a>

Please keep messages on-topic and check the ParaView Wiki at:
<a class="moz-txt-link-freetext" href="http://paraview.org/Wiki/ParaView">http://paraview.org/Wiki/ParaView</a>

Follow this link to subscribe/unsubscribe:
<a class="moz-txt-link-freetext" href="http://public.kitware.com/mailman/listinfo/paraview">http://public.kitware.com/mailman/listinfo/paraview</a>

<DockWidget.tar.gz>




</pre>
      </blockquote>
    </blockquote>
    <br>
    <pre class="moz-signature" cols="72">-- 
Mit freundlichen Grüßen
--
Dr.-Ing. Florian Hoffmann
inuTech GmbH            Phone    : +49-(0)911-323843-22
Fuerther Strasse 212    Fax      : +49-(0)911-323843-43
90429 Nuernberg         E-Mai l  : <a class="moz-txt-link-abbreviated" href="mailto:florian.hoffmann@inutech.de">florian.hoffmann@inutech.de</a>
Germany                 Internet : <a class="moz-txt-link-freetext" href="http://www.inutech.de">http://www.inutech.de</a>

inuTech GmbH
Sitz / Registered Office: Nuernberg
Handelsregister / Companies' Register: AG Nürnberg HRB Nr. 19026
Geschäftsführer / Managing Director: Frank Vogel

*****************************************************************
DIFFPACK - THE NEW GENERATION OF SIMULATION-SOFTWARE!

Go to <a class="moz-txt-link-freetext" href="http://www.diffpack.com">http://www.diffpack.com</a> to read the details
*****************************************************************
</pre>
  </body>
</html>