<div>Hi,<br><br>I have 2 problems.<br><br>1. I want to select a point on a 3D model and mark it with specific size with red color (like a filled solid circle). I follow the example http://www.vtk.org/Wiki/VTK/Examples/Cxx/Picking/CellPicking, use the vtkCellPicker to select a cell on the 3D model and draw it. But the point is very small. How can I draw the point with some size?<br><br>2. As I add the callback for left button press event to get the selected point, how to revert that then I can rotate the 3D model? Below is my C# code to set and remove the callback for left button press event. I even restore the interactorstyle. That does not work. <br><br>        public DotAnnotation()<br>        {<br>          m_style = vtkInteractorStyleUser.New();<br>          m_leftButtonEvent = new vtkObject.vtkObjectEventHandler(DotAnnotation_LeftButtonEvt);<br>        }<br>        public void SetEventCallBack()<br>        {<br>            m_originalStyle = m_renderWin.GetInteractor().GetInteractorStyle();<br>            m_style.LeftButtonPressEvt += m_leftButtonEvent;<br>        }<br><br>        public override void RemoveEventCallBack()<br>        {<br>            m_style.LeftButtonPressEvt -= m_leftButtonEvent;<br>            m_renderWin.GetInteractor().SetInteractorStyle(m_originalStyle);<br>        }<br><br>Thanks<br>Liu Peng<br></div><br><br><span title="neteasefooter"><p> </p></span>