// AngleOfDistance - returns the angle in degrees between two objects on a circumference // - coded in such a way to evenly divide into 360 // // Paul Vanukoff // Revision 2000-1-29 // // Usage: // m_AngOfDist(R, D) // where R is the radius ( R > 0 ) // where D is the distance (D > 0 ) #macro m_AngOfDist (R, D) (360 / int((2 * pi * R) / D) ); #end