#include <src/ftensor/src/FTensor/Tensor2/Tensor2_constructor.hpp>
template<class
T>
class FTensor::Tensor2_constructor< T, 3, 3, row_major >
Definition at line 152 of file Tensor2_constructor.hpp.
◆ Tensor2_constructor()
FTensor::Tensor2_constructor< T, 3, 3, row_major >::Tensor2_constructor |
( |
T |
data[3][3], |
|
|
T |
d00, |
|
|
T |
d01, |
|
|
T |
d02, |
|
|
T |
d10, |
|
|
T |
d11, |
|
|
T |
d12, |
|
|
T |
d20, |
|
|
T |
d21, |
|
|
T |
d22 |
|
) |
| |
|
inline |
Definition at line 155 of file Tensor2_constructor.hpp.
157 {
158 data[0][0] = d00;
159 data[1][0] = d01;
160 data[2][0] = d02;
161 data[0][1] = d10;
162 data[1][1] = d11;
163 data[2][1] = d12;
164 data[0][2] = d20;
165 data[1][2] = d21;
166 data[2][2] = d22;
167 }
The documentation for this class was generated from the following file: