<br>I have a typical graphics problem but don't know how to do it with Delphi. Any suggestions would be appreciated!<br><br>var<br>StartAngle : Extended;<br><br>StartAngle := Arc.Radius * Cos(Arc.StartAngle);<br>//so far, so good<br><br>Image1.Canvas.Arc(...Integer(StartAngle)...);<br>// compiler won't let me do this<br><br>I also tried making StartAngle an Integer and casting the multiplication above, but the compiler wouldn't let me do that either. Any ideas?<br><br>J.C.<br>