#include <iostream>
#include <algorithm>
#include <numeric>
#include <cmath>
#include "MathException.hpp"
Go to the source code of this file.
Classes | |
class | kn::Vector< T > |
Generic vector class (genereic for size and type). More... | |
Namespaces | |
namespace | kn |
Typedefs | |
typedef Vector< float > | kn::Vectorf |
typedef Vector< double > | kn::Vectord |
typedef Vector< int > | kn::Vectori |
Functions | |
template<class U > | |
std::ostream & | kn::operator<< (std::ostream &stream, const Vector< U > &v) |
operator << | |
template<class U > | |
Vector< U > | kn::operator* (const U &d, const Vector< U > &v) |
Multiplies a value with a Vector. |