<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, Mar 25, 2015 at 1:07 PM, Sean McBride <span dir="ltr"><<a href="mailto:sean@rogue-research.com" target="_blank">sean@rogue-research.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
<br>
Anyone know vtkFreeTypeTools::MapTextPropertyToId?<br>
<br>
This test failure:<br>
<<a href="https://open.cdash.org/testDetails.php?test=314508353&build=3741998" target="_blank">https://open.cdash.org/testDetails.php?test=314508353&build=3741998</a>><br>
<br>
vtkFreeTypeTools.cxx:634:71: runtime error: left shift of negative value -450<br>
<br>
Is happening because the author is assuming vtkTextProperty's GetOrientation() returns an angle between 0 and 360:<br>
<br>
 int angle = (vtkMath::Round(tprop->GetOrientation() * 10.0) % 3600) << bits;<br>
<br>
when in fact the returned angle can (apparently) be negative.<br></blockquote><div><br></div><div>Correct. </div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Questions:<br>
<br>
1) vtkTextProperty's GetOrientation() docs say only "Set/Get the text's orientation (in degrees)."  I guess any range is correct?<br></blockquote><div><br></div><div>Yes, values outside of that range should be handled properly.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
2) is there a utility function somewhere to constrain an angle to 0->360?  I could not find one...<br></blockquote><div><br></div><div>Nor am I. This may need it's own code to handle that, and should fix the error.</div><div><br></div><div>Something like:</div><div><br></div><div>int angle = vtkMath::Round(tprop->GetOrientation() * 10. % 3600;</div><div>if (angle < 0)</div><div>  {</div><div>  angle += 3600;</div><div>  }</div><div>angle << bits;</div><div><br></div><div>ought to do the trick without breaking the hash.</div><div><br></div><div>Dave</div><div><br></div><div><br></div></div></div></div>