mirror of
https://github.com/g-truc/glm.git
synced 2025-04-06 14:05:01 +00:00
Added missing constructors
This commit is contained in:
parent
4a599e1b93
commit
656113c508
2 changed files with 19 additions and 1 deletions
|
@ -60,7 +60,7 @@ namespace glm
|
|||
tmat2x4(tmat2x4 const & m);
|
||||
|
||||
explicit tmat2x4(
|
||||
ctor Null);
|
||||
ctor);
|
||||
explicit tmat2x4(
|
||||
value_type const & s);
|
||||
explicit tmat2x4(
|
||||
|
|
|
@ -58,6 +58,24 @@ namespace detail
|
|||
this->value[2] = col_type(0, 0);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
inline tmat3x2<T>::tmat3x2
|
||||
(
|
||||
tmat3x2<T> const & m
|
||||
)
|
||||
{
|
||||
this->value[0] = m.value[0];
|
||||
this->value[1] = m.value[1];
|
||||
this->value[2] = m.value[2];
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
inline tmat3x2<T>::tmat3x2
|
||||
(
|
||||
ctor
|
||||
)
|
||||
{}
|
||||
|
||||
template <typename T>
|
||||
inline tmat3x2<T>::tmat3x2
|
||||
(
|
||||
|
|
Loading…
Add table
Reference in a new issue