Namespaces | |
namespace | dftefe |
dealii includes | |
namespace | dftefe::utils |
Functions | |
template<typename T > | |
PointImpl< T > & | dftefe::utils::operator*= (PointImpl< T > &p, T a) |
In-plance multiplication of the point by a scalar p->p*a. More... | |
template<typename T > | |
PointImpl< T > | dftefe::utils::operator* (const PointImpl< T > &p, T a) |
Multiplication by a scalar q = p*a. More... | |
template<typename T > | |
PointImpl< T > | dftefe::utils::operator* (T a, const PointImpl< T > &p) |
Multiplication by a scalar q = p*a. More... | |
template<typename T > | |
PointImpl< T > & | dftefe::utils::operator+= (PointImpl< T > &p, const PointImpl< T > &q) |
In-place addition of two pointts p-> p + q. More... | |
template<typename T > | |
PointImpl< T > | dftefe::utils::operator+ (const PointImpl< T > &v, const PointImpl< T > &u) |
Addition of two points r = p + q. More... | |
template<typename T > | |
PointImpl< T > & | dftefe::utils::operator-= (PointImpl< T > &p, const PointImpl< T > &q) |
In-place subtraction of two points p -> p - q;. More... | |
template<typename T > | |
PointImpl< T > | dftefe::utils::operator- (const PointImpl< T > &p, const PointImpl< T > &q) |
Subtraction of two points = p - q. More... | |
template<typename T > | |
std::ostream & | dftefe::utils::operator<< (std::ostream &outputStream, const PointImpl< T > &p) |
Output perator. More... | |