Skip to content

PicoGK v2.3

Latest

Choose a tag to compare

@leap71 leap71 released this 05 Aug 06:22
· 3 commits to main since this release

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.