perspective projection in vecmat3 and tX test program

This commit is contained in:
2023-04-08 17:31:06 +02:00
parent 2922330c80
commit c24efe43a1
8 changed files with 386 additions and 8 deletions

6
vec.cc
View File

@@ -803,12 +803,6 @@ return -1;
}
template<typename T>
NRVec<T>::NRVec(const std::list<T> l) : NRVec<T>(l.size())
{
int ii=0;
for(typename std::list<T>::const_iterator i=l.begin(); i!=l.end(); ++i) (*this)[ii++] = *i;
}
/***************************************************************************//**