Compare commits

..

2 Commits

Author SHA1 Message Date
strangezak
94859b2a32 Updated version info 2018-11-28 15:34:53 -08:00
strangezak
f50c9a3165 Removed copy in operator[] 2018-11-26 16:40:40 -08:00
2 changed files with 4 additions and 2 deletions

View File

@@ -177,7 +177,9 @@
matrices are column-major, this should have been named 'Columns' matrices are column-major, this should have been named 'Columns'
from the start. 'Rows' is still present, but has been deprecated. from the start. 'Rows' is still present, but has been deprecated.
1.7.1 1.7.1
(*) Changed operator[] to take a const ref int instead of an int. (*) Changed operator[] to take in a const ref int instead of a int.
Simple dumb mistake. NOTE: The compiler still wont inline operator[]
for some reason
LICENSE LICENSE

View File

@@ -10,7 +10,7 @@ To get started, go download [the latest release](https://github.com/HandmadeMath
Version | Changes | Version | Changes |
----------------|----------------| ----------------|----------------|
**1.7.1** | Changed operator[] to take a const ref int instead of an int. **1.7.1** | Changed operator[] to take in a const ref int instead of a int. Simple mistake
**1.7.0** | Renamed the 'Rows' member of hmm_mat4 to 'Columns'. Since our matrices are column-major, this should have been named 'Columns' from the start. 'Rows' is still present, but has been deprecated. **1.7.0** | Renamed the 'Rows' member of hmm_mat4 to 'Columns'. Since our matrices are column-major, this should have been named 'Columns' from the start. 'Rows' is still present, but has been deprecated.
**1.6.0** | Added array subscript operators for vector and matrix types in C++. This is provided as a convenience, but be aware that it may incur an extra function call in unoptimized builds. **1.6.0** | Added array subscript operators for vector and matrix types in C++. This is provided as a convenience, but be aware that it may incur an extra function call in unoptimized builds.
**1.5.1** | Fixed a bug with uninitialized elements in HMM_LookAt. **1.5.1** | Fixed a bug with uninitialized elements in HMM_LookAt.