| 319 | |
| 320 | template<class Cmpt> |
| 321 | inline Foam::Tensor<Cmpt> Foam::Tensor<Cmpt>::T() const |
| 322 | { |
| 323 | return Tensor<Cmpt> |
| 324 | ( |
| 325 | xx(), yx(), zx(), |
| 326 | xy(), yy(), zy(), |
| 327 | xz(), yz(), zz() |
| 328 | ); |
| 329 | } |
| 330 | |
| 331 | |
| 332 | // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * // |