<p>Hi, I am a quite newbie to VTK.<br>I am involving in a project. I consider to write a VTK mouse picking method in C++ code. I know the sample Tcl code, partially as following:<br>&nbsp;<br># Create a text mapper and actor to display the results of picking.
<br>vtkTextMapper textMapper<br>set tprop [textMapper GetTextProperty]<br>&nbsp;&nbsp;&nbsp; $tprop SetFontFamilyToArial<br>&nbsp;&nbsp;&nbsp; $tprop SetFontSize 10<br>&nbsp;&nbsp;&nbsp; $tprop BoldOn <br>&nbsp;&nbsp;&nbsp; $tprop ShadowOn<br>&nbsp;&nbsp;&nbsp; $tprop SetColor 1 0 0<br>vtkActor2D textActor
<br>&nbsp;&nbsp;&nbsp; textActor VisibilityOff<br>&nbsp;&nbsp;&nbsp; textActor SetMapper textMapper<br>&nbsp;<br>in the sample, tprop is created, but what kind of object it is? vtkTextProperty or vtkProperty? Or i dunt need to specify the type of object?<br>
Can anybody help me what is the code in C++ ???<br>&nbsp;<br>vtkTextMapper textMapper <br>set tprop [textMapper GetTextProperty]</p>
<p>set selPt [picker GetSelectionPoint]<br>set x [lindex $selPt 0] <br>set y [lindex $selPt 1]<br>set pickPos [picker GetPickPosition]<br>set xp [lindex $pickPos 0] <br>set yp [lindex $pickPos 1]<br>set zp [lindex $pickPos 2]
</p>
<p>&nbsp;<br>Thanks very much!<br>&nbsp;</p>