You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove instances of manual degree/rad conversion (#764)
Previously, when handling degrees and radians within mbuild, we defined
a conversion term (180 / pi) or (pi / 180) to convert raidans to degrees or
degrees to radians, respectively.
Ryan (@rsdefever) mentioned in passing that numpy already has methods to
handle this conversion for us: `np.rad2deg` and `np.deg2rad`.
All instances where conversions between degrees and radians were needed
are now using these methods.