|
| template<int spacedim, typename T > |
| std::ostream & | bitrl::utils::geom::operator<< (std::ostream &out, const GeomPoint< spacedim, T > &p) |
| | free functions that work on the GeomPoint<spacedim,T> class
|
| |
| template<int spacedim, typename T > |
| const GeomPoint< spacedim, T > | bitrl::utils::geom::scale (const GeomPoint< spacedim, T > &t, T factor) |
| | scale the given point by facto and returns a copyr. This function does not change the entries of t.
|
| |
| template<int spacedim, typename T > |
| const GeomPoint< spacedim, T > | bitrl::utils::geom::scale (const GeomPoint< spacedim, T > &t, const std::vector< T > &factors) |
| | scale the given point by the factors in vector
|
| |
| template<int spacedim, typename T > |
| const GeomPoint< spacedim, T > | bitrl::utils::geom::abs (const GeomPoint< spacedim, T > &t) |
| | Return a point having the absolute values of the given point object.
|
| |
| template<int spacedim, typename T > |
| const GeomPoint< spacedim, T > | bitrl::utils::geom::operator* (T factor, const GeomPoint< spacedim, T > &t) |
| | Allow multiplication from left with a factor.
|
| |
| template<int spacedim, typename T > |
| const GeomPoint< spacedim, T > | bitrl::utils::geom::operator* (const GeomPoint< spacedim, T > &t, T factor) |
| |
| template<int spacedim, typename T > |
| const GeomPoint< spacedim, T > | bitrl::utils::geom::operator/ (const GeomPoint< spacedim, T > &t, T factor) |
| |
| template<int spacedim, typename T > |
| const GeomPoint< spacedim, T > | bitrl::utils::geom::operator+ (const GeomPoint< spacedim, T > &t1, const GeomPoint< spacedim, T > &t2) |
| |
| template<int spacedim, typename T > |
| const GeomPoint< spacedim, T > | bitrl::utils::geom::operator- (const GeomPoint< spacedim, T > &t1, const GeomPoint< spacedim, T > &t2) |
| |
| template<int spacedim, typename T > |
| bool | bitrl::utils::geom::operator== (const GeomPoint< spacedim, T > &t1, const GeomPoint< spacedim, T > &t2) |
| |
| template<int spacedim, typename T > |
| bool | bitrl::utils::geom::operator!= (const GeomPoint< spacedim, T > &t1, const GeomPoint< spacedim, T > &t2) |
| |