Releases: Xkonti/govec
Releases · Xkonti/govec
v0.3.0
- Added new vector operations:
AngleDeg
- Creates a normalized vector from an angle in degrees. (@elliotwutingfeng)AngleRad
- Creates a normalized vector from an angle in radians. (@elliotwutingfeng)Average
- Calculates the average of the vector's components. (@elliotwutingfeng)Cos
- Applies the cosine function to all components. (@KarolosLykos)Sin
- Applies the sine function to all components. (@KarolosLykos)Tan
- Applies the tangent function to all components. (@KarolosLykos)
- Implemented automated testing gate for PRs (@Pr0-C0der)
- Optimized conversions from radians to degrees (@elliotwutingfeng)
- Improved tests coverage (@gray-adeyi)
v0.2.2
- Implemented
Distance
operation that calculates the distance between two vectors (thanks to @sathuhebbar ) - Implemented
IsZero
operation that checks if the vector is a zero vector (thanks to @sathuhebbar ) - Implemented
AngleBetweenDeg
operation that calculates the angle between two vectors in degrees - Implemented
AngleBetweenRad
operation that calculates the angle between two vectors in radians - Fixed
Discard
operation not being properly exposed - Fixed
Extend
operation not being properly exposed - Fixed
Insert
operation not being properly exposed - Documented all remaining operation - now every operation has a description.