This release introduces a new type, Rad, which encapsulates angles in radians.
Note: If you are using the non-Cartesian coordinate types introduced in PicoGK v2.2, this version will break some of your code, as these types now use Rad instead of float for angles. The required changes are small. You can read more in this recent Coding for Engineers book chapter about the change.
Release Notes
NEW: Added the Rad type, which encapsulates an angle in radians.
BREAKING CHANGE: Changed Polar, Cylindrical, and Spherical to use Rad.
BREAKING CHANGE: Changed 2D path objects to use Rad.
BREAKING CHANGE: Changed Frame3d to use Rad.
NEW: Added the missing Vector3.vecPtToWorld and Vector3.vecDirToWorld methods for Vector2 coordinates.