This is what I've been using to get a relative point offset.  If anyone sees a problem 
or could point out a better solution, please let me know!

on getPoint anAngle, aDistance
  
  radAngle = anAngle * (pi/180)
  
  theX = aDistance * cos(radAngle)
  theY = aDistance * sin(radAngle)
  
  return point(theX,theY)
  
end 

--Rob

[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email [EMAIL 
PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping 
with programming Lingo.  Thanks!]

Reply via email to