CARVIEW |
Navigation Menu
-
Notifications
You must be signed in to change notification settings - Fork 100
Releases: HandmadeMath/HandmadeMath
v2.0.0
Compare
After far too long, we are happy to release Handmade Math 2.0. Handmade Math 2.0 introduces the following new features and changes:
-
A concise naming scheme. Handmade Math 1.0 has extremely verbose names. For version 2, we've reworked them to use a terse naming scheme that will make expressions much more readable. Here are some examples:
HMM_MultiplyMat4ByVec4
->HMM_MulM4V4
HMM_MultiplyVec3f
->HMM_MulV3F
HMM_EqualsVec4
->HMM_EqV4
This is obviously an extremely breaking change, but to ease the transition, we provide a tool to automatically rename Handmade Math functions and types in your codebase. See the
update
folder of the repo. -
Matrix inverses. We are happy to finally provide our most long-requested feature. We now have a variety of functions for matrix inverses.
-
2x2 and 3x3 matrices. We now provide types
HMM_Mat2
andHMM_Mat3
. -
C11 generics. C programmers can now use "overloaded" functions like
HMM_Add
instead ofHMM_AddV2
,HMM_AddV3
, etc. Your expressions can now be a little more readable! -
Consistent (and configurable) angle units. Handmade Math 1.0 used radians for some operations and degrees for others. Handmade Math 2.0 makes all functions use the same angle units - but also makes those units configurable, so you can choose to use radians, degrees, or turns across your codebase. See the documentation in
HandmadeMath.h
. -
Left-handed and right-handed operations. Handmade Math 2.0 has both left-handed and right-handed versions of all operations where handedness applies.
This release would not be possible without the help of @dev-dwarf. Many thanks for his contributions!
Other breaking changes:
- If you use Handmade Math without the standard library, the way you provide custom math functions has changed. You must now
#define HANDMADE_MATH_PROVIDE_MATH_FUNCTIONS
in addition to#define HMM_SINF
etc. HMM_ExpF
,HMM_LogF
,HMM_Power
, andHMM_PowerF
have been removed. They were not used internally and provided no benefit.HMM_PREFIX
has been removed. If you wish to use a different prefix, find and replace withinHandmadeMath.h
.- Semi-breaking:
HMM_InvSqrtF
(formerlyHMM_RSquareRootF
) no longer does a fast inverse square root under any circumstances. It now always does a full-precision square root. This is to ensure consistent results on all platforms.
Assets 3
v2.0.0-rc2
Compare
This is a release candidate for Handmade Math 2.0. Please try it out and give us feedback.
Changes from last release candidate:
- The
HANDMADE_MATH_USE_NDC_Z01
define has been removed. NDC options are now explicit in the function names, just like handedness. (#154) - Issues with the order of operations for SIMD were resolved. (#152)
- The update tool was rewritten.
After far too long, we are happy to release Handmade Math 2.0. Handmade Math 2.0 introduces the following new features and changes:
-
A concise naming scheme. Handmade Math 1.0 has extremely verbose names. For version 2, we've reworked them to use a terse naming scheme that will make expressions much more readable. Here are some examples:
HMM_MultiplyMat4ByVec4
->HMM_MulM4V4
HMM_MultiplyVec3f
->HMM_MulV3F
HMM_EqualsVec4
->HMM_EqV4
This is obviously an extremely breaking change, but to ease the transition, we provide a tool to automatically rename Handmade Math functions and types in your codebase. See the
update
folder of the repo. -
Matrix inverses. We are happy to finally provide our most long-requested feature. We now have a variety of functions for matrix inverses.
-
2x2 and 3x3 matrices. We now provide types
HMM_Mat2
andHMM_Mat3
. -
C11 generics. C programmers can now use "overloaded" functions like
HMM_Add
instead ofHMM_AddV2
,HMM_AddV3
, etc. Your expressions can now be a little more readable! -
Consistent (and configurable) angle units. Handmade Math 1.0 used radians for some operations and degrees for others. Handmade Math 2.0 makes all functions use the same angle units - but also makes those units configurable, so you can choose to use radians, degrees, or turns across your codebase. See the documentation in
HandmadeMath.h
. -
Left-handed and right-handed operations. Handmade Math 2.0 has both left-handed and right-handed versions of all operations where handedness applies.
This release would not be possible without the help of @dev-dwarf. Many thanks for his contributions!
Other breaking changes:
- If you use Handmade Math without the standard library, the way you provide custom math functions has changed. You must now
#define HANDMADE_MATH_PROVIDE_MATH_FUNCTIONS
in addition to#define HMM_SINF
etc. HMM_ExpF
,HMM_LogF
,HMM_Power
, andHMM_PowerF
have been removed. They were not used internally and provided no benefit.HMM_PREFIX
has been removed. If you wish to use a different prefix, find and replace withinHandmadeMath.h
.- Semi-breaking: Vector length and normalization now uses fast inverse square root by default. This reduces precision, but should still be precise enough for games and graphics applications. (It's also the same level of precision as GLM.)
Assets 2
2.0.0-rc1
Compare
This is a release candidate for Handmade Math 2.0. Please try it out and give us feedback.
After far too long, we are happy to release Handmade Math 2.0. Handmade Math 2.0 introduces the following new features and changes:
-
A concise naming scheme. Handmade Math 1.0 has extremely verbose names. For version 2, we've reworked them to use a terse naming scheme that will make expressions much more readable. Here are some examples:
HMM_MultiplyMat4ByVec4
->HMM_MulM4V4
HMM_MultiplyVec3f
->HMM_MulV3F
HMM_EqualsVec4
->HMM_EqV4
This is obviously an extremely breaking change, but to ease the transition, we provide a tool to automatically rename Handmade Math functions and types in your codebase. See the
update
folder of the repo. -
Matrix inverses. We are happy to finally provide our most long-requested feature. We now have a variety of functions for matrix inverses.
-
2x2 and 3x3 matrices. We now provide types
HMM_Mat2
andHMM_Mat3
. -
C11 generics. C programmers can now use "overloaded" functions like
HMM_Add
instead ofHMM_AddV2
,HMM_AddV3
, etc. Your expressions can now be a little more readable! -
Consistent (and configurable) angle units. Handmade Math 1.0 used radians for some operations and degrees for others. Handmade Math 2.0 makes all functions use the same angle units - but also makes those units configurable, so you can choose to use radians, degrees, or turns across your codebase. See the documentation in
HandmadeMath.h
. -
Left-handed and right-handed operations. Handmade Math 2.0 has both left-handed and right-handed versions of all operations where handedness applies.
This release would not be possible without the help of @dev-dwarf. Many thanks for his contributions!
Other breaking changes:
- If you use Handmade Math without the standard library, the way you provide custom math functions has changed. You must now
#define HANDMADE_MATH_PROVIDE_MATH_FUNCTIONS
in addition to#define HMM_SINF
etc. HMM_ExpF
,HMM_LogF
,HMM_Power
, andHMM_PowerF
have been removed. They were not used internally and provided no benefit.HMM_PREFIX
has been removed. If you wish to use a different prefix, find and replace withinHandmadeMath.h
.- Semi-breaking: Vector length and normalization now uses fast inverse square root by default. This reduces precision, but should still be precise enough for games and graphics applications. (It's also the same level of precision as GLM.)
Assets 3
1.13.0
ba5405a
Compare
v1.13.0 Update README.md
Assets 3
1.12.0
1d82b4f
Compare
Added Unary Minus operator for HMM_Vec2
, HMM_Vec3
, and HMM_Vec4
.
Assets 3
1.11.1
Compare
Assets 3
1.11.0
Compare
- Added ability to customize or remove the default
HMM_
prefix on function names by defining a macro calledHMM_PREFIX(name)
.
Assets 3
1.10.0
93e56be
Compare
- Made HMM_Perspective use vertical FOV instead of horizontal FOV for consistency with other graphics APIs.
Assets 3
1.9.0
45c9170
Compare
Assets 3
1.8.0
Compare
- Added fast vector normalization routines that use fast inverse square roots.