Browse Source

doc: fix a typo that was copied thousand times over.

pull/638/head
Vladimír Vondruš 2 years ago
parent
commit
ad05cc1d8b
  1. 36
      src/Magnum/Magnum.h

36
src/Magnum/Magnum.h

@ -621,7 +621,7 @@ typedef Math::Matrix4x3<Float> Matrix4x3;
@brief Signed byte matrix with 2 columns and 2 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 8-bit types. For
Storage only, in order to support matrices packed into 8-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
@ -635,7 +635,7 @@ typedef Math::Matrix2x2<Byte> Matrix2x2b;
@brief Signed byte matrix with 2 columns and 3 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 8-bit types. For
Storage only, in order to support matrices packed into 8-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
@ -649,7 +649,7 @@ typedef Math::Matrix2x3<Byte> Matrix2x3b;
@brief Signed byte matrix with 2 columns and 4 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 8-bit types. For
Storage only, in order to support matrices packed into 8-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
*/
@ -659,7 +659,7 @@ typedef Math::Matrix2x4<Byte> Matrix2x4b;
@brief Signed byte matrix with 3 columns and 2 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 8-bit types. For
Storage only, in order to support matrices packed into 8-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
@ -673,7 +673,7 @@ typedef Math::Matrix3x2<Byte> Matrix3x2b;
@brief Signed byte matrix with 3 columns and 3 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 8-bit types. For
Storage only, in order to support matrices packed into 8-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
@ -687,7 +687,7 @@ typedef Math::Matrix3x3<Byte> Matrix3x3b;
@brief Signed byte matrix with 3 columns and 4 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 8-bit types. For
Storage only, in order to support matrices packed into 8-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
*/
@ -697,7 +697,7 @@ typedef Math::Matrix3x4<Byte> Matrix3x4b;
@brief Signed byte matrix with 4 columns and 2 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 8-bit types. For
Storage only, in order to support matrices packed into 8-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
@ -711,7 +711,7 @@ typedef Math::Matrix4x2<Byte> Matrix4x2b;
@brief Signed byte matrix with 4 columns and 3 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 8-bit types. For
Storage only, in order to support matrices packed into 8-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
@ -725,7 +725,7 @@ typedef Math::Matrix4x3<Byte> Matrix4x3b;
@brief Signed byte matrix with 4 columns and 4 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 8-bit types. For
Storage only, in order to support matrices packed into 8-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
*/
@ -735,7 +735,7 @@ typedef Math::Matrix4x4<Byte> Matrix4x4b;
@brief Signed short matrix with 2 columns and 2 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 16-bit types. For
Storage only, in order to support matrices packed into 16-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
*/
@ -745,7 +745,7 @@ typedef Math::Matrix2x2<Short> Matrix2x2s;
@brief Signed short matrix with 2 columns and 3 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 16-bit types. For
Storage only, in order to support matrices packed into 16-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
@ -759,7 +759,7 @@ typedef Math::Matrix2x3<Short> Matrix2x3s;
@brief Signed short matrix with 2 columns and 4 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 16-bit types. For
Storage only, in order to support matrices packed into 16-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
*/
@ -769,7 +769,7 @@ typedef Math::Matrix2x4<Short> Matrix2x4s;
@brief Signed short matrix with 3 columns and 2 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 16-bit types. For
Storage only, in order to support matrices packed into 16-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
*/
@ -779,7 +779,7 @@ typedef Math::Matrix3x2<Short> Matrix3x2s;
@brief Signed short matrix with 3 columns and 3 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 16-bit types. For
Storage only, in order to support matrices packed into 16-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
@ -793,7 +793,7 @@ typedef Math::Matrix3x3<Short> Matrix3x3s;
@brief Signed short matrix with 3 columns and 4 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 16-bit types. For
Storage only, in order to support matrices packed into 16-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
*/
@ -803,7 +803,7 @@ typedef Math::Matrix3x4<Short> Matrix3x4s;
@brief Signed short matrix with 4 columns and 2 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 16-bit types. For
Storage only, in order to support matrices packed into 16-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
*/
@ -813,7 +813,7 @@ typedef Math::Matrix4x2<Short> Matrix4x2s;
@brief Signed short matrix with 4 columns and 3 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 16-bit types. For
Storage only, in order to support matrices packed into 16-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
@ -827,7 +827,7 @@ typedef Math::Matrix4x3<Short> Matrix4x3s;
@brief Signed short matrix with 4 columns and 4 rows
@m_since{2020,06}
Storage only, in ordet to support matrices packed into 16-bit types. For
Storage only, in order to support matrices packed into 16-bit types. For
performing arithmetic on this type use @ref Math::unpack() / @ref Math::unpackInto() to convert to a float type first and then @ref Math::pack()
/ @ref Math::packInto() back again.
*/

Loading…
Cancel
Save