<br>Greetings all,<br><br>I am using vtkFollower to add labels to an axis.&nbsp; Everything is working fine, however the about the point to the left of the text.&nbsp; I would like the text to oriet itself about the center.&nbsp; In a sense I would like it Center justified instead of left justified.
<br><br>I have attempted to change the origin of the vtkFollower as follows:<br><br>&nbsp;&nbsp;&nbsp; double *center = new double[3];<br>&nbsp;&nbsp;&nbsp; double *position = new double[3];<br>&nbsp;&nbsp;&nbsp; center = follower-&gt;GetCenter();<br>&nbsp;&nbsp;&nbsp; position = follower-&gt;GetPosition();
<br>&nbsp;&nbsp;&nbsp; for (int i=0;i&lt;3;i++)&nbsp; center[i] = center[i]-position[i];<br>&nbsp;&nbsp;&nbsp; follower-&gt;SetOrigin(center);&nbsp;&nbsp;  <br><br>However, this seems to do something funny where it changes the position of the text as well.<br><br>Anyone have any ideas how to solve this problem?
<br><br>Thanks!<br><br>Dave<br><br>